From: Mahi Kolla <mahikolla@xxxxxxxxxx> When running 'git clone --recurse-submodules', developers expect various other commands such as 'pull' and 'checkout' to also run recursively into submodules.The submitted code updates the 'submodule.recurse' config value to true when 'git clone' is run with the '--recurse-submodules' option. Signed-off-by: Mahi Kolla <mahikolla@xxxxxxxxxx> --- t/t5606-clone-options.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t5606-clone-options.sh b/t/t5606-clone-options.sh index 3daef8c941f..69c4bacf52f 100755 --- a/t/t5606-clone-options.sh +++ b/t/t5606-clone-options.sh @@ -19,7 +19,7 @@ test_expect_success 'setup' ' test_expect_success 'clone --recurse-submodules sets submodule.recurse=true' ' git clone --recurse-submodules parent clone-rec-submodule && - test_config_global submodule.recurse true + git config submodule.recurse true ' -- gitgitgadget