git@gitorious.org:~porton/texmacs/texmacs-porton.git是我的存储库,其中包含主TeXmacs存储库git://gitorious.org/texmacs/texmacs.git的克隆以及我的更改(不接受主存储库)。
我运行以下命令:
$ git clone git@gitorious.org:~porton/texmacs/texmacs-porton.git
$ cd texmacs-porton
$ git fetch --verbose --progress https://git.gitorious.org/texmacs/texmacs.git最后一个get fetch没有输出任何内容,在我看来也没有创建任何新的分支。
请帮助我从主TeXmacs存储库合并到我自己的存储库。
是git的bug吗?
发布于 2011-07-27 22:12:51
试一试
git remote add official git://gitorious.org/texmacs/texmacs.git
git fetch officialfetch的速度要快得多通过为远程设备命名,
git://可以创建远程分支发布于 2011-07-27 22:07:16
问题可能出在你的URL上。当你应该使用git://的时候,你却在使用https:// (结果是404)。
下面的方法对我很有效:
git fetch git://git.gitorious.org/texmacs/texmacs.githttps://stackoverflow.com/questions/6845538
复制相似问题