3 # Copyright (c) 2005 Junio C Hamano
6 USAGE
='[-n] [--summary] [--[no-]commit] [--[no-]squash] [--[no-]ff] [-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
94 if test "$show_diffstat" = t
96 # We want color (if set), but no pager
97 GIT_PAGER
='' git
diff --stat --summary -M "$head" "$1"
102 # Run a post-merge hook
103 if test -x "$GIT_DIR"/hooks
/post-merge
107 "$GIT_DIR"/hooks
/post-merge
1
110 "$GIT_DIR"/hooks
/post-merge
0
118 rh
=$
(git rev-parse
--verify "$remote^0" 2>/dev
/null
) ||
return
119 bh
=$
(git show-ref
-s --verify "refs/heads/$remote" 2>/dev
/null
)
120 if test "$rh" = "$bh"
122 echo "$rh branch '$remote' of ."
123 elif truname
=$
(expr "$remote" : '\(.*\)~[1-9][0-9]*$') &&
124 git show-ref
-q --verify "refs/heads/$truname" 2>/dev
/null
126 echo "$rh branch '$truname' (early part) of ."
127 elif test "$remote" = "FETCH_HEAD" -a -r "$GIT_DIR/FETCH_HEAD"
129 sed -e 's/ not-for-merge / /' -e 1q \
130 "$GIT_DIR/FETCH_HEAD"
132 echo "$rh commit '$remote'"
138 -n|
--n|
--no|
--no-|
--no-s|
--no-su|
--no-sum|
--no-summ|\
139 --no-summa|
--no-summar|
--no-summary)
140 show_diffstat
=false
;;
143 --sq|
--squ|
--squa|
--squas|
--squash)
144 allow_fast_forward
=t squash
=t no_commit
=t
;;
145 --no-sq|
--no-squ|
--no-squa|
--no-squas|
--no-squash)
146 allow_fast_forward
=t squash
= no_commit
= ;;
147 --c|
--co|
--com|
--comm|
--commi|
--commit)
148 allow_fast_forward
=t squash
= no_commit
= ;;
149 --no-c|
--no-co|
--no-com|
--no-comm|
--no-commi|
--no-commit)
150 allow_fast_forward
=t squash
= no_commit
=t
;;
152 allow_fast_forward
=t squash
= no_commit
= ;;
154 allow_fast_forward
=false squash
= no_commit
= ;;
155 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
156 --strateg=*|
--strategy=*|\
157 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
160 strategy
=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
167 case " $all_strategies " in
169 use_strategies
="$use_strategies$strategy " ;;
171 die
"available strategies are: $all_strategies" ;;
174 -m=*|
--m=*|
--me=*|
--mes=*|
--mess=*|
--messa=*|
--messag=*|
--message=*)
175 merge_msg
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
178 -m|
--m|
--me|
--mes|
--mess|
--messa|
--messag|
--message)
196 parse_option
"$@" || usage
197 while test $args_left -lt $#
204 test $# != 0 || usage
208 if branch
=$
(git-symbolic-ref
-q HEAD
)
210 mergeopts
=$
(git config
"branch.${branch#refs/heads/}.mergeoptions")
211 if test -n "$mergeopts"
213 parse_config
$mergeopts
217 while parse_option
"$@"
219 while test $args_left -lt $#
225 if test -z "$show_diffstat"; then
226 test "$(git config --bool merge.diffstat)" = false
&& show_diffstat
=false
227 test -z "$show_diffstat" && show_diffstat
=t
230 # This could be traditional "merge <msg> HEAD <commit>..." and the
231 # way we can tell it is to see if the second token is HEAD, but some
232 # people might have misused the interface and used a committish that
233 # is the same as HEAD there instead. Traditional format never would
234 # have "-m" so it is an additional safety measure to check for it.
236 if test -z "$have_message" &&
237 second_token
=$
(git rev-parse
--verify "$2^0" 2>/dev
/null
) &&
238 head_commit
=$
(git rev-parse
--verify "HEAD" 2>/dev
/null
) &&
239 test "$second_token" = "$head_commit"
245 elif ! git rev-parse
--verify HEAD
>/dev
/null
2>&1
247 # If the merged head is a valid one there is no reason to
248 # forbid "git merge" into a branch yet to be born. We do
249 # the same for "git pull".
252 echo >&2 "Can merge only exactly one commit into empty head"
256 rh
=$
(git rev-parse
--verify "$1^0") ||
257 die
"$1 - not something we can merge"
259 git update-ref
-m "initial pull" HEAD
"$rh" "" &&
260 git read-tree
--reset -u HEAD
264 # We are invoked directly as the first-class UI.
267 # All the rest are the commits being merged; prepare
268 # the standard merge summary message to be appended to
269 # the given message. If remote is invalid we will die
270 # later in the common codepath so we discard the error
272 merge_name
=$
(for remote
275 done | git fmt-merge-msg
277 merge_msg
="${merge_msg:+$merge_msg$LF$LF}$merge_name"
279 head=$
(git rev-parse
--verify "$head_arg"^
0) || usage
281 # All the rest are remote heads
282 test "$#" = 0 && usage
;# we need at least one remote head.
283 set_reflog_action
"merge $*"
288 remotehead
=$
(git rev-parse
--verify "$remote"^
0 2>/dev
/null
) ||
289 die
"$remote - not something we can merge"
290 remoteheads
="${remoteheads}$remotehead "
291 eval GITHEAD_
$remotehead='"$remote"'
292 export GITHEAD_
$remotehead
294 set x
$remoteheads ; shift
296 case "$use_strategies" in
300 var
="`git config --get pull.twohead`"
303 use_strategies
="$var"
305 use_strategies
="$default_twohead_strategies"
308 var
="`git config --get pull.octopus`"
311 use_strategies
="$var"
313 use_strategies
="$default_octopus_strategies"
319 for s
in $use_strategies
321 for ss
in $no_fast_forward_strategies
330 for ss
in $no_trivial_strategies
334 allow_trivial_merge
=f
343 common
=$
(git merge-base
--all $head "$@")
346 common
=$
(git show-branch
--merge-base $head "$@")
349 echo "$head" >"$GIT_DIR/ORIG_HEAD"
351 case "$allow_fast_forward,$#,$common,$no_commit" in
353 # No common ancestors found. We need a real merge.
356 # If head can reach all the merge then we are up to date.
357 # but first the most common case of merging one remote.
358 finish_up_to_date
"Already up-to-date."
362 # Again the most common case of merging one remote.
363 echo "Updating $(git rev-parse --short $head)..$(git rev-parse --short $1)"
364 git update-index
--refresh 2>/dev
/null
366 if test -n "$have_message"
368 msg
="$msg (no commit created; -m option ignored)"
370 new_head
=$
(git rev-parse
--verify "$1^0") &&
371 git read-tree
-v -m -u --exclude-per-directory=.gitignore
$head "$new_head" &&
372 finish
"$new_head" "$msg" ||
exit
377 # We are not doing octopus and not fast forward. Need a
381 # We are not doing octopus, not fast forward, and have only
383 git update-index
--refresh 2>/dev
/null
384 case "$allow_trivial_merge" in
386 # See if it is really trivial.
387 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
388 echo "Trying really trivial in-index merge..."
389 if git read-tree
--trivial -m -u -v $common $head "$1" &&
390 result_tree
=$
(git write-tree
)
394 printf '%s\n' "$merge_msg" |
395 git commit-tree
$result_tree -p HEAD
-p "$1"
397 finish
"$result_commit" "In-index merge"
405 # An octopus. If we can reach all the remote we are up to date.
409 common_one
=$
(git merge-base
--all $head $remote)
410 if test "$common_one" != "$remote"
416 if test "$up_to_date" = t
418 finish_up_to_date
"Already up-to-date. Yeeah!"
424 # We are going to make a new commit.
425 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
427 # At this point, we need a real merge. No matter what strategy
428 # we use, it would operate on the index, possibly affecting the
429 # working tree, and when resolved cleanly, have the desired tree
430 # in the index -- this means that the index must be in sync with
431 # the $head commit. The strategies are responsible to ensure this.
433 case "$use_strategies" in
435 # Stash away the local changes so that we can try more than one.
440 rm -f "$GIT_DIR/MERGE_SAVE"
445 result_tree
= best_cnt
=-1 best_strategy
= wt_strategy
=
447 for strategy
in $use_strategies
449 test "$wt_strategy" = '' ||
{
450 echo "Rewinding the tree to pristine..."
453 case "$single_strategy" in
455 echo "Trying merge strategy $strategy..."
459 # Remember which strategy left the state in the working tree
460 wt_strategy
=$strategy
462 git-merge-
$strategy $common -- "$head_arg" "$@"
464 if test "$no_commit" = t
&& test "$exit" = 0
467 exit=1 ;# pretend it left conflicts.
470 test "$exit" = 0 ||
{
472 # The backend exits with 1 when conflicts are left to be resolved,
473 # with 2 when it does not handle the given merge at all.
475 if test "$exit" -eq 1
478 git diff-files --name-only
479 git ls-files --unmerged
481 if test $best_cnt -le 0 -o $cnt -le $best_cnt
483 best_strategy
=$strategy
490 # Automerge succeeded.
491 result_tree
=$
(git write-tree
) && break
494 # If we have a resulting tree, that means the strategy module
495 # auto resolved the merge cleanly.
496 if test '' != "$result_tree"
498 if test "$allow_fast_forward" = "t"
500 parents
=$
(git show-branch
--independent "$head" "$@")
502 parents
=$
(git rev-parse
"$head" "$@")
504 parents
=$
(echo "$parents" |
sed -e 's/^/-p /')
505 result_commit
=$
(printf '%s\n' "$merge_msg" | git commit-tree
$result_tree $parents) ||
exit
506 finish
"$result_commit" "Merge made by $wt_strategy."
511 # Pick the result from the best strategy and have the user fix it up.
512 case "$best_strategy" in
515 case "$use_strategies" in
517 echo >&2 "No merge strategy handled the merge."
520 echo >&2 "Merge with strategy $use_strategies failed."
526 # We already have its result in the working tree.
529 echo "Rewinding the tree to pristine..."
531 echo "Using the $best_strategy to prepare resolving by hand."
532 git-merge-
$best_strategy $common -- "$head_arg" "$@"
536 if test "$squash" = t
543 done >"$GIT_DIR/MERGE_HEAD"
544 printf '%s\n' "$merge_msg" >"$GIT_DIR/MERGE_MSG"
547 if test "$merge_was_ok" = t
550 "Automatic merge went well; stopped before committing as requested"
557 git ls-files
--unmerged |
558 sed -e 's/^[^ ]* / /' |
560 } >>"$GIT_DIR/MERGE_MSG"
562 die
"Automatic merge failed; fix conflicts and then commit the result."