]> asedeno.scripts.mit.edu Git - git.git/blobdiff - git-rebase.sh
Merge branch 'jc/maint-fetch-regression-1.5.4'
[git.git] / git-rebase.sh
index 452c5e7e01e168ec4fcdc5bb87caac3f326f95ea..60c458f201f8f98bb1c6e115c009525659c2ee20 100755 (executable)
@@ -18,8 +18,7 @@ original <branch> and remove the .dotest working files, use the command
 git rebase --abort instead.
 
 Note that if <branch> is not specified on the command line, the
-currently checked out branch is used.  You must be in the top
-directory of your project to start (or continue) a rebase.
+currently checked out branch is used.
 
 Example:       git-rebase master~1 topic
 
@@ -63,7 +62,7 @@ continue_merge () {
        cmt=`cat "$dotest/current"`
        if ! git diff-index --quiet HEAD --
        then
-               if ! git-commit -C "$cmt"
+               if ! git commit --no-verify -C "$cmt"
                then
                        echo "Commit failed, please do not call \"git commit\""
                        echo "directly, but instead do one of the following: "