diff options
author | 2006-11-26 22:51:17 -0800 | |
---|---|---|
committer | 2006-11-26 22:51:17 -0800 | |
commit | a22f5427001abb71d0aeeac33a0a82ab48a8de45 (patch) | |
tree | 178925767cf979316345258953a23eee1efffd6c /t | |
parent | Merge branch 'jc/merge' (diff) | |
parent | Allow git push to delete remote ref. (diff) | |
download | tgif-a22f5427001abb71d0aeeac33a0a82ab48a8de45.tar.xz |
Merge branch 'jc/push-delete-ref'
* jc/push-delete-ref:
Allow git push to delete remote ref.
Diffstat (limited to 't')
-rwxr-xr-x | t/t5400-send-pack.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh index 8afb899717..28744b35e1 100755 --- a/t/t5400-send-pack.sh +++ b/t/t5400-send-pack.sh @@ -64,6 +64,16 @@ test_expect_success \ cmp victim/.git/refs/heads/master .git/refs/heads/master ' +test_expect_success \ + 'push can be used to delete a ref' ' + cd victim && + git branch extra master && + cd .. && + test -f victim/.git/refs/heads/extra && + git-send-pack ./victim/.git/ :extra master && + ! test -f victim/.git/refs/heads/extra +' + unset GIT_CONFIG GIT_CONFIG_LOCAL HOME=`pwd`/no-such-directory export HOME ;# this way we force the victim/.git/config to be used. |