Merge my and Petr's git-merge-one-file-script modifications
[alt-git.git] / git-merge-one-file-script
blobf0353c14b4c116a07a4a2b67453707767e4a1a3f
1 #!/bin/sh
3 # Copyright (c) Linus Torvalds, 2005
5 # This is the git per-file merge script, called with
7 # $1 - original file SHA1 (or empty)
8 # $2 - file in branch1 SHA1 (or empty)
9 # $3 - file in branch2 SHA1 (or empty)
10 # $4 - pathname in repository
11 # $5 - orignal file mode (or empty)
12 # $6 - file in branch1 mode (or empty)
13 # $7 - file in branch2 mode (or empty)
15 # Handle some trivial cases.. The _really_ trivial cases have
16 # been handled already by git-read-tree, but that one doesn't
17 # do any merges that might change the tree layout.
19 case "${1:-.}${2:-.}${3:-.}" in
21 # Deleted in both.
23 "$1..")
24 echo "WARNING: $4 is removed in both branches."
25 echo "WARNING: This is a potential rename conflict."
26 rm -f -- "$4" &&
27 exec git-update-cache --remove -- "$4"
31 # Deleted in one and unchanged in the other.
33 "$1.$1" | "$1$1.")
34 echo "Removing $4"
35 exec rm -f -- "$4" &&
36 git-update-cache --remove -- "$4"
40 # Added in one.
42 ".$2." | "..$3" )
43 case "$6$7" in *7??) mode=+x;; *) mode=-x;; esac
44 echo "Adding $4 with perm $mode."
45 exec git-cat-file blob "$2$3" >"$4" &&
46 chmod $mode -- "$4" &&
47 git-update-cache --add -- "$4"
51 # Added in both (check for same permissions).
53 ".$3$2")
54 if [ "$6" != "$7" ]; then
55 echo "ERROR: File $4 added identically in both branches,"
56 echo "ERROR: but permissions conflict $6->$7."
57 exit 1
59 case "$6" in *7??) mode=+x;; *) mode=-x;; esac
60 echo "Adding $4 with perm $mode"
61 exec git-cat-file blob "$2" >"$4" &&
62 chmod $mode -- "$4" &&
63 git-update-cache --add -- "$4"
67 # Modified in both, but differently.
69 "$1$2$3")
70 echo "Auto-merging $4."
71 orig=`git-unpack-file $1`
72 src1=`git-unpack-file $2`
73 src2=`git-unpack-file $3`
75 merge -p "$src1" "$orig" "$src2" > "$4"
76 ret=$?
77 rm -f -- "$orig" "$src1" "$src2"
79 if [ "$6" != "$7" ]; then
80 echo "ERROR: Permissions conflict: $5->$6,$7."
81 ret=1
83 case "$6" in *7??) mode=+x;; *) mode=-x;; esac
84 chmod "$mode" "$4"
86 if [ $ret -ne 0 ]; then
87 # Reset the index to the first branch, making
88 # git-diff-file useful
89 git-update-cache --add --cacheinfo "$6" "$2" "$4"
90 echo "ERROR: Merge conflict in $4."
91 exit 1
93 exec git-update-cache --add -- "$4"
97 echo "ERROR: $4: Not handling case $1 -> $2 -> $3"
99 esac
100 exit 1