summaryrefslogtreecommitdiff
path: root/t/t7400-submodule-basic.sh
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2017-03-17 22:38:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-03-18 16:51:23 (GMT)
commit1f8d711548c08e05766e067dc23e5be3b1b72657 (patch)
treea3ffbc67a915610100eaf03cd0ce669cc18d439e /t/t7400-submodule-basic.sh
parentbb62e0a99fcbb9ceb03502bf2168d2e57530214f (diff)
downloadgit-1f8d711548c08e05766e067dc23e5be3b1b72657.zip
git-1f8d711548c08e05766e067dc23e5be3b1b72657.tar.gz
git-1f8d711548c08e05766e067dc23e5be3b1b72657.tar.bz2
submodule--helper init: set submodule.<name>.active
When initializing a submodule set the submodule.<name>.active config to true if the module hasn't already been configured to be active by some other means (e.g. a pathspec set in submodule.active). Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7400-submodule-basic.sh')
-rwxr-xr-xt/t7400-submodule-basic.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh
index 3af1c00..cf77a3a 100755
--- a/t/t7400-submodule-basic.sh
+++ b/t/t7400-submodule-basic.sh
@@ -1256,4 +1256,15 @@ test_expect_success 'clone and subsequent updates correctly auto-initialize subm
test_cmp expect2 actual
'
+test_expect_success 'init properly sets the config' '
+ test_when_finished "rm -rf multisuper_clone" &&
+ git clone --recurse-submodules="." \
+ --recurse-submodules=":(exclude)sub0" \
+ multisuper multisuper_clone &&
+
+ git -C multisuper_clone submodule init -- sub0 sub1 &&
+ git -C multisuper_clone config --get submodule.sub0.active &&
+ test_must_fail git -C multisuper_clone config --get submodule.sub1.active
+'
+
test_done