Teach the --all option to 'git fetch'
commit9c4a036b34acef63ab754f0e27e5e54bd9d9a210
authorBjörn Gustavsson <bgustavsson@gmail.com>
Mon, 9 Nov 2009 20:09:56 +0000 (9 21:09 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 10 Nov 2009 09:01:06 +0000 (10 01:01 -0800)
tree6ac68c7a493eeb43b5fa0d78445fe34f3c294431
parent6b276e19fa71fabe64039cf004aba908d7083e82
Teach the --all option to 'git fetch'

'git remote' is meant for managing remotes and 'git fetch' is meant
for actually fetching data from remote repositories. Therefore, it is
not logical that you must use 'git remote update' to fetch from
more than one repository at once.

Add the --all option to 'git fetch', to tell it to attempt to fetch
from all remotes. Also, if --all is not given, the <repository>
argument is allowed to be the name of a group, to allow fetching
from all repositories in the group.

Other options except -v and -q are silently ignored.

Signed-off-by: Björn Gustavsson <bgustavsson@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/fetch-options.txt
Documentation/git-fetch.txt
Documentation/pull-fetch-param.txt
builtin-fetch.c
t/t5506-remote-groups.sh
t/t5514-fetch-multiple.sh [new file with mode: 0755]