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的错误吗?
答案 0 :(得分:3)
试
git remote add official git://gitorious.org/texmacs/texmacs.git
git fetch official
git://
要快得多答案 1 :(得分:1)
问题可能是您的网址。当您使用https://
时,您正在使用git://
(产生404)。
以下适用于我:
git fetch git://git.gitorious.org/texmacs/texmacs.git