X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-rebase.txt;h=4a7e67a4d2241a82a564734d64789e6ee13c8330;hb=93ddef3e2dd5f7f3238fad9d52e974d03c7844f2;hp=b36276c7ed8dbb837cedfa833620fb843de89d90;hpb=be1295d16a2593dcf468fef7d9e811d057d9039f;p=git.git diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index b36276c7..4a7e67a4 100644 --- a/Documentation/git-rebase.txt +++ b/Documentation/git-rebase.txt @@ -48,6 +48,18 @@ would be: / D---E---F---G master +In case of conflict, git-rebase will stop at the first problematic commit +and leave conflict markers in the tree. After resolving the conflict manually +and updating the index with the desired resolution, you can continue the +rebasing process with + + git am --resolved --3way + +Alternatively, you can undo the git-rebase with + + git reset --hard ORIG_HEAD + rm -r .dotest + OPTIONS ------- ::