git - Restart conflict resolution in a single file -
in larger git merge several conflicting files, incorrectly marked file resolved (using git add file
after editing)
now i'd undo conflict resolution attempt , start on resolving file.
how can that?
found solution here: http://gitster.livejournal.com/43665.html
git checkout -m file
this restores unresolved state, including information parent , merge base, allows restarting resolution.
Comments
Post a Comment