3 # Copyright (c) 2005 Junio C Hamano
6 USAGE
='[-n] [--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'
20 default_twohead_strategies
='recursive'
21 default_octopus_strategies
='octopus'
22 no_trivial_merge_strategies
='ours'
28 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
29 "$GIT_DIR/MERGE_SAVE" ||
exit 1
33 # Stash away any local modifications.
34 git-diff-index
-z --name-only $head |
35 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
39 if test -f "$GIT_DIR/MERGE_SAVE"
41 git
reset --hard $head >/dev
/null
42 cpio -iuv <"$GIT_DIR/MERGE_SAVE"
43 git-update-index
--refresh >/dev
/null
47 finish_up_to_date
() {
50 echo "$1 (nothing to squash)" ;;
58 echo Squashed commit of the following
:
60 git-log
--no-merges ^
"$head" $remote
66 rlogm
="$GIT_REFLOG_ACTION"
69 rlogm
="$GIT_REFLOG_ACTION: $2"
73 echo "Squash commit -- not updating HEAD"
74 squash_message
>"$GIT_DIR/SQUASH_MSG"
79 echo "No merge message -- not updating HEAD"
82 git-update-ref
-m "$rlogm" HEAD
"$1" "$head" ||
exit 1
93 git-diff-tree
--stat --summary -M "$head" "$1"
100 merge_local_changes
() {
101 merge_error
=$
(git-read-tree
-m -u --exclude-per-directory=.gitignore
$1 $2 2>&1) ||
(
103 # First stash away the local changes
104 git diff-index
--binary -p HEAD
>"$GIT_DIR"/LOCAL_DIFF
106 # Match the index to the working tree, and do a three-way.
107 git diff-files
--name-only |
108 git update-index
--remove --stdin &&
109 work
=`git write-tree` &&
110 git read-tree
--reset -u $2 &&
111 git read-tree
-m -u --aggressive --exclude-per-directory=.gitignore
$1 $2 $work ||
exit
113 echo >&2 "Carrying local changes forward."
114 if result
=`git write-tree 2>/dev/null`
116 echo >&2 "Trivially automerged."
118 git merge-index
-o git-merge-one-file
-a
121 # Do not register the cleanly merged paths in the index
122 # yet; this is not a real merge before committing, but
123 # just carrying the working tree changes along.
124 unmerged
=`git ls-files -u`
125 git read-tree
--reset $2
130 z40
=0000000000000000000000000000000000000000
132 sed -e 's/^[0-7]* [0-9a-f]* /'"0 $z40 /"
134 ) | git update-index
--index-info
136 echo >&2 "Conflicts in locally modified files:"
137 git
diff --name-only --diff-filter=U
>&2
138 echo >&2 "Your local changes are found in $GIT_DIR/LOCAL_DIFF"
147 rh
=$
(git-rev-parse
--verify "$remote^0" 2>/dev
/null
) ||
return
148 bh
=$
(git-show-ref
-s --verify "refs/heads/$remote" 2>/dev
/null
)
149 if test "$rh" = "$bh"
151 echo "$rh branch '$remote' of ."
152 elif truname
=$
(expr "$remote" : '\(.*\)~[1-9][0-9]*$') &&
153 git-show-ref
-q --verify "refs/heads/$truname" 2>/dev
/null
155 echo "$rh branch '$truname' (early part) of ."
157 echo "$rh commit '$remote'"
161 case "$#" in 0) usage
;; esac
164 while case "$#" in 0) break ;; esac
167 -n|
--n|
--no|
--no-|
--no-s|
--no-su|
--no-sum|
--no-summ|\
168 --no-summa|
--no-summar|
--no-summary)
170 --sq|
--squ|
--squa|
--squas|
--squash)
171 squash
=t no_commit
=t
;;
172 --no-c|
--no-co|
--no-com|
--no-comm|
--no-commi|
--no-commit)
174 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
175 --strateg=*|
--strategy=*|\
176 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
179 strategy
=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
186 case " $all_strategies " in
188 use_strategies
="$use_strategies$strategy " ;;
190 die
"available strategies are: $all_strategies" ;;
193 -m=*|
--m=*|
--me=*|
--mes=*|
--mess=*|
--messa=*|
--messag=*|
--message=*)
194 merge_msg
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
197 -m|
--m|
--me|
--mes|
--mess|
--messa|
--messag|
--message)
211 # This could be traditional "merge <msg> HEAD <commit>..." and the
212 # way we can tell it is to see if the second token is HEAD, but some
213 # people might have misused the interface and used a committish that
214 # is the same as HEAD there instead. Traditional format never would
215 # have "-m" so it is an additional safety measure to check for it.
217 if test -z "$have_message" &&
218 second_token
=$
(git-rev-parse
--verify "$2^0" 2>/dev
/null
) &&
219 head_commit
=$
(git-rev-parse
--verify "HEAD" 2>/dev
/null
) &&
220 test "$second_token" = "$head_commit"
226 elif ! git-rev-parse
--verify HEAD
>/dev
/null
2>&1
228 # If the merged head is a valid one there is no reason to
229 # forbid "git merge" into a branch yet to be born. We do
230 # the same for "git pull".
233 echo >&2 "Can merge only exactly one commit into empty head"
237 rh
=$
(git rev-parse
--verify "$1^0") ||
238 die
"$1 - not something we can merge"
240 git-update-ref
-m "initial pull" HEAD
"$rh" "" &&
241 git-read-tree
--reset -u HEAD
245 # We are invoked directly as the first-class UI.
248 # All the rest are the commits being merged; prepare
249 # the standard merge summary message to be appended to
250 # the given message. If remote is invalid we will die
251 # later in the common codepath so we discard the error
253 merge_name
=$
(for remote
256 done | git-fmt-merge-msg
258 merge_msg
="${merge_msg:+$merge_msg$LF$LF}$merge_name"
260 head=$
(git-rev-parse
--verify "$head_arg"^
0) || usage
262 # All the rest are remote heads
263 test "$#" = 0 && usage
;# we need at least one remote head.
264 set_reflog_action
"merge $*"
269 remotehead
=$
(git-rev-parse
--verify "$remote"^
0 2>/dev
/null
) ||
270 die
"$remote - not something we can merge"
271 remoteheads
="${remoteheads}$remotehead "
272 eval GITHEAD_
$remotehead='"$remote"'
273 export GITHEAD_
$remotehead
275 set x
$remoteheads ; shift
277 case "$use_strategies" in
281 var
="`git-config --get pull.twohead`"
284 use_strategies
="$var"
286 use_strategies
="$default_twohead_strategies"
289 var
="`git-config --get pull.octopus`"
292 use_strategies
="$var"
294 use_strategies
="$default_octopus_strategies"
300 for s
in $use_strategies
302 for nt
in $no_trivial_merge_strategies
315 common
=$
(git-merge-base
--all $head "$@")
318 common
=$
(git-show-branch
--merge-base $head "$@")
321 echo "$head" >"$GIT_DIR/ORIG_HEAD"
323 case "$index_merge,$#,$common,$no_commit" in
325 # We've been told not to try anything clever. Skip to real merge.
328 # No common ancestors found. We need a real merge.
331 # If head can reach all the merge then we are up to date.
332 # but first the most common case of merging one remote.
333 finish_up_to_date
"Already up-to-date."
337 # Again the most common case of merging one remote.
338 echo "Updating $(git-rev-parse --short $head)..$(git-rev-parse --short $1)"
339 git-update-index
--refresh 2>/dev
/null
340 new_head
=$
(git-rev-parse
--verify "$1^0") &&
341 merge_local_changes
$head $new_head &&
342 finish
"$new_head" "Fast forward"
347 # We are not doing octopus and not fast forward. Need a
351 # We are not doing octopus, not fast forward, and have only
353 git-update-index
--refresh 2>/dev
/null
354 case " $use_strategies " in
355 *' recursive '*|
*' recur '*)
359 # See if it is really trivial.
360 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
361 echo "Trying really trivial in-index merge..."
362 if git-read-tree
--trivial -m -u -v $common $head "$1" &&
363 result_tree
=$
(git-write-tree
)
368 git-commit-tree
$result_tree -p HEAD
-p "$1"
370 finish
"$result_commit" "In-index merge"
378 # An octopus. If we can reach all the remote we are up to date.
382 common_one
=$
(git-merge-base
--all $head $remote)
383 if test "$common_one" != "$remote"
389 if test "$up_to_date" = t
391 finish_up_to_date
"Already up-to-date. Yeeah!"
397 # We are going to make a new commit.
398 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
400 # At this point, we need a real merge. No matter what strategy
401 # we use, it would operate on the index, possibly affecting the
402 # working tree, and when resolved cleanly, have the desired tree
403 # in the index -- this means that the index must be in sync with
404 # the $head commit. The strategies are responsible to ensure this.
406 case "$use_strategies" in
408 # Stash away the local changes so that we can try more than one.
413 rm -f "$GIT_DIR/MERGE_SAVE"
418 result_tree
= best_cnt
=-1 best_strategy
= wt_strategy
=
420 for strategy
in $use_strategies
422 test "$wt_strategy" = '' ||
{
423 echo "Rewinding the tree to pristine..."
426 case "$single_strategy" in
428 echo "Trying merge strategy $strategy..."
432 # Remember which strategy left the state in the working tree
433 wt_strategy
=$strategy
435 git-merge-
$strategy $common -- "$head_arg" "$@"
437 if test "$no_commit" = t
&& test "$exit" = 0
440 exit=1 ;# pretend it left conflicts.
443 test "$exit" = 0 ||
{
445 # The backend exits with 1 when conflicts are left to be resolved,
446 # with 2 when it does not handle the given merge at all.
448 if test "$exit" -eq 1
451 git-diff-files --name-only
452 git-ls-files --unmerged
454 if test $best_cnt -le 0 -o $cnt -le $best_cnt
456 best_strategy
=$strategy
463 # Automerge succeeded.
464 result_tree
=$
(git-write-tree
) && break
467 # If we have a resulting tree, that means the strategy module
468 # auto resolved the merge cleanly.
469 if test '' != "$result_tree"
471 parents
=$
(git-show-branch
--independent "$head" "$@" |
sed -e 's/^/-p /')
472 result_commit
=$
(echo "$merge_msg" | git-commit-tree
$result_tree $parents) ||
exit
473 finish
"$result_commit" "Merge made by $wt_strategy."
478 # Pick the result from the best strategy and have the user fix it up.
479 case "$best_strategy" in
482 case "$use_strategies" in
484 echo >&2 "No merge strategy handled the merge."
487 echo >&2 "Merge with strategy $use_strategies failed."
493 # We already have its result in the working tree.
496 echo "Rewinding the tree to pristine..."
498 echo "Using the $best_strategy to prepare resolving by hand."
499 git-merge-
$best_strategy $common -- "$head_arg" "$@"
503 if test "$squash" = t
510 done >"$GIT_DIR/MERGE_HEAD"
511 echo "$merge_msg" >"$GIT_DIR/MERGE_MSG"
514 if test "$merge_was_ok" = t
517 "Automatic merge went well; stopped before committing as requested"
524 git ls-files
--unmerged |
525 sed -e 's/^[^ ]* / /' |
527 } >>"$GIT_DIR/MERGE_MSG"
528 if test -d "$GIT_DIR/rr-cache"
532 die
"Automatic merge failed; fix conflicts and then commit the result."