aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorBjörn Gustavsson <bgustavsson@gmail.com>2009-11-09 21:11:06 +0100
committerJunio C Hamano <gitster@pobox.com>2009-11-10 01:01:07 -0800
commit7cc91a2f71c95b4e695549b91c4b629f56887a1a (patch)
tree0838c6b8f23aaf3095332629ce863a2cdb43e939 /Documentation
parent16679e373fa85a75c85e6e3b4ae5cd58a89a4114 (diff)
downloadgit-7cc91a2f71c95b4e695549b91c4b629f56887a1a.tar.gz
git-7cc91a2f71c95b4e695549b91c4b629f56887a1a.tar.xz
Add the configuration option skipFetchAll
Implement the configuration skipFetchAll option to allow certain remotes to be skipped when doing 'git fetch --all' and 'git remote update'. The existing skipDefaultUpdate variable is still honored (by 'git fetch --all' and 'git remote update'). (If both are set in the configuration file with different values, the value of the last occurrence will be used.) Signed-off-by: Björn Gustavsson <bgustavsson@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index cd1781498..50a65ab8d 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -1381,7 +1381,13 @@ remote.<name>.mirror::
remote.<name>.skipDefaultUpdate::
If true, this remote will be skipped by default when updating
- using the update subcommand of linkgit:git-remote[1].
+ using linkgit:git-fetch[1] or the `update` subcommand of
+ linkgit:git-remote[1].
+
+remote.<name>.skipFetchAll::
+ If true, this remote will be skipped by default when updating
+ using linkgit:git-fetch[1] or the `update` subcommand of
+ linkgit:git-remote[1].
remote.<name>.receivepack::
The default program to execute on the remote side when pushing. See