“git fetch”不起作用
[电子邮件受保护]:~porton/texmacs/texmacs-porton .git
是我的存储库,其中包含主存储库的克隆TeXmacs 存储库 git://gitorious.org/texmacs/texmacs.git
包含我的更改(不被主存储库接受)。
我运行以下命令:
$ git clone [email protected]:~porton/texmacs/texmacs-porton.git
$ cd texmacs-porton
$ git fetch --verbose --progress https://git.gitorious.org/texmacs/texmacs.git
最后一个 get fetch
没有输出任何内容,在我看来并没有创建任何新分支。
请帮助我从主 TeXmacs 存储库合并到我自己的存储库。
是git的bug吗?
[email protected]:~porton/texmacs/texmacs-porton.git
is my repository containing a clone of the main TeXmacs repository git://gitorious.org/texmacs/texmacs.git
with my changes (not accepted to the main repository).
I run the following commands:
$ git clone [email protected]:~porton/texmacs/texmacs-porton.git
$ cd texmacs-porton
$ git fetch --verbose --progress https://git.gitorious.org/texmacs/texmacs.git
The last get fetch
outputs nothing and as it seems to me does not create any new branches.
Please help me to merge from the main TeXmacs repository to my own.
Is it a bug of git?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
git://
通过给远程命名try
git://
is much faster问题可能出在您的网址上。当您应该使用
git://
时,您却使用了https://
(这会导致 404)。以下对我有用:
The problem is likely your URL. You're using
https://
(which results in a 404) when you should be usinggit://
.The following works for me: