X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/dbb0cf2c1d46199f8a4cc5e1b52b9a24494f794e..a0045b8750ffa368be49de692dc309d0a7459eb2:/t/t2100-pull-policy-fetch.sh diff --git a/t/t2100-pull-policy-fetch.sh b/t/t2100-pull-policy-fetch.sh index 07435f5..670c7c6 100755 --- a/t/t2100-pull-policy-fetch.sh +++ b/t/t2100-pull-policy-fetch.sh @@ -22,7 +22,7 @@ test_expect_success \ git config branch.master.stgit.pull-policy fetch-rebase && git config --list && stg new c1 -m c1 && - echo a > file && stg add file && stg refresh + echo a > file && git add file && stg refresh ) ' @@ -30,7 +30,7 @@ test_expect_success \ 'Add non-rewinding commit upstream and pull it from clone' \ ' (cd upstream && stg new u1 -m u1 && - echo a > file2 && stg add file2 && stg refresh) && + echo a > file2 && git add file2 && stg refresh) && (cd clone && stg pull) && test -e clone/file2 '