3 # Copyright (c) 2005 Junio C Hamano
6 USAGE='[-n] [--summary] [--no-commit] [--squash] [-s <strategy>] [-m=<merge-message>] <commit>+'
13 test -z "$(git ls-files -u)" ||
14 die "You are in the middle of a conflicted merge."
19 all_strategies='recur recursive octopus resolve stupid ours subtree'
20 default_twohead_strategies='recursive'
21 default_octopus_strategies='octopus'
22 no_fast_forward_strategies='subtree ours'
23 no_trivial_strategies='recursive recur subtree ours'
30 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
31 "$GIT_DIR/MERGE_SAVE" || exit 1
35 # Stash away any local modifications.
36 git diff-index -z --name-only $head |
37 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
41 if test -f "$GIT_DIR/MERGE_SAVE"
43 git reset --hard $head >/dev/null
44 cpio -iuv <"$GIT_DIR/MERGE_SAVE"
45 git update-index --refresh >/dev/null
49 finish_up_to_date () {
52 echo "$1 (nothing to squash)" ;;
60 echo Squashed commit of the following:
62 git log --no-merges ^"$head" $remoteheads
68 rlogm="$GIT_REFLOG_ACTION"
71 rlogm="$GIT_REFLOG_ACTION: $2"
75 echo "Squash commit -- not updating HEAD"
76 squash_message >"$GIT_DIR/SQUASH_MSG"
81 echo "No merge message -- not updating HEAD"
84 git update-ref -m "$rlogm" HEAD "$1" "$head" || exit 1
93 if test "$show_diffstat" = t
95 # We want color (if set), but no pager
96 GIT_PAGER='' git diff --stat --summary -M "$head" "$1"
104 rh=$(git rev-parse --verify "$remote^0" 2>/dev/null) || return
105 bh=$(git show-ref -s --verify "refs/heads/$remote" 2>/dev/null)
106 if test "$rh" = "$bh"
108 echo "$rh branch '$remote' of ."
109 elif truname=$(expr "$remote" : '\(.*\)~[1-9][0-9]*$') &&
110 git show-ref -q --verify "refs/heads/$truname" 2>/dev/null
112 echo "$rh branch '$truname' (early part) of ."
113 elif test "$remote" = "FETCH_HEAD" -a -r "$GIT_DIR/FETCH_HEAD"
115 sed -e 's/ not-for-merge / /' -e 1q \
116 "$GIT_DIR/FETCH_HEAD"
118 echo "$rh commit '$remote'"
124 -n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\
125 --no-summa|--no-summar|--no-summary)
126 show_diffstat=false ;;
129 --sq|--squ|--squa|--squas|--squash)
130 squash=t no_commit=t ;;
131 --no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit)
133 -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
134 --strateg=*|--strategy=*|\
135 -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
138 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
145 case " $all_strategies " in
147 use_strategies="$use_strategies$strategy " ;;
149 die "available strategies are: $all_strategies" ;;
152 -m=*|--m=*|--me=*|--mes=*|--mess=*|--messa=*|--messag=*|--message=*)
153 merge_msg=`expr "z$1" : 'z-[^=]*=\(.*\)'`
156 -m|--m|--me|--mes|--mess|--messa|--messag|--message)
171 test $# != 0 || usage
174 while parse_option "$@"
176 while test $args_left -lt $#
182 if test -z "$show_diffstat"; then
183 test "$(git config --bool merge.diffstat)" = false && show_diffstat=false
184 test -z "$show_diffstat" && show_diffstat=t
187 # This could be traditional "merge <msg> HEAD <commit>..." and the
188 # way we can tell it is to see if the second token is HEAD, but some
189 # people might have misused the interface and used a committish that
190 # is the same as HEAD there instead. Traditional format never would
191 # have "-m" so it is an additional safety measure to check for it.
193 if test -z "$have_message" &&
194 second_token=$(git rev-parse --verify "$2^0" 2>/dev/null) &&
195 head_commit=$(git rev-parse --verify "HEAD" 2>/dev/null) &&
196 test "$second_token" = "$head_commit"
202 elif ! git rev-parse --verify HEAD >/dev/null 2>&1
204 # If the merged head is a valid one there is no reason to
205 # forbid "git merge" into a branch yet to be born. We do
206 # the same for "git pull".
209 echo >&2 "Can merge only exactly one commit into empty head"
213 rh=$(git rev-parse --verify "$1^0") ||
214 die "$1 - not something we can merge"
216 git update-ref -m "initial pull" HEAD "$rh" "" &&
217 git read-tree --reset -u HEAD
221 # We are invoked directly as the first-class UI.
224 # All the rest are the commits being merged; prepare
225 # the standard merge summary message to be appended to
226 # the given message. If remote is invalid we will die
227 # later in the common codepath so we discard the error
229 merge_name=$(for remote
232 done | git fmt-merge-msg
234 merge_msg="${merge_msg:+$merge_msg$LF$LF}$merge_name"
236 head=$(git rev-parse --verify "$head_arg"^0) || usage
238 # All the rest are remote heads
239 test "$#" = 0 && usage ;# we need at least one remote head.
240 set_reflog_action "merge $*"
245 remotehead=$(git rev-parse --verify "$remote"^0 2>/dev/null) ||
246 die "$remote - not something we can merge"
247 remoteheads="${remoteheads}$remotehead "
248 eval GITHEAD_$remotehead='"$remote"'
249 export GITHEAD_$remotehead
251 set x $remoteheads ; shift
253 case "$use_strategies" in
257 var="`git config --get pull.twohead`"
260 use_strategies="$var"
262 use_strategies="$default_twohead_strategies"
265 var="`git config --get pull.octopus`"
268 use_strategies="$var"
270 use_strategies="$default_octopus_strategies"
276 for s in $use_strategies
278 for ss in $no_fast_forward_strategies
287 for ss in $no_trivial_strategies
291 allow_trivial_merge=f
300 common=$(git merge-base --all $head "$@")
303 common=$(git show-branch --merge-base $head "$@")
306 echo "$head" >"$GIT_DIR/ORIG_HEAD"
308 case "$allow_fast_forward,$#,$common,$no_commit" in
310 # No common ancestors found. We need a real merge.
313 # If head can reach all the merge then we are up to date.
314 # but first the most common case of merging one remote.
315 finish_up_to_date "Already up-to-date."
319 # Again the most common case of merging one remote.
320 echo "Updating $(git rev-parse --short $head)..$(git rev-parse --short $1)"
321 git update-index --refresh 2>/dev/null
323 if test -n "$have_message"
325 msg="$msg (no commit created; -m option ignored)"
327 new_head=$(git rev-parse --verify "$1^0") &&
328 git read-tree -v -m -u --exclude-per-directory=.gitignore $head "$new_head" &&
329 finish "$new_head" "$msg" || exit
334 # We are not doing octopus and not fast forward. Need a
338 # We are not doing octopus, not fast forward, and have only
340 git update-index --refresh 2>/dev/null
341 case "$allow_trivial_merge" in
343 # See if it is really trivial.
344 git var GIT_COMMITTER_IDENT >/dev/null || exit
345 echo "Trying really trivial in-index merge..."
346 if git read-tree --trivial -m -u -v $common $head "$1" &&
347 result_tree=$(git write-tree)
351 printf '%s\n' "$merge_msg" |
352 git commit-tree $result_tree -p HEAD -p "$1"
354 finish "$result_commit" "In-index merge"
362 # An octopus. If we can reach all the remote we are up to date.
366 common_one=$(git merge-base --all $head $remote)
367 if test "$common_one" != "$remote"
373 if test "$up_to_date" = t
375 finish_up_to_date "Already up-to-date. Yeeah!"
381 # We are going to make a new commit.
382 git var GIT_COMMITTER_IDENT >/dev/null || exit
384 # At this point, we need a real merge. No matter what strategy
385 # we use, it would operate on the index, possibly affecting the
386 # working tree, and when resolved cleanly, have the desired tree
387 # in the index -- this means that the index must be in sync with
388 # the $head commit. The strategies are responsible to ensure this.
390 case "$use_strategies" in
392 # Stash away the local changes so that we can try more than one.
397 rm -f "$GIT_DIR/MERGE_SAVE"
402 result_tree= best_cnt=-1 best_strategy= wt_strategy=
404 for strategy in $use_strategies
406 test "$wt_strategy" = '' || {
407 echo "Rewinding the tree to pristine..."
410 case "$single_strategy" in
412 echo "Trying merge strategy $strategy..."
416 # Remember which strategy left the state in the working tree
417 wt_strategy=$strategy
419 git-merge-$strategy $common -- "$head_arg" "$@"
421 if test "$no_commit" = t && test "$exit" = 0
424 exit=1 ;# pretend it left conflicts.
427 test "$exit" = 0 || {
429 # The backend exits with 1 when conflicts are left to be resolved,
430 # with 2 when it does not handle the given merge at all.
432 if test "$exit" -eq 1
435 git diff-files --name-only
436 git ls-files --unmerged
438 if test $best_cnt -le 0 -o $cnt -le $best_cnt
440 best_strategy=$strategy
447 # Automerge succeeded.
448 result_tree=$(git write-tree) && break
451 # If we have a resulting tree, that means the strategy module
452 # auto resolved the merge cleanly.
453 if test '' != "$result_tree"
455 parents=$(git show-branch --independent "$head" "$@" | sed -e 's/^/-p /')
456 result_commit=$(printf '%s\n' "$merge_msg" | git commit-tree $result_tree $parents) || exit
457 finish "$result_commit" "Merge made by $wt_strategy."
462 # Pick the result from the best strategy and have the user fix it up.
463 case "$best_strategy" in
466 case "$use_strategies" in
468 echo >&2 "No merge strategy handled the merge."
471 echo >&2 "Merge with strategy $use_strategies failed."
477 # We already have its result in the working tree.
480 echo "Rewinding the tree to pristine..."
482 echo "Using the $best_strategy to prepare resolving by hand."
483 git-merge-$best_strategy $common -- "$head_arg" "$@"
487 if test "$squash" = t
494 done >"$GIT_DIR/MERGE_HEAD"
495 printf '%s\n' "$merge_msg" >"$GIT_DIR/MERGE_MSG"
498 if test "$merge_was_ok" = t
501 "Automatic merge went well; stopped before committing as requested"
508 git ls-files --unmerged |
509 sed -e 's/^[^ ]* / /' |
511 } >>"$GIT_DIR/MERGE_MSG"
513 die "Automatic merge failed; fix conflicts and then commit the result."