summaryrefslogtreecommitdiff
path: root/builtin/clone.c
diff options
context:
space:
mode:
authorJens Lehmann <Jens.Lehmann@web.de>2010-11-04 20:27:12 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-05 17:28:01 (GMT)
commitccdd3da6527ca7d8d731e691b9ff0f9b8657298e (patch)
tree6748cd648bfbf2131ed41311593952a48b4454e0 /builtin/clone.c
parentca209065f3cc3462eb0ae6090f6b13f38aa2114c (diff)
downloadgit-ccdd3da6527ca7d8d731e691b9ff0f9b8657298e.zip
git-ccdd3da6527ca7d8d731e691b9ff0f9b8657298e.tar.gz
git-ccdd3da6527ca7d8d731e691b9ff0f9b8657298e.tar.bz2
clone: Add the --recurse-submodules option as alias for --recursive
Since 1.6.5 "git clone" honors the --recursive option to recursively check out submodules too. As this option can easily be misinterpreted when it is added to other commands like "git grep", add the new --recurse-submodules option as an alias for --recursive so the same option can be used for all commands recursing into submodules. Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/clone.c')
-rw-r--r--builtin/clone.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/clone.c b/builtin/clone.c
index 19ed640..61e0989 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -66,6 +66,8 @@ static struct option builtin_clone_options[] = {
"setup as shared repository"),
OPT_BOOLEAN(0, "recursive", &option_recursive,
"initialize submodules in the clone"),
+ OPT_BOOLEAN(0, "recurse_submodules", &option_recursive,
+ "initialize submodules in the clone"),
OPT_STRING(0, "template", &option_template, "path",
"path the template repository"),
OPT_STRING(0, "reference", &option_reference, "repo",