X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-rebase.txt;h=08ee4aabaf74c8691a67c974bf3dca1c28cf25bc;hb=HEAD;hp=1b482abecdc2e953db1f29cb3c531f665ea8011c;hpb=782b3b6aafe8d2d270a5f6153c183e1bde7a030a;p=git.git diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index 1b482abe..08ee4aab 100644 --- a/Documentation/git-rebase.txt +++ b/Documentation/git-rebase.txt @@ -9,9 +9,7 @@ SYNOPSIS -------- 'git-rebase' [--onto ] [] -'git-rebase' --continue - -'git-rebase' --abort +'git-rebase' --continue | --skip | --abort DESCRIPTION ----------- @@ -23,9 +21,10 @@ not exist in the branch. It is possible that a merge failure will prevent this process from being completely automatic. You will have to resolve any such merge failure -and run `git rebase --continue`. If you can not resolve the merge -failure, running `git rebase --abort` will restore the original -and remove the working files found in the .dotest directory. +and run `git rebase --continue`. Another option is to bypass the commit +that caused the merge failure with `git rebase --skip`. To restore the +original and remove the .dotest working files, use the command +`git rebase --abort` instead. Note that if is not specified on the command line, the currently checked out branch is used.