summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-01-16 05:48:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-01-16 05:48:46 (GMT)
commitaa08688362448e0f74ed776449e80d54ca9ae909 (patch)
tree591fb5602f5bd4c1304bdf63d35c9cdc120d6550 /t
parent6a393f36d9a7066c7e48a5fd22fc5fd4e8b2bb35 (diff)
parent6c62f015520eaecd94d93a7e8339b190f2c24bc6 (diff)
downloadgit-aa08688362448e0f74ed776449e80d54ca9ae909.zip
git-aa08688362448e0f74ed776449e80d54ca9ae909.tar.gz
git-aa08688362448e0f74ed776449e80d54ca9ae909.tar.bz2
Merge branch 'ds/for-each-repo-noopfix'
"git for-each-repo --config=<var> <cmd>" should not run <cmd> for any repository when the configuration variable <var> is not defined even once. * ds/for-each-repo-noopfix: for-each-repo: do nothing on empty config
Diffstat (limited to 't')
-rwxr-xr-xt/t0068-for-each-repo.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t0068-for-each-repo.sh b/t/t0068-for-each-repo.sh
index 136b4ec..4675e85 100755
--- a/t/t0068-for-each-repo.sh
+++ b/t/t0068-for-each-repo.sh
@@ -27,4 +27,10 @@ test_expect_success 'run based on configured value' '
grep again message
'
+test_expect_success 'do nothing on empty config' '
+ # the whole thing would fail if for-each-ref iterated even
+ # once, because "git help --no-such-option" would fail
+ git for-each-repo --config=bogus.config -- help --no-such-option
+'
+
test_done