From f603a1c5620c6d1bca4ca084638a72b67aff07c6 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Mon, 8 Jan 2007 18:29:35 +0100 Subject: [PATCH] Use the git wrapper to invoke git commit. --- t/t3400-rebase.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/t3400-rebase.sh b/t/t3400-rebase.sh index b9d3131cc2..1c728c8459 100755 --- a/t/t3400-rebase.sh +++ b/t/t3400-rebase.sh @@ -15,15 +15,15 @@ test_expect_success \ 'prepare repository with topic branch, then rebase against master' \ 'echo First > A && git-update-index --add A && - git-commit -m "Add A." && + git commit -m "Add A." && git checkout -b my-topic-branch && echo Second > B && git-update-index --add B && - git-commit -m "Add B." && + git commit -m "Add B." && git checkout -f master && echo Third >> A && git-update-index A && - git-commit -m "Modify A." && + git commit -m "Modify A." && git checkout -f my-topic-branch && git rebase master' -- 2.11.4.GIT