3 # Copyright (c) 2005 Junio C Hamano
12 die "git-merge [-n] [--no-commit] [-s <strategy>]... <merge-message> <head> <remote>+"
15 all_strategies='recursive octopus resolve stupid ours'
16 default_strategies='recursive'
20 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
21 "$GIT_DIR/MERGE_SAVE" || exit 1
25 # Stash away any local modifications.
26 git-diff-index -z --name-only $head |
27 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
31 if test -f "$GIT_DIR/MERGE_SAVE"
33 git reset --hard $head
34 cpio -iuv <"$GIT_DIR/MERGE_SAVE"
35 git-update-index --refresh >/dev/null
40 test '' = "$2" || echo "$2"
43 echo "No merge message -- not updating HEAD"
46 git-update-ref HEAD "$1" "$head" || exit 1
52 git-diff-tree -p -M "$head" "$1" |
53 git-apply --stat --summary
58 while case "$#" in 0) break ;; esac
61 -n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\
62 --no-summa|--no-summar|--no-summary)
64 --no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit)
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 test "$#" -le 2 && usage ;# we need at least two heads.
96 head=$(git-rev-parse --verify "$1"^0) || usage
99 # All the rest are remote heads
102 git-rev-parse --verify "$remote"^0 >/dev/null ||
103 die "$remote - not something we can merge"
108 common=$(git-merge-base --all $head "$@")
111 common=$(git-show-branch --merge-base $head "$@")
114 echo "$head" >"$GIT_DIR/ORIG_HEAD"
116 case "$#,$common,$no_commit" in
118 # No common ancestors found. We need a real merge.
121 # If head can reach all the merge then we are up to date.
122 # but first the most common case of merging one remote
123 echo "Already up-to-date."
128 # Again the most common case of merging one remote.
129 echo "Updating from $head to $1."
130 git-update-index --refresh 2>/dev/null
131 new_head=$(git-rev-parse --verify "$1^0") &&
132 git-read-tree -u -m $head "$new_head" &&
133 finish "$new_head" "Fast forward"
138 # We are not doing octopus and not fast forward. Need a
142 # We are not doing octopus, not fast forward, and have only
143 # one common. See if it is really trivial.
144 echo "Trying really trivial in-index merge..."
145 git-update-index --refresh 2>/dev/null
146 if git-read-tree --trivial -m -u $common $head "$1" &&
147 result_tree=$(git-write-tree)
152 git-commit-tree $result_tree -p HEAD -p "$1"
154 finish "$result_commit" "In-index merge"
161 # An octopus. If we can reach all the remote we are up to date.
165 common_one=$(git-merge-base --all $head $remote)
166 if test "$common_one" != "$remote"
172 if test "$up_to_date" = t
174 echo "Already up-to-date. Yeeah!"
181 case "$use_strategies" in
185 use_strategies="$default_strategies" ;;
187 use_strategies=octopus ;;
192 # At this point, we need a real merge. No matter what strategy
193 # we use, it would operate on the index, possibly affecting the
194 # working tree, and when resolved cleanly, have the desired tree
195 # in the index -- this means that the index must be in sync with
196 # the $head commit. The strategies are responsible to ensure this.
198 case "$use_strategies" in
200 # Stash away the local changes so that we can try more than one.
205 rm -f "$GIT_DIR/MERGE_SAVE"
210 result_tree= best_cnt=-1 best_strategy= wt_strategy=
211 for strategy in $use_strategies
213 test "$wt_strategy" = '' || {
214 echo "Rewinding the tree to pristine..."
217 case "$single_strategy" in
219 echo "Trying merge strategy $strategy..."
223 # Remember which strategy left the state in the working tree
224 wt_strategy=$strategy
226 git-merge-$strategy $common -- "$head_arg" "$@"
228 if test "$no_commit" = t && test "$exit" = 0
230 exit=1 ;# pretend it left conflicts.
233 test "$exit" = 0 || {
235 # The backend exits with 1 when conflicts are left to be resolved,
236 # with 2 when it does not handle the given merge at all.
238 if test "$exit" -eq 1
241 git-diff-files --name-only
242 git-ls-files --unmerged
244 if test $best_cnt -le 0 -o $cnt -le $best_cnt
246 best_strategy=$strategy
253 # Automerge succeeded.
254 result_tree=$(git-write-tree) && break
257 # If we have a resulting tree, that means the strategy module
258 # auto resolved the merge cleanly.
259 if test '' != "$result_tree"
264 parents="$parents -p $remote"
266 result_commit=$(echo "$merge_msg" | git-commit-tree $result_tree $parents) || exit
267 finish "$result_commit" "Merge $result_commit, made by $wt_strategy."
272 # Pick the result from the best strategy and have the user fix it up.
273 case "$best_strategy" in
276 echo >&2 "No merge strategy handled the merge."
280 # We already have its result in the working tree.
283 echo "Rewinding the tree to pristine..."
285 echo "Using the $best_strategy to prepare resolving by hand."
286 git-merge-$best_strategy $common -- "$head_arg" "$@"
292 done >"$GIT_DIR/MERGE_HEAD"
293 echo $merge_msg >"$GIT_DIR/MERGE_MSG"
295 die "Automatic merge failed/prevented; fix up by hand"