2005-04-18 21:15:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2005-06-09 01:38:20 +02:00
|
|
|
# Copyright (c) Linus Torvalds, 2005
|
|
|
|
#
|
|
|
|
# This is the git per-file merge script, called with
|
2005-04-18 21:15:10 +02:00
|
|
|
#
|
2005-04-18 23:17:58 +02:00
|
|
|
# $1 - original file SHA1 (or empty)
|
|
|
|
# $2 - file in branch1 SHA1 (or empty)
|
|
|
|
# $3 - file in branch2 SHA1 (or empty)
|
2005-04-18 21:15:10 +02:00
|
|
|
# $4 - pathname in repository
|
2006-07-10 07:50:18 +02:00
|
|
|
# $5 - original file mode (or empty)
|
2005-05-02 08:53:32 +02:00
|
|
|
# $6 - file in branch1 mode (or empty)
|
|
|
|
# $7 - file in branch2 mode (or empty)
|
2005-04-18 21:15:10 +02:00
|
|
|
#
|
2005-04-18 23:17:58 +02:00
|
|
|
# Handle some trivial cases.. The _really_ trivial cases have
|
2005-04-30 01:25:05 +02:00
|
|
|
# been handled already by git-read-tree, but that one doesn't
|
2005-06-09 01:38:20 +02:00
|
|
|
# do any merges that might change the tree layout.
|
2005-04-19 04:55:19 +02:00
|
|
|
|
2005-04-18 23:17:58 +02:00
|
|
|
case "${1:-.}${2:-.}${3:-.}" in
|
2005-04-18 21:15:10 +02:00
|
|
|
#
|
2005-06-09 02:56:09 +02:00
|
|
|
# Deleted in both or deleted in one and unchanged in the other
|
2005-04-18 21:15:10 +02:00
|
|
|
#
|
2005-06-09 02:56:09 +02:00
|
|
|
"$1.." | "$1.$1" | "$1$1.")
|
[PATCH] Make "git resolve" less scary
When we resolve a merge between two branches, and it removes a file in the
current branch, we notify the person doing the resolve with a big nice
notice like
Removing xyzzy
which is all well and good.
HOWEVER, we also do this when the file was actually removed in the current
branch, and we're merging with another branch that didn't have it removed
(or, indeed, if the other branch _did_ have it removed, but the common
parent was far enough back that the file still existed in there).
And that just doesn't make sense. In that case we're not removing
anything: the file didn't exist in the branch we're merging into in the
first place. So the message just makes people nervous, and makes no sense.
This has been around forever, but I never bothered to do anything about
it.
Until now.
The trivial fix is to only talk about removing files if the file existed
in the branch we're merging into, but will not exist in the result.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-30 07:36:16 +02:00
|
|
|
if [ "$2" ]; then
|
|
|
|
echo "Removing $4"
|
2006-10-09 07:48:06 +02:00
|
|
|
else
|
|
|
|
# read-tree checked that index matches HEAD already,
|
|
|
|
# so we know we do not have this path tracked.
|
|
|
|
# there may be an unrelated working tree file here,
|
|
|
|
# which we should just leave unmolested.
|
|
|
|
exit 0
|
[PATCH] Make "git resolve" less scary
When we resolve a merge between two branches, and it removes a file in the
current branch, we notify the person doing the resolve with a big nice
notice like
Removing xyzzy
which is all well and good.
HOWEVER, we also do this when the file was actually removed in the current
branch, and we're merging with another branch that didn't have it removed
(or, indeed, if the other branch _did_ have it removed, but the common
parent was far enough back that the file still existed in there).
And that just doesn't make sense. In that case we're not removing
anything: the file didn't exist in the branch we're merging into in the
first place. So the message just makes people nervous, and makes no sense.
This has been around forever, but I never bothered to do anything about
it.
Until now.
The trivial fix is to only talk about removing files if the file existed
in the branch we're merging into, but will not exist in the result.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-30 07:36:16 +02:00
|
|
|
fi
|
2005-07-29 11:00:45 +02:00
|
|
|
if test -f "$4"; then
|
2005-11-20 04:50:44 +01:00
|
|
|
rm -f -- "$4" &&
|
2006-04-14 00:01:24 +02:00
|
|
|
rmdir -p "$(expr "z$4" : 'z\(.*\)/')" 2>/dev/null || :
|
2005-06-25 11:24:50 +02:00
|
|
|
fi &&
|
2005-09-08 02:26:23 +02:00
|
|
|
exec git-update-index --remove -- "$4"
|
2005-06-09 01:38:20 +02:00
|
|
|
;;
|
|
|
|
|
2005-04-18 21:15:10 +02:00
|
|
|
#
|
2005-05-02 08:53:32 +02:00
|
|
|
# Added in one.
|
2005-04-18 21:15:10 +02:00
|
|
|
#
|
2006-10-09 07:48:06 +02:00
|
|
|
".$2.")
|
|
|
|
# the other side did not add and we added so there is nothing
|
|
|
|
# to be done.
|
|
|
|
;;
|
|
|
|
"..$3")
|
2005-06-09 02:56:09 +02:00
|
|
|
echo "Adding $4"
|
2006-10-09 07:48:06 +02:00
|
|
|
test -f "$4" || {
|
|
|
|
echo "ERROR: untracked $4 is overwritten by the merge."
|
|
|
|
exit 1
|
|
|
|
}
|
2005-09-08 02:26:23 +02:00
|
|
|
git-update-index --add --cacheinfo "$6$7" "$2$3" "$4" &&
|
|
|
|
exec git-checkout-index -u -f -- "$4"
|
2005-06-09 01:38:20 +02:00
|
|
|
;;
|
|
|
|
|
2005-04-24 05:50:10 +02:00
|
|
|
#
|
2005-11-08 07:03:46 +01:00
|
|
|
# Added in both, identically (check for same permissions).
|
2005-04-24 05:50:10 +02:00
|
|
|
#
|
2005-05-02 08:53:32 +02:00
|
|
|
".$3$2")
|
2005-04-24 05:50:10 +02:00
|
|
|
if [ "$6" != "$7" ]; then
|
2005-05-02 08:53:32 +02:00
|
|
|
echo "ERROR: File $4 added identically in both branches,"
|
|
|
|
echo "ERROR: but permissions conflict $6->$7."
|
2005-04-24 05:50:10 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2005-06-09 02:56:09 +02:00
|
|
|
echo "Adding $4"
|
2005-09-08 02:26:23 +02:00
|
|
|
git-update-index --add --cacheinfo "$6" "$2" "$4" &&
|
|
|
|
exec git-checkout-index -u -f -- "$4"
|
2005-06-09 01:38:20 +02:00
|
|
|
;;
|
|
|
|
|
2005-04-18 23:17:58 +02:00
|
|
|
#
|
2005-05-02 08:53:32 +02:00
|
|
|
# Modified in both, but differently.
|
2005-04-18 23:17:58 +02:00
|
|
|
#
|
2005-11-08 07:03:46 +01:00
|
|
|
"$1$2$3" | ".$2$3")
|
2005-12-02 09:54:50 +01:00
|
|
|
|
|
|
|
case ",$6,$7," in
|
|
|
|
*,120000,*)
|
|
|
|
echo "ERROR: $4: Not merging symbolic link changes."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-11-10 05:38:33 +01:00
|
|
|
src2=`git-unpack-file $3`
|
2005-11-08 07:03:46 +01:00
|
|
|
case "$1" in
|
|
|
|
'')
|
|
|
|
echo "Added $4 in both, but differently."
|
2005-11-10 05:38:33 +01:00
|
|
|
# This extracts OUR file in $orig, and uses git-apply to
|
|
|
|
# remove lines that are unique to ours.
|
2005-11-08 07:03:46 +01:00
|
|
|
orig=`git-unpack-file $2`
|
2005-11-11 04:30:23 +01:00
|
|
|
sz0=`wc -c <"$orig"`
|
2005-11-10 05:38:33 +01:00
|
|
|
diff -u -La/$orig -Lb/$orig $orig $src2 | git-apply --no-add
|
2005-11-11 04:30:23 +01:00
|
|
|
sz1=`wc -c <"$orig"`
|
|
|
|
|
|
|
|
# If we do not have enough common material, it is not
|
|
|
|
# worth trying two-file merge using common subsections.
|
|
|
|
expr "$sz0" \< "$sz1" \* 2 >/dev/null || : >$orig
|
2005-11-08 07:03:46 +01:00
|
|
|
;;
|
|
|
|
*)
|
2006-01-05 12:46:16 +01:00
|
|
|
echo "Auto-merging $4"
|
2005-11-08 07:03:46 +01:00
|
|
|
orig=`git-unpack-file $1`
|
|
|
|
;;
|
|
|
|
esac
|
2005-06-09 01:38:20 +02:00
|
|
|
|
2005-12-07 09:50:33 +01:00
|
|
|
# Be careful for funny filename such as "-L" in "$4", which
|
|
|
|
# would confuse "merge" greatly.
|
|
|
|
src1=`git-unpack-file $2`
|
2006-12-22 03:20:55 +01:00
|
|
|
git-merge-file "$src1" "$orig" "$src2"
|
2005-04-24 05:50:10 +02:00
|
|
|
ret=$?
|
2005-12-07 09:50:33 +01:00
|
|
|
|
|
|
|
# Create the working tree file, using "our tree" version from the
|
|
|
|
# index, and then store the result of the merge.
|
|
|
|
git-checkout-index -f --stage=2 -- "$4" && cat "$src1" >"$4"
|
|
|
|
rm -f -- "$orig" "$src1" "$src2"
|
2005-06-08 23:26:55 +02:00
|
|
|
|
2005-04-24 05:50:10 +02:00
|
|
|
if [ "$6" != "$7" ]; then
|
2005-06-09 01:38:20 +02:00
|
|
|
echo "ERROR: Permissions conflict: $5->$6,$7."
|
2005-06-08 20:40:59 +02:00
|
|
|
ret=1
|
2005-04-24 05:50:10 +02:00
|
|
|
fi
|
2005-11-08 07:03:46 +01:00
|
|
|
if [ "$1" = '' ]; then
|
|
|
|
ret=1
|
|
|
|
fi
|
2005-06-08 23:26:55 +02:00
|
|
|
|
2005-04-24 05:50:10 +02:00
|
|
|
if [ $ret -ne 0 ]; then
|
2006-01-05 12:46:16 +01:00
|
|
|
echo "ERROR: Merge conflict in $4"
|
2005-04-19 04:55:19 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2005-09-08 02:26:23 +02:00
|
|
|
exec git-update-index -- "$4"
|
2005-06-09 01:38:20 +02:00
|
|
|
;;
|
|
|
|
|
2005-04-18 23:17:58 +02:00
|
|
|
*)
|
2005-06-09 01:38:20 +02:00
|
|
|
echo "ERROR: $4: Not handling case $1 -> $2 -> $3"
|
|
|
|
;;
|
2005-04-18 23:17:58 +02:00
|
|
|
esac
|
|
|
|
exit 1
|