3 # Copyright (c) 2005 Junio C Hamano
6 USAGE
='[-n] [--no-commit] [--squash] [-s <strategy>] [-m=<merge-message>] <commit>+'
10 set_reflog_action
"merge $*"
14 test -z "$(git ls-files -u)" ||
15 die
"You are in the middle of a conflicted merge."
20 all_strategies
='recur recursive octopus resolve stupid ours'
21 default_twohead_strategies
='recursive'
22 default_octopus_strategies
='octopus'
23 no_trivial_merge_strategies
='ours'
29 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
30 "$GIT_DIR/MERGE_SAVE" ||
exit 1
34 # Stash away any local modifications.
35 git-diff-index
-z --name-only $head |
36 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
40 if test -f "$GIT_DIR/MERGE_SAVE"
42 git
reset --hard $head >/dev
/null
43 cpio -iuv <"$GIT_DIR/MERGE_SAVE"
44 git-update-index
--refresh >/dev
/null
48 finish_up_to_date
() {
51 echo "$1 (nothing to squash)" ;;
59 echo Squashed commit of the following
:
61 git-log
--no-merges ^
"$head" $remote
67 rlogm
="$GIT_REFLOG_ACTION"
70 rlogm
="$GIT_REFLOG_ACTION: $2"
74 echo "Squash commit -- not updating HEAD"
75 squash_message
>"$GIT_DIR/SQUASH_MSG"
80 echo "No merge message -- not updating HEAD"
83 git-update-ref
-m "$rlogm" HEAD
"$1" "$head" ||
exit 1
94 git-diff-tree
--stat --summary -M "$head" "$1"
101 merge_local_changes
() {
102 merge_error
=$
(git-read-tree
-m -u --exclude-per-directory=.gitignore
$1 $2 2>&1) ||
(
104 # First stash away the local changes
105 git diff-index
--binary -p HEAD
>"$GIT_DIR"/LOCAL_DIFF
107 # Match the index to the working tree, and do a three-way.
108 git diff-files
--name-only |
109 git update-index
--remove --stdin &&
110 work
=`git write-tree` &&
111 git read-tree
--reset -u $2 &&
112 git read-tree
-m -u --aggressive --exclude-per-directory=.gitignore
$1 $2 $work ||
exit
114 echo >&2 "Carrying local changes forward."
115 if result
=`git write-tree 2>/dev/null`
117 echo >&2 "Trivially automerged."
119 git merge-index
-o git-merge-one-file
-a
122 # Do not register the cleanly merged paths in the index
123 # yet; this is not a real merge before committing, but
124 # just carrying the working tree changes along.
125 unmerged
=`git ls-files -u`
126 git read-tree
--reset $2
131 z40
=0000000000000000000000000000000000000000
133 sed -e 's/^[0-7]* [0-9a-f]* /'"0 $z40 /"
135 ) | git update-index
--index-info
137 echo >&2 "Conflicts in locally modified files:"
138 git
diff --name-only --diff-filter=U
>&2
139 echo >&2 "Your local changes are found in $GIT_DIR/LOCAL_DIFF"
148 rh
=$
(git-rev-parse
--verify "$remote^0" 2>/dev
/null
) ||
return
149 bh
=$
(git-show-ref
-s --verify "refs/heads/$remote" 2>/dev
/null
)
150 if test "$rh" = "$bh"
152 echo "$rh branch '$remote' of ."
153 elif truname
=$
(expr "$remote" : '\(.*\)~[1-9][0-9]*$') &&
154 git-show-ref
-q --verify "refs/heads/$truname" 2>/dev
/null
156 echo "$rh branch '$truname' (early part) of ."
158 echo "$rh commit '$remote'"
162 case "$#" in 0) usage
;; esac
165 while case "$#" in 0) break ;; esac
168 -n|
--n|
--no|
--no-|
--no-s|
--no-su|
--no-sum|
--no-summ|\
169 --no-summa|
--no-summar|
--no-summary)
171 --sq|
--squ|
--squa|
--squas|
--squash)
172 squash
=t no_commit
=t
;;
173 --no-c|
--no-co|
--no-com|
--no-comm|
--no-commi|
--no-commit)
175 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
176 --strateg=*|
--strategy=*|\
177 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
180 strategy
=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
187 case " $all_strategies " in
189 use_strategies
="$use_strategies$strategy " ;;
191 die
"available strategies are: $all_strategies" ;;
194 -m=*|
--m=*|
--me=*|
--mes=*|
--mess=*|
--messa=*|
--messag=*|
--message=*)
195 merge_msg
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
198 -m|
--m|
--me|
--mes|
--mess|
--messa|
--messag|
--message)
212 # This could be traditional "merge <msg> HEAD <commit>..." and the
213 # way we can tell it is to see if the second token is HEAD, but some
214 # people might have misused the interface and used a committish that
215 # is the same as HEAD there instead. Traditional format never would
216 # have "-m" so it is an additional safety measure to check for it.
218 if test -z "$have_message" &&
219 second_token
=$
(git-rev-parse
--verify "$2^0" 2>/dev
/null
) &&
220 head_commit
=$
(git-rev-parse
--verify "HEAD" 2>/dev
/null
) &&
221 test "$second_token" = "$head_commit"
227 elif ! git-rev-parse
--verify HEAD
>/dev
/null
2>&1
229 # If the merged head is a valid one there is no reason to
230 # forbid "git merge" into a branch yet to be born. We do
231 # the same for "git pull".
234 echo >&2 "Can merge only exactly one commit into empty head"
238 rh
=$
(git rev-parse
--verify "$1^0") ||
239 die
"$1 - not something we can merge"
241 git-update-ref
-m "initial pull" HEAD
"$rh" "" &&
242 git-read-tree
--reset -u HEAD
246 # We are invoked directly as the first-class UI.
249 # All the rest are the commits being merged; prepare
250 # the standard merge summary message to be appended to
251 # the given message. If remote is invalid we will die
252 # later in the common codepath so we discard the error
254 merge_name
=$
(for remote
257 done | git-fmt-merge-msg
259 merge_msg
="${merge_msg:+$merge_msg$LF$LF}$merge_name"
261 head=$
(git-rev-parse
--verify "$head_arg"^
0) || usage
263 # All the rest are remote heads
264 test "$#" = 0 && usage
;# we need at least one remote head.
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-repo-config --get pull.twohead`"
284 use_strategies
="$var"
286 use_strategies
="$default_twohead_strategies"
289 var
="`git-repo-config --get pull.octopus`"
292 use_strategies
="$var"
294 use_strategies
="$default_octopus_strategies"
300 for s
in $use_strategies
303 *" $no_trivial_merge_strategies "*)
312 common
=$
(git-merge-base
--all $head "$@")
315 common
=$
(git-show-branch
--merge-base $head "$@")
318 echo "$head" >"$GIT_DIR/ORIG_HEAD"
320 case "$index_merge,$#,$common,$no_commit" in
322 # We've been told not to try anything clever. Skip to real merge.
325 # No common ancestors found. We need a real merge.
328 # If head can reach all the merge then we are up to date.
329 # but first the most common case of merging one remote.
330 finish_up_to_date
"Already up-to-date."
334 # Again the most common case of merging one remote.
335 echo "Updating $(git-rev-parse --short $head)..$(git-rev-parse --short $1)"
336 git-update-index
--refresh 2>/dev
/null
337 new_head
=$
(git-rev-parse
--verify "$1^0") &&
338 merge_local_changes
$head $new_head &&
339 finish
"$new_head" "Fast forward"
344 # We are not doing octopus and not fast forward. Need a
348 # We are not doing octopus, not fast forward, and have only
350 git-update-index
--refresh 2>/dev
/null
351 case " $use_strategies " in
352 *' recursive '*|
*' recur '*)
356 # See if it is really trivial.
357 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
358 echo "Trying really trivial in-index merge..."
359 if git-read-tree
--trivial -m -u -v $common $head "$1" &&
360 result_tree
=$
(git-write-tree
)
365 git-commit-tree
$result_tree -p HEAD
-p "$1"
367 finish
"$result_commit" "In-index merge"
375 # An octopus. If we can reach all the remote we are up to date.
379 common_one
=$
(git-merge-base
--all $head $remote)
380 if test "$common_one" != "$remote"
386 if test "$up_to_date" = t
388 finish_up_to_date
"Already up-to-date. Yeeah!"
394 # We are going to make a new commit.
395 git var GIT_COMMITTER_IDENT
>/dev
/null ||
exit
397 # At this point, we need a real merge. No matter what strategy
398 # we use, it would operate on the index, possibly affecting the
399 # working tree, and when resolved cleanly, have the desired tree
400 # in the index -- this means that the index must be in sync with
401 # the $head commit. The strategies are responsible to ensure this.
403 case "$use_strategies" in
405 # Stash away the local changes so that we can try more than one.
410 rm -f "$GIT_DIR/MERGE_SAVE"
415 result_tree
= best_cnt
=-1 best_strategy
= wt_strategy
=
417 for strategy
in $use_strategies
419 test "$wt_strategy" = '' ||
{
420 echo "Rewinding the tree to pristine..."
423 case "$single_strategy" in
425 echo "Trying merge strategy $strategy..."
429 # Remember which strategy left the state in the working tree
430 wt_strategy
=$strategy
432 git-merge-
$strategy $common -- "$head_arg" "$@"
434 if test "$no_commit" = t
&& test "$exit" = 0
437 exit=1 ;# pretend it left conflicts.
440 test "$exit" = 0 ||
{
442 # The backend exits with 1 when conflicts are left to be resolved,
443 # with 2 when it does not handle the given merge at all.
445 if test "$exit" -eq 1
448 git-diff-files --name-only
449 git-ls-files --unmerged
451 if test $best_cnt -le 0 -o $cnt -le $best_cnt
453 best_strategy
=$strategy
460 # Automerge succeeded.
461 result_tree
=$
(git-write-tree
) && break
464 # If we have a resulting tree, that means the strategy module
465 # auto resolved the merge cleanly.
466 if test '' != "$result_tree"
468 parents
=$
(git-show-branch
--independent "$head" "$@" |
sed -e 's/^/-p /')
469 result_commit
=$
(echo "$merge_msg" | git-commit-tree
$result_tree $parents) ||
exit
470 finish
"$result_commit" "Merge made by $wt_strategy."
475 # Pick the result from the best strategy and have the user fix it up.
476 case "$best_strategy" in
479 case "$use_strategies" in
481 echo >&2 "No merge strategy handled the merge."
484 echo >&2 "Merge with strategy $use_strategies failed."
490 # We already have its result in the working tree.
493 echo "Rewinding the tree to pristine..."
495 echo "Using the $best_strategy to prepare resolving by hand."
496 git-merge-
$best_strategy $common -- "$head_arg" "$@"
500 if test "$squash" = t
507 done >"$GIT_DIR/MERGE_HEAD"
508 echo "$merge_msg" >"$GIT_DIR/MERGE_MSG"
511 if test "$merge_was_ok" = t
514 "Automatic merge went well; stopped before committing as requested"
521 git ls-files
--unmerged |
522 sed -e 's/^[^ ]* / /' |
524 } >>"$GIT_DIR/MERGE_MSG"
525 if test -d "$GIT_DIR/rr-cache"
529 die
"Automatic merge failed; fix conflicts and then commit the result."