MinGW: Make git native protocol work.
[git/mingw.git] / git-merge.sh
blobb0f4c67bf8251f5bb82da9ccaea9d0bb05b9699e
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 USAGE='[-n] [--no-commit] [--squash] [-s <strategy>] [-m=<merge-message>] <commit>+'
8 SUBDIRECTORY_OK=Yes
9 . git-sh-setup
10 require_work_tree
11 cd_to_toplevel
13 test -z "$(git ls-files -u)" ||
14 die "You are in the middle of a conflicted merge."
16 LF='
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'
23 use_strategies=
25 index_merge=t
27 dropsave() {
28 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
29 "$GIT_DIR/MERGE_SAVE" || exit 1
32 savestate() {
33 # Stash away any local modifications.
34 git-diff-index -z --name-only $head |
35 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
38 restorestate() {
39 if test -f "$GIT_DIR/MERGE_SAVE"
40 then
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 () {
48 case "$squash" in
50 echo "$1 (nothing to squash)" ;;
51 '')
52 echo "$1" ;;
53 esac
54 dropsave
57 squash_message () {
58 echo Squashed commit of the following:
59 echo
60 git-log --no-merges ^"$head" $remote
63 finish () {
64 if test '' = "$2"
65 then
66 rlogm="$GIT_REFLOG_ACTION"
67 else
68 echo "$2"
69 rlogm="$GIT_REFLOG_ACTION: $2"
71 case "$squash" in
73 echo "Squash commit -- not updating HEAD"
74 squash_message >"$GIT_DIR/SQUASH_MSG"
76 '')
77 case "$merge_msg" in
78 '')
79 echo "No merge message -- not updating HEAD"
82 git-update-ref -m "$rlogm" HEAD "$1" "$head" || exit 1
84 esac
86 esac
87 case "$1" in
88 '')
90 ?*)
91 case "$no_summary" in
92 '')
93 git-diff-tree --stat --summary -M "$head" "$1"
95 esac
97 esac
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`
115 then
116 echo >&2 "Trivially automerged."
117 else
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
126 case "$unmerged" in
127 '') ;;
130 z40=0000000000000000000000000000000000000000
131 echo "$unmerged" |
132 sed -e 's/^[0-7]* [0-9a-f]* /'"0 $z40 /"
133 echo "$unmerged"
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"
140 esac
141 exit 0
145 merge_name () {
146 remote="$1"
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"
150 then
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
154 then
155 echo "$rh branch '$truname' (early part) of ."
156 else
157 echo "$rh commit '$remote'"
161 case "$#" in 0) usage ;; esac
163 have_message=
164 while case "$#" in 0) break ;; esac
166 case "$1" in
167 -n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\
168 --no-summa|--no-summar|--no-summary)
169 no_summary=t ;;
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)
173 no_commit=t ;;
174 -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
175 --strateg=*|--strategy=*|\
176 -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
177 case "$#,$1" in
178 *,*=*)
179 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
180 1,*)
181 usage ;;
183 strategy="$2"
184 shift ;;
185 esac
186 case " $all_strategies " in
187 *" $strategy "*)
188 use_strategies="$use_strategies$strategy " ;;
190 die "available strategies are: $all_strategies" ;;
191 esac
193 -m=*|--m=*|--me=*|--mes=*|--mess=*|--messa=*|--messag=*|--message=*)
194 merge_msg=`expr "z$1" : 'z-[^=]*=\(.*\)'`
195 have_message=t
197 -m|--m|--me|--mes|--mess|--messa|--messag|--message)
198 shift
199 case "$#" in
200 1) usage ;;
201 esac
202 merge_msg="$1"
203 have_message=t
205 -*) usage ;;
206 *) break ;;
207 esac
208 shift
209 done
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"
221 then
222 merge_msg="$1"
223 shift
224 head_arg="$1"
225 shift
226 elif ! git-rev-parse --verify HEAD >/dev/null 2>&1
227 then
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".
231 if test 1 -ne $#
232 then
233 echo >&2 "Can merge only exactly one commit into empty head"
234 exit 1
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
242 exit
244 else
245 # We are invoked directly as the first-class UI.
246 head_arg=HEAD
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
252 # in this loop.
253 merge_name=$(for remote
255 merge_name "$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 $*"
266 remoteheads=
267 for remote
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
274 done
275 set x $remoteheads ; shift
277 case "$use_strategies" in
279 case "$#" in
281 var="`git-config --get pull.twohead`"
282 if test -n "$var"
283 then
284 use_strategies="$var"
285 else
286 use_strategies="$default_twohead_strategies"
287 fi ;;
289 var="`git-config --get pull.octopus`"
290 if test -n "$var"
291 then
292 use_strategies="$var"
293 else
294 use_strategies="$default_octopus_strategies"
295 fi ;;
296 esac
298 esac
300 for s in $use_strategies
302 case " $s " in
303 *" $no_trivial_merge_strategies "*)
304 index_merge=f
305 break
307 esac
308 done
310 case "$#" in
312 common=$(git-merge-base --all $head "$@")
315 common=$(git-show-branch --merge-base $head "$@")
317 esac
318 echo "$head" >"$GIT_DIR/ORIG_HEAD"
320 case "$index_merge,$#,$common,$no_commit" in
321 f,*)
322 # We've been told not to try anything clever. Skip to real merge.
324 ?,*,'',*)
325 # No common ancestors found. We need a real merge.
327 ?,1,"$1",*)
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."
331 exit 0
333 ?,1,"$head",*)
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"
340 dropsave
341 exit 0
343 ?,1,?*"$LF"?*,*)
344 # We are not doing octopus and not fast forward. Need a
345 # real merge.
347 ?,1,*,)
348 # We are not doing octopus, not fast forward, and have only
349 # one common.
350 git-update-index --refresh 2>/dev/null
351 case " $use_strategies " in
352 *' recursive '*|*' recur '*)
353 : run merge later
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)
361 then
362 echo "Wonderful."
363 result_commit=$(
364 echo "$merge_msg" |
365 git-commit-tree $result_tree -p HEAD -p "$1"
366 ) || exit
367 finish "$result_commit" "In-index merge"
368 dropsave
369 exit 0
371 echo "Nope."
372 esac
375 # An octopus. If we can reach all the remote we are up to date.
376 up_to_date=t
377 for remote
379 common_one=$(git-merge-base --all $head $remote)
380 if test "$common_one" != "$remote"
381 then
382 up_to_date=f
383 break
385 done
386 if test "$up_to_date" = t
387 then
388 finish_up_to_date "Already up-to-date. Yeeah!"
389 exit 0
392 esac
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
404 ?*' '?*)
405 # Stash away the local changes so that we can try more than one.
406 savestate
407 single_strategy=no
410 rm -f "$GIT_DIR/MERGE_SAVE"
411 single_strategy=yes
413 esac
415 result_tree= best_cnt=-1 best_strategy= wt_strategy=
416 merge_was_ok=
417 for strategy in $use_strategies
419 test "$wt_strategy" = '' || {
420 echo "Rewinding the tree to pristine..."
421 restorestate
423 case "$single_strategy" in
425 echo "Trying merge strategy $strategy..."
427 esac
429 # Remember which strategy left the state in the working tree
430 wt_strategy=$strategy
432 git-merge-$strategy $common -- "$head_arg" "$@"
433 exit=$?
434 if test "$no_commit" = t && test "$exit" = 0
435 then
436 merge_was_ok=t
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
446 then
447 cnt=`{
448 git-diff-files --name-only
449 git-ls-files --unmerged
450 } | wc -l`
451 if test $best_cnt -le 0 -o $cnt -le $best_cnt
452 then
453 best_strategy=$strategy
454 best_cnt=$cnt
457 continue
460 # Automerge succeeded.
461 result_tree=$(git-write-tree) && break
462 done
464 # If we have a resulting tree, that means the strategy module
465 # auto resolved the merge cleanly.
466 if test '' != "$result_tree"
467 then
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."
471 dropsave
472 exit 0
475 # Pick the result from the best strategy and have the user fix it up.
476 case "$best_strategy" in
478 restorestate
479 case "$use_strategies" in
480 ?*' '?*)
481 echo >&2 "No merge strategy handled the merge."
484 echo >&2 "Merge with strategy $use_strategies failed."
486 esac
487 exit 2
489 "$wt_strategy")
490 # We already have its result in the working tree.
493 echo "Rewinding the tree to pristine..."
494 restorestate
495 echo "Using the $best_strategy to prepare resolving by hand."
496 git-merge-$best_strategy $common -- "$head_arg" "$@"
498 esac
500 if test "$squash" = t
501 then
502 finish
503 else
504 for remote
506 echo $remote
507 done >"$GIT_DIR/MERGE_HEAD"
508 echo "$merge_msg" >"$GIT_DIR/MERGE_MSG"
511 if test "$merge_was_ok" = t
512 then
513 echo >&2 \
514 "Automatic merge went well; stopped before committing as requested"
515 exit 0
516 else
518 echo '
519 Conflicts:
521 git ls-files --unmerged |
522 sed -e 's/^[^ ]* / /' |
523 uniq
524 } >>"$GIT_DIR/MERGE_MSG"
525 if test -d "$GIT_DIR/rr-cache"
526 then
527 git-rerere
529 die "Automatic merge failed; fix conflicts and then commit the result."