summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-02-25 16:43:32 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-02-25 16:43:33 -0800
commit140045821aa78da3a80a7d7c8f707b955e1ab40d (patch)
tree9a8bb3c516eb72c8a5141dd3c162e3dc2d34d186 /t
parentMerge branch 'sh/mergetools-vimdiff1' (diff)
parentpush: do not turn --delete '' into a matching push (diff)
downloadtgif-140045821aa78da3a80a7d7c8f707b955e1ab40d.tar.xz
Merge branch 'jc/push-delete-nothing'
"git push $there --delete ''" should have been diagnosed as an error, but instead turned into a matching push, which has been corrected. * jc/push-delete-nothing: push: do not turn --delete '' into a matching push
Diffstat (limited to 't')
-rwxr-xr-xt/t5516-fetch-push.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh
index 15262b4192..f11742ed59 100755
--- a/t/t5516-fetch-push.sh
+++ b/t/t5516-fetch-push.sh
@@ -820,6 +820,11 @@ test_expect_success 'push --delete refuses src:dest refspecs' '
test_must_fail git push testrepo --delete main:foo
'
+test_expect_success 'push --delete refuses empty string' '
+ mk_test testrepo heads/master &&
+ test_must_fail git push testrepo --delete ""
+'
+
test_expect_success 'warn on push to HEAD of non-bare repository' '
mk_test testrepo heads/main &&
(