Junio C Hamano <gitster@xxxxxxxxx> writes: > The procedure to resolve a merge conflict typically goes like this: > > - first open the file in the editor, and with the help of conflict > markers come up with a resolution. > > - save the file. > > - look at the output from "git diff" to see the combined diff to > double check if the resolution makes sense. > > - perform other tests, like trying to build the result with "make". > > - finally "git add file" to mark that you are done. > > and repeating the above until you are done with all the conflicted > paths. If you, for whatever reason, accidentally "git add file" by > mistake until you are convinced that you resolved it correctly (e.g. > doing "git add file" immediately after saving, without a chance to > peruse the output from "git diff"), there is no good way to recover. "git reset --unmerge file" to undo accidental "git add file" during conflict resolution? I'm afraid "unmerge" sounds like revert of "merge", rather than revert of "resolve". I'd rather prefer to see something like: git add --undo file git merge --unresolve file git reset --unresolve file in that order, to deal with the issue. -- Sergey