Browse Source

t6050-replace: add test to clean up all the replace refs

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Christian Couder 11 years ago committed by Junio C Hamano
parent
commit
11aec9556b
  1. 6
      t/t6050-replace.sh

6
t/t6050-replace.sh

@ -276,4 +276,10 @@ test_expect_success '-f option bypasses the type check' ' @@ -276,4 +276,10 @@ test_expect_success '-f option bypasses the type check' '
git replace -f HEAD^ $BLOB
'

test_expect_success 'replace ref cleanup' '
test -n "$(git replace)" &&
git replace -d $(git replace) &&
test -z "$(git replace)"
'

test_done

Loading…
Cancel
Save