3 # Copyright (c) 2005 Junio C Hamano
6 . git-sh-setup || die
"Not a git archive"
12 die
"git-merge [-n] [-s <strategy>]... <merge-message> <head> <remote>+"
15 # all_strategies='resolve recursive stupid octopus'
17 all_strategies
='recursive octopus resolve stupid'
18 default_strategies
='resolve octopus'
22 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
23 "$GIT_DIR/MERGE_SAVE" ||
exit 1
27 # Stash away any local modifications.
28 git-diff-index
-z --name-only $head |
29 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
33 if test -f "$GIT_DIR/MERGE_SAVE"
35 git
reset --hard $head
36 cpio -iuv <"$GIT_DIR/MERGE_SAVE"
37 git-update-index
--refresh >/dev
/null
42 test '' = "$2" ||
echo "$2"
45 echo "No merge message -- not updating HEAD"
48 git-update-ref HEAD
"$1" "$head" ||
exit 1
54 git-diff-tree
-p -M "$head" "$1" |
55 git-apply
--stat --summary
60 while case "$#" in 0) break ;; esac
63 -n|
--n|
--no|
--no-|
--no-s|
--no-su|
--no-sum|
--no-summ|\
64 --no-summa|
--no-summar|
--no-summary)
66 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
67 --strateg=*|
--strategy=*|\
68 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
71 strategy
=`expr "$1" : '-[^=]*=\(.*\)'` ;;
78 case " $all_strategies " in
80 use_strategies
="$use_strategies$strategy " ;;
82 die
"available strategies are: $all_strategies" ;;
91 case "$use_strategies" in
93 use_strategies
=$default_strategies
96 test "$#" -le 2 && usage
;# we need at least two heads.
101 head=$
(git-rev-parse
--verify "$1"^
0) || usage
104 # All the rest are remote heads
107 git-rev-parse
--verify "$remote"^
0 >/dev
/null ||
108 die
"$remote - not something we can merge"
111 common
=$
(git-show-branch
--merge-base $head "$@")
112 echo "$head" >"$GIT_DIR/ORIG_HEAD"
116 # No common ancestors found. We need a real merge.
119 # If head can reach all the merge then we are up to date.
120 # but first the most common case of merging one remote
121 echo "Already up-to-date."
126 # Again the most common case of merging one remote.
127 echo "Updating from $head to $1."
128 git-update-index
--refresh 2>/dev
/null
129 new_head
=$
(git-rev-parse
--verify "$1^0") &&
130 git-read-tree
-u -m $head "$new_head" &&
131 finish
"$new_head" "Fast forward"
136 # We are not doing octopus and not fast forward. Need a
140 # We are not doing octopus, not fast forward, and have only
141 # one common. See if it is really trivial.
142 echo "Trying really trivial in-index merge..."
143 git-update-index
--refresh 2>/dev
/null
144 if git-read-tree
--trivial -m -u $common $head "$1" &&
145 result_tree
=$
(git-write-tree
)
150 git-commit-tree
$result_tree -p HEAD
-p "$1"
152 finish
"$result_commit" "In-index merge"
159 # An octopus. If we can reach all the remote we are up to date.
163 common_one
=$
(git-merge-base
$head $remote)
164 if test "$common_one" != "$remote"
170 if test "$up_to_date" = t
172 echo "Already up-to-date. Yeeah!"
179 # At this point, we need a real merge. No matter what strategy
180 # we use, it would operate on the index, possibly affecting the
181 # working tree, and when resolved cleanly, have the desired tree
182 # in the index -- this means that the index must be in sync with
183 # the $head commit. The strategies are responsible to ensure this.
185 case "$use_strategies" in
187 # Stash away the local changes so that we can try more than one.
192 rm -f "$GIT_DIR/MERGE_SAVE"
197 result_tree
= best_cnt
=-1 best_strategy
= wt_strategy
=
198 for strategy
in $use_strategies
200 test "$wt_strategy" = '' ||
{
201 echo "Rewinding the tree to pristine..."
204 case "$single_strategy" in
206 echo "Trying merge strategy $strategy..."
210 # Remember which strategy left the state in the working tree
211 wt_strategy
=$strategy
213 git-merge-
$strategy $common -- "$head_arg" "$@" ||
{
215 # The backend exits with 1 when conflicts are left to be resolved,
216 # with 2 when it does not handle the given merge at all.
219 if test "$exit" -eq 1
222 git-diff-files --name-only
223 git-ls-files --unmerged
225 if test $best_cnt -le 0 -o $cnt -le $best_cnt
227 best_strategy
=$strategy
234 # Automerge succeeded.
235 result_tree
=$
(git-write-tree
) && break
238 # If we have a resulting tree, that means the strategy module
239 # auto resolved the merge cleanly.
240 if test '' != "$result_tree"
245 parents
="$parents -p $remote"
247 result_commit
=$
(echo "$merge_msg" | git-commit-tree
$result_tree $parents) ||
exit
248 finish
"$result_commit" "Merge $result_commit, made by $wt_strategy."
253 # Pick the result from the best strategy and have the user fix it up.
254 case "$best_strategy" in
257 die
"No merge strategy handled the merge."
260 # We already have its result in the working tree.
263 echo "Rewinding the tree to pristine..."
265 echo "Using the $best_strategy to prepare resolving by hand."
266 git-merge-
$best_strategy $common -- "$head_arg" "$@"
272 done >"$GIT_DIR/MERGE_HEAD"
273 echo $merge_msg >"$GIT_DIR/MERGE_MSG"
275 die
"Automatic merge failed; fix up by hand"