From 8978d043c35ad068e280dbbdc31e06524ea0ab56 Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" Date: Sun, 26 Mar 2006 15:29:28 -0500 Subject: [PATCH] Document git-rebase behavior on conflicts. --- Documentation/git-rebase.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index b36276c7ed..4a7e67a4d2 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 ------- ::