diff options
author | Jens Lehmann <Jens.Lehmann@web.de> | 2010-11-11 00:55:02 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-12 15:06:03 -0800 |
commit | be254a0ea99b441a6c514cb8b25cd72357383700 (patch) | |
tree | 2bd92c9b1ad1c034f5f23945a2ac19530f841bd8 /git-pull.sh | |
parent | 7dce19d374a37932e9d4c3a6202af407cf5114eb (diff) | |
download | git-be254a0ea99b441a6c514cb8b25cd72357383700.tar.gz |
Add the 'fetch.recurseSubmodules' config setting
This new boolean option can be used to override the default for "git
fetch" and "git pull", which is to not recurse into populated submodules
and fetch all new commits there too.
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-x | git-pull.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/git-pull.sh b/git-pull.sh index 5804c627ca..a5ab19538c 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -108,6 +108,9 @@ do --recurse-submodules) recurse_submodules=--recurse-submodules ;; + --no-recurse-submodules) + recurse_submodules=--no-recurse-submodules + ;; --d|--dr|--dry|--dry-|--dry-r|--dry-ru|--dry-run) dry_run=--dry-run ;; |