对于我正在使用的repo似乎没什么区别,并且手册页不是很有帮助。
答案 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”中获取