'git fetch'和'git fetch --all'之间的区别是什么?

时间:2014-02-28 00:32:53

标签: git version-control fetch git-fetch

对于我正在使用的repo似乎没什么区别,并且手册页不是很有帮助。

1 个答案:

答案 0 :(得分:4)

如果您有多个遥控器,

git fetch --all会有所不同。大多数时候你只有“原点”,但你可以添加任意数量的遥控器。

git clone ssh://example.com/git/repo/first-repo
git remote add my-other-remote ssh://example.com/git/repo/another

git fetch将从“first-repo”获取,其中git fetch --all将从“first-repo”和“another”中获取