X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=Documentation%2Fgit-rebase.txt;h=4a7e67a4d2241a82a564734d64789e6ee13c8330;hb=ea92f41ff92b2fef54c8da4abb03c8101160a034;hp=b36276c7ed8dbb837cedfa833620fb843de89d90;hpb=c534c4ba7e01cc77e1470b91d1b090289410971b;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 ------- ::