X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/ddca05489313c16e5a0386d26d52568113f8ec46..5fd79c5f5aa2ea962162260e88f274983cb1e032:/t/t1301-repair.sh diff --git a/t/t1301-repair.sh b/t/t1301-repair.sh index 8d5d4e5..939699c 100755 --- a/t/t1301-repair.sh +++ b/t/t1301-repair.sh @@ -20,7 +20,7 @@ test_expect_success \ ' stg new foo -m foo && echo foo > foo.txt && - git add foo.txt && + stg add foo.txt && stg refresh ' @@ -32,7 +32,7 @@ test_expect_success \ 'Create a GIT commit' \ ' echo bar > bar.txt && - git add bar.txt && + stg add bar.txt && git commit -a -m bar ' @@ -46,7 +46,7 @@ test_expect_success \ 'Create three more GIT commits' \ ' echo one > numbers.txt && - git add numbers.txt && + stg add numbers.txt && git commit -a -m one && echo two >> numbers.txt && git commit -a -m two && @@ -65,7 +65,7 @@ test_expect_success \ ' git checkout -b br master^^ && echo woof > woof.txt && - git add woof.txt && + stg add woof.txt && git commit -a -m woof && git checkout master && git pull . br