summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-05-30 21:51:27 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-05-30 21:51:27 +0900
commitb2fd6592943db80ef9bfccbf55d65a39268d76ed (patch)
tree35b12601a1261a3654076ae4f70debd0c3c19bf6 /t
parentMerge branch 'sb/submodule-merge-in-merge-recursive' (diff)
parentconfig: die when --blob is used outside a repository (diff)
downloadtgif-b2fd6592943db80ef9bfccbf55d65a39268d76ed.tar.xz
Merge branch 'jk/config-blob-sans-repo'
Error codepath fix. * jk/config-blob-sans-repo: config: die when --blob is used outside a repository
Diffstat (limited to 't')
-rwxr-xr-xt/t1307-config-blob.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t1307-config-blob.sh b/t/t1307-config-blob.sh
index eed31ffa30..37dc689d8c 100755
--- a/t/t1307-config-blob.sh
+++ b/t/t1307-config-blob.sh
@@ -73,4 +73,8 @@ test_expect_success 'can parse blob ending with CR' '
test_cmp expect actual
'
+test_expect_success 'config --blob outside of a repository is an error' '
+ test_must_fail nongit git config --blob=foo --list
+'
+
test_done