diff options
author | 2019-07-29 12:38:18 -0700 | |
---|---|---|
committer | 2019-07-29 12:38:18 -0700 | |
commit | 292a0de9982aff5e4f952214c1b9f762d8a1585a (patch) | |
tree | 6948ec1ee4bee6865b761aa200c8f4b7e9c9bdb7 /t | |
parent | Merge branch 'js/rebase-reschedule-applies-only-to-interactive' into maint (diff) | |
parent | submodule foreach: fix recursion of options (diff) | |
download | tgif-292a0de9982aff5e4f952214c1b9f762d8a1585a.tar.xz |
Merge branch 'ms/submodule-foreach-fix' into maint
"git submodule foreach" did not protect command line options passed
to the command to be run in each submodule correctly, when the
"--recursive" option was in use.
* ms/submodule-foreach-fix:
submodule foreach: fix recursion of options
Diffstat (limited to 't')
-rwxr-xr-x | t/t7407-submodule-foreach.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index 706ae762e0..6b2aa917e1 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -421,4 +421,11 @@ test_expect_success 'option-like arguments passed to foreach commands are not lo test_cmp expected actual ' +test_expect_success 'option-like arguments passed to foreach recurse correctly' ' + git -C clone2 submodule foreach --recursive "echo be --an-option" >expect && + git -C clone2 submodule foreach --recursive echo be --an-option >actual && + grep -e "--an-option" expect && + test_cmp expect actual +' + test_done |