“git fetch”不起作用

时间:2011-07-27 13:53:40

标签: git dvcs gitorious

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的错误吗?

2 个答案:

答案 0 :(得分:3)

git remote add official git://gitorious.org/texmacs/texmacs.git
git fetch official
  • git://要快得多
  • 通过为远程提供名称,fetch可以创建远程分支

答案 1 :(得分:1)

问题可能是您的网址。当您使用https://时,您正在使用git://(产生404)。

以下适用于我:

git fetch git://git.gitorious.org/texmacs/texmacs.git