git-gui: Don't allow users to commit a bad octopus merge.
commitdff7e88febf85b1b8b1b789cd7c99434b70fb19b
authorShawn O. Pearce <spearce@spearce.org>
Fri, 26 Jan 2007 09:07:34 +0000 (26 04:07 -0500)
committerShawn O. Pearce <spearce@spearce.org>
Fri, 26 Jan 2007 09:07:34 +0000 (26 04:07 -0500)
treeb2c77682237b3c204b43d502746f19a2c39304d7
parentee3cfb595415e2f076d5b90efba83088e5af961c
git-gui: Don't allow users to commit a bad octopus merge.

If an octopus merge goes horribly wrong git-merge will leave the
working directory and index dirty, but will not leave behind a
MERGE_HEAD file for a later commit.  Consequently we won't know
its a merge commit and instead would let the user resolve the
conflicts and commit a single-parent commit, which is wrong.

So now if an octopus merge fails we notify the user that the
merge did not work, tell them we will reset the working directory,
and suggest that they merge one branch at a time.  This prevents
the user from committing a bad octopus merge.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh