From: Johannes Schindelin Date: Sat, 7 Feb 2009 13:43:15 +0000 (+0100) Subject: submodule: warn about non-submodules X-Git-Tag: v1.6.2-rc1~42^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=496917b721adae11e596cd44b13cb8a49c388de7;hp=f3670a5749d704fe1edee4201f9b23adbf0bf967;p=git.git submodule: warn about non-submodules Earlier, when you called git submodule some/bogus/path Git would silently ignore the path, without warning the user about the likely mistake. Now it does. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/git-submodule.sh b/git-submodule.sh index 2f47e065f..6cc2d334c 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -59,7 +59,7 @@ resolve_relative_url () # module_list() { - git ls-files --stage -- "$@" | grep '^160000 ' + git ls-files --error-unmatch --stage -- "$@" | grep '^160000 ' } # diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh index a74f24c0d..b8cb2df66 100755 --- a/t/t7400-submodule-basic.sh +++ b/t/t7400-submodule-basic.sh @@ -240,4 +240,11 @@ test_expect_success 'ls-files gracefully handles trailing slash' ' ' +test_expect_success 'submodule warns' ' + + git submodule no-such-submodule 2> output.err && + grep "^error: .*no-such-submodule" output.err + +' + test_done