sapling/hgmerge

85 lines
2.0 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#
# hgmerge - default merge helper for Mercurial
#
# This tries to find a way to do three-way merge on the current system.
# The result ought to end up in $1.
set -e # bail out quickly on failure
LOCAL="$1"
BASE="$2"
OTHER="$3"
if [ -z "$EDITOR" ]; then
EDITOR="vi"
fi
2005-06-10 10:52:39 +04:00
# Back up our file
cp "$LOCAL" "$LOCAL.orig"
# Attempt to do a non-interactive merge
2005-08-04 19:56:44 +04:00
if type merge > /dev/null 2>&1; then
2005-08-04 20:16:41 +04:00
merge "$LOCAL" "$BASE" "$OTHER" 2> /dev/null && exit 0
cp "$LOCAL.orig" "$LOCAL"
2005-08-04 19:56:44 +04:00
elif type diff3 > /dev/null 2>&1; then
2005-08-04 20:16:41 +04:00
diff3 -m "$LOCAL.orig" "$BASE" "$OTHER" > "$LOCAL" && exit 0
cp "$LOCAL.orig" "$LOCAL"
fi
if [ -n "$DISPLAY" ]; then
# try using kdiff3, which is fairly nice
2005-08-04 19:56:44 +04:00
if type kdiff3 > /dev/null 2>&1; then
2005-08-04 20:16:41 +04:00
kdiff3 --auto "$BASE" "$LOCAL" "$OTHER" -o "$LOCAL" || exit 1
exit 0
fi
# try using tkdiff, which is a bit less sophisticated
2005-08-04 19:56:44 +04:00
if type tkdiff > /dev/null 2>&1; then
2005-08-04 20:16:41 +04:00
tkdiff "$LOCAL" "$OTHER" -a "$BASE" -o "$LOCAL" || exit 1
exit 0
fi
fi
# Attempt to do a merge with $EDITOR
2005-08-04 19:56:44 +04:00
if type merge > /dev/null 2>&1; then
echo "conflicts detected in $LOCAL"
merge "$LOCAL" "$BASE" "$OTHER" 2>/dev/null || $EDITOR "$LOCAL"
exit 0
fi
2005-08-04 19:56:44 +04:00
if type diff3 > /dev/null 2>&1; then
echo "conflicts detected in $LOCAL"
diff3 -m "$LOCAL.orig" "$BASE" "$OTHER" > "$LOCAL" || $EDITOR "$LOCAL"
exit 0
fi
HGTMP=""
cleanup_exit() {
rm -rf "$HGTMP"
exit $1
}
# attempt to manually merge with diff and patch
2005-08-04 20:16:41 +04:00
if type diff > /dev/null 2>&1 && type patch > /dev/null 2>&1; then
# Remove temporary files even if we get interrupted
trap "cleanup_exit 1" TERM KILL INT QUIT ABRT
2005-08-04 20:16:41 +04:00
HGTMP="${TMPDIR-/tmp}/hgmerge.$RANDOM.$RANDOM.$RANDOM.$$"
(umask 077 && mkdir "$HGTMP") || {
echo "Could not create temporary directory! Exiting." 1>&2
exit 1
}
2005-08-04 20:16:41 +04:00
diff -u "$BASE" "$OTHER" > "$HGTMP/diff"
if patch "$LOCAL" < "$HGTMP/diff"; then
cleanup_exit 0
else
$EDITOR "$LOCAL" "$LOCAL.rej"
fi
2005-08-04 20:16:41 +04:00
cleanup_exit 1
fi
echo "hgmerge: unable to find merge, tkdiff, kdiff3, or diff+patch!"
exit 1