3 # Copyright (c) 2005 Linus Torvalds
8 USAGE
='<head> <remote> <merge-message>'
12 rm -f -- "$GIT_DIR/MERGE_HEAD" \
13 "$GIT_DIR/LAST_MERGE" ||
exit 1
16 head=$
(git-rev-parse
--verify "$1"^
0) &&
17 merge
=$
(git-rev-parse
--verify "$2"^
0) &&
19 merge_msg
="$3" || usage
22 # The remote name is just used for the message,
25 if [ -z "$head" -o -z "$merge" -o -z "$merge_msg" ]; then
30 echo $head > "$GIT_DIR"/ORIG_HEAD
31 echo $merge > "$GIT_DIR"/LAST_MERGE
33 common
=$
(git-merge-base
$head $merge)
34 if [ -z "$common" ]; then
35 die
"Unable to find common commit between" $merge $head
40 echo "Already up-to-date. Yeeah!"
45 echo "Updating from $head to $merge"
46 git-read-tree
-u -m $head $merge ||
exit 1
47 git-update-ref
-m "resolve $merge_name: Fast forward" \
49 git-diff-tree
-p $head $merge | git-apply
--stat
55 # We are going to make a new commit.
56 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
58 # Find an optimum merge base if there are more than one candidates.
61 common
=$
(git-merge-base
-a $head $merge)
64 echo "Trying to find the optimum merge base."
71 GIT_INDEX_FILE
=$G git-read-tree
-m $c $head $merge \
72 2>/dev
/null ||
continue
73 # Count the paths that are unmerged.
74 cnt
=`GIT_INDEX_FILE=$G git-ls-files --unmerged | wc -l`
75 if test $best_cnt -le 0 -o $cnt -le $best_cnt
79 if test "$best_cnt" -eq 0
81 # Cannot do any better than all trivial merge.
90 echo "Trying to merge $merge into $head using $common."
91 git-update-index
--refresh 2>/dev
/null
92 git-read-tree
-u -m $common $head $merge ||
exit 1
93 result_tree
=$
(git-write-tree
2> /dev
/null
)
95 echo "Simple merge failed, trying Automatic merge"
96 git-merge-index
-o git-merge-one-file
-a
98 echo $merge > "$GIT_DIR"/MERGE_HEAD
99 die
"Automatic merge failed, fix up by hand"
101 result_tree
=$
(git-write-tree
) ||
exit 1
103 result_commit
=$
(echo "$merge_msg" | git-commit-tree
$result_tree -p $head -p $merge)
104 echo "Committed merge $result_commit"
105 git-update-ref
-m "resolve $merge_name: In-index merge" \
106 HEAD
"$result_commit" "$head"
107 git-diff-tree
-p $head $result_commit | git-apply
--stat