]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t3400-rebase.sh
Rewrite "git-frotz" to "git frotz"
[thirdparty/git.git] / t / t3400-rebase.sh
index b9d3131cc2167df027d4d6eebc87ad51223c8f34..95f3a2a556a1607060b8de34e518366fae14d007 100755 (executable)
@@ -14,15 +14,15 @@ export GIT_AUTHOR_EMAIL=bogus_email_address
 test_expect_success \
     'prepare repository with topic branch, then rebase against master' \
     'echo First > A &&
-     git-update-index --add A &&
+     git update-index --add A &&
      git-commit -m "Add A." &&
      git checkout -b my-topic-branch &&
      echo Second > B &&
-     git-update-index --add B &&
+     git update-index --add B &&
      git-commit -m "Add B." &&
      git checkout -f master &&
      echo Third >> A &&
-     git-update-index A &&
+     git update-index A &&
      git-commit -m "Modify A." &&
      git checkout -f my-topic-branch &&
      git rebase master'