Martin Langhoff <martin@xxxxxxxxxxxxxxx> writes: > diff --git a/git-xxdiff.sh b/git-xxdiff.sh > new file mode 100755 > index 0000000..d562ab2 > --- /dev/null > +++ b/git-xxdiff.sh > @@ -0,0 +1,38 @@ > +#!/bin/sh > + > +USAGE='<path>' > +SUBDIRECTORY_OK=No > +. git-sh-setup > + > +FILE=$1 > +MERGE_HEAD=`git rev-parse MERGE_HEAD` > + > +# Sanity checks We can have unmerged index without MERGE_HEAD (for example, think "rebase --merge" or "am -3"); drop check for that and instead check for stage 2 ("ours") for the path. git cat-file blob :2:$FILE Can xxdiff take more than one file pairs? If so you might want to list unmerged paths (ls-files -u) and iterate through it when no paths are given from the command line. If not, you might want to take the first unmerged path when no paths are given from the command line. > +xxdiff -wbB --show-merged-pane --merged-filename $FILE~merged $FILE~HEAD $FILE~MERGE_HEAD > \ No newline at end of file ;-). - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html