When adding a new submodule it can happen that .git/modules/<name> already contains a submodule repo, e.g. when a submodule is removed from the work tree and another submodule is added at the same path. But then the work tree of the submodule will be populated using the existing repository and not the one the user provided. Error out in that case and tell the user she should use a different name for the submodule with the "--name" option to avoid this problem. In one test in t7406 the --name option had to be added to "git submodule add", as that test re-adds a formerly removed submodule. Reported-by: Jonathan Johnson <me@xxxxxxxxxxxxxxxx> Signed-off-by: Jens Lehmann <Jens.Lehmann@xxxxxx> --- git-submodule.sh | 3 ++- t/t7400-submodule-basic.sh | 18 ++++++++++++++++++ t/t7406-submodule-update.sh | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/git-submodule.sh b/git-submodule.sh index 22febb1..58cd053 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -359,7 +359,8 @@ Use -f if you really want to add it." >&2 fi else - + test ! -d ".git/modules/$sm_name" || + die "$(eval_gettext "Submodule name '\$sm_name' is already used. Please choose another name with the '--name' option.")" module_clone "$sm_path" "$sm_name" "$realrepo" "$reference" || exit ( clear_local_git_env diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh index 78bf739..a031a27 100755 --- a/t/t7400-submodule-basic.sh +++ b/t/t7400-submodule-basic.sh @@ -726,4 +726,22 @@ test_expect_success 'submodule add --name allows to replace a submodule with ano ) ' +test_expect_success 'submodule add with an existing name fails' ' + ( + cd addtest2 && + rm -rf repo && + test_must_fail git submodule add -q --name repo_new "$submodurl/bare.git" repo && + test ! -d repo && + echo "repo" >expect && + git config -f .gitmodules submodule.repo_new.path >actual && + test_cmp expect actual&& + echo "$submodurl/bare.git" >expect && + git config -f .gitmodules submodule.repo_new.url >actual && + test_cmp expect actual && + echo "$submodurl/bare.git" >expect && + git config submodule.repo_new.url >actual && + test_cmp expect actual + ) +' + test_done diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index 1542653..2d44c51 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -627,7 +627,7 @@ test_expect_success 'submodule add properly re-creates deeper level submodules' (cd super && git reset --hard master && rm -rf deeper/ && - git submodule add ../submodule deeper/submodule + git submodule add --name deeper/submodule2 ../submodule deeper/submodule ) ' -- 1.7.12.1.430.g4fd6dc4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html