1
當我只想爲某個遙控器提取時,幾乎沒有任何情況發生;我總是想要所有的遙控器。我認爲這將是一個常見的足夠用例,git會說明它的用法(與pull.rebase true
相同)。總是`git fetch --all`?
那麼,有沒有一種神奇的方式總是從所有遙控器中取回,我一直無法找到?我目前的解決方案是使用別名,但我覺得必須有更傳統的方式。
當我只想爲某個遙控器提取時,幾乎沒有任何情況發生;我總是想要所有的遙控器。我認爲這將是一個常見的足夠用例,git會說明它的用法(與pull.rebase true
相同)。總是`git fetch --all`?
那麼,有沒有一種神奇的方式總是從所有遙控器中取回,我一直無法找到?我目前的解決方案是使用別名,但我覺得必須有更傳統的方式。
的git remote update
命令會做你的描述:
$ git remote --help
[...]
update
Fetch updates for a named set of remotes in the repository as
defined by remotes.<group>. If a named group is not specified on
the command line, the configuration parameter remotes.default will
be used; if remotes.default is not defined, all remotes which do
not have the configuration parameter
'git的遠程update' – larsks
感謝larsks,你可以寫驗收正式的答案嗎? –