diff options
author | Junio C Hamano <junkio@cox.net> | 2006-11-24 00:26:49 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-24 03:59:05 -0800 |
commit | d4f694ba89857a87e259557d0f236c761b4041ef (patch) | |
tree | 08453ccc3a39a74ad5e74ff4bf1cf13dd88b85c7 /t/t5400-send-pack.sh | |
parent | 634b8d05142a4812bf35fe8b14cc62c84494c78f (diff) | |
download | git-d4f694ba89857a87e259557d0f236c761b4041ef.tar.gz |
Allow git push to delete remote ref.
This allows you to say
git send-pack $URL :refs/heads/$branch
to delete the named remote branch. The refspec $src:$dst means
replace the destination ref with the object known as $src on the
local side, so this is a natural extension to make an empty $src
mean "No object" to delete the target.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5400-send-pack.sh')
-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. |