]> git.ipfire.org Git - thirdparty/git.git/blame - git-merge.sh
format-patch documentation: reword to hint "--root <one-commit>" more clearly
[thirdparty/git.git] / git-merge.sh
CommitLineData
91063bbc
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
51e7ecf4 6USAGE='[-n] [--summary] [--no-commit] [--squash] [-s <strategy>] [-m=<merge-message>] <commit>+'
17bcdad3 7
533b7039 8SUBDIRECTORY_OK=Yes
ae2b0f15 9. git-sh-setup
7eff28a9 10require_work_tree
533b7039 11cd_to_toplevel
91063bbc 12
d1014a17 13test -z "$(git ls-files -u)" ||
533b7039 14 die "You are in the middle of a conflicted merge."
d1014a17 15
91063bbc
JH
16LF='
17'
18
68faf689 19all_strategies='recur recursive octopus resolve stupid ours subtree'
a06f678e 20default_twohead_strategies='recursive'
6ea23343 21default_octopus_strategies='octopus'
a0050852
JH
22no_fast_forward_strategies='subtree ours'
23no_trivial_strategies='recursive recur subtree ours'
91063bbc 24use_strategies=
6ea23343 25
a0050852
JH
26allow_fast_forward=t
27allow_trivial_merge=t
91063bbc 28
a9358240 29dropsave() {
deca7e8c 30 rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" \
a9358240
JH
31 "$GIT_DIR/MERGE_SAVE" || exit 1
32}
33
34savestate() {
60fa0560 35 # Stash away any local modifications.
5be60078 36 git diff-index -z --name-only $head |
88f8f0a5 37 cpio -0 -o >"$GIT_DIR/MERGE_SAVE"
a9358240
JH
38}
39
40restorestate() {
deca7e8c
JH
41 if test -f "$GIT_DIR/MERGE_SAVE"
42 then
228e2eb6 43 git reset --hard $head >/dev/null
deca7e8c 44 cpio -iuv <"$GIT_DIR/MERGE_SAVE"
5be60078 45 git update-index --refresh >/dev/null
deca7e8c 46 fi
91063bbc
JH
47}
48
7d0c6887
JH
49finish_up_to_date () {
50 case "$squash" in
51 t)
52 echo "$1 (nothing to squash)" ;;
53 '')
54 echo "$1" ;;
55 esac
56 dropsave
57}
58
59squash_message () {
60 echo Squashed commit of the following:
61 echo
5be60078 62 git log --no-merges ^"$head" $remote
7d0c6887
JH
63}
64
4f692b19 65finish () {
e1447e38
SP
66 if test '' = "$2"
67 then
f9474132 68 rlogm="$GIT_REFLOG_ACTION"
e1447e38
SP
69 else
70 echo "$2"
f9474132 71 rlogm="$GIT_REFLOG_ACTION: $2"
e1447e38 72 fi
7d0c6887
JH
73 case "$squash" in
74 t)
75 echo "Squash commit -- not updating HEAD"
76 squash_message >"$GIT_DIR/SQUASH_MSG"
4f692b19 77 ;;
7d0c6887
JH
78 '')
79 case "$merge_msg" in
80 '')
81 echo "No merge message -- not updating HEAD"
82 ;;
83 *)
5be60078 84 git update-ref -m "$rlogm" HEAD "$1" "$head" || exit 1
7d0c6887
JH
85 ;;
86 esac
4f692b19
JH
87 ;;
88 esac
7d0c6887 89 case "$1" in
91063bbc 90 '')
7d0c6887
JH
91 ;;
92 ?*)
51e7ecf4
AR
93 if test "$show_diffstat" = t
94 then
fefe49d1 95 # We want color (if set), but no pager
5be60078 96 GIT_PAGER='' git diff --stat --summary -M "$head" "$1"
51e7ecf4 97 fi
91063bbc
JH
98 ;;
99 esac
100}
101
b1bfcae4
JH
102merge_name () {
103 remote="$1"
5be60078
JH
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)
b1bfcae4
JH
106 if test "$rh" = "$bh"
107 then
108 echo "$rh branch '$remote' of ."
109 elif truname=$(expr "$remote" : '\(.*\)~[1-9][0-9]*$') &&
5be60078 110 git show-ref -q --verify "refs/heads/$truname" 2>/dev/null
b1bfcae4
JH
111 then
112 echo "$rh branch '$truname' (early part) of ."
85295a52
MT
113 elif test "$remote" = "FETCH_HEAD" -a -r "$GIT_DIR/FETCH_HEAD"
114 then
115 sed -e 's/ not-for-merge / /' -e 1q \
116 "$GIT_DIR/FETCH_HEAD"
b1bfcae4
JH
117 else
118 echo "$rh commit '$remote'"
119 fi
120}
121
fc61e313
RS
122case "$#" in 0) usage ;; esac
123
f9474132 124have_message=
91063bbc
JH
125while case "$#" in 0) break ;; esac
126do
127 case "$1" in
128 -n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\
129 --no-summa|--no-summar|--no-summary)
51e7ecf4
AR
130 show_diffstat=false ;;
131 --summary)
132 show_diffstat=t ;;
7d0c6887
JH
133 --sq|--squ|--squa|--squas|--squash)
134 squash=t no_commit=t ;;
123ee3ca
JH
135 --no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit)
136 no_commit=t ;;
91063bbc
JH
137 -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
138 --strateg=*|--strategy=*|\
139 -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
140 case "$#,$1" in
141 *,*=*)
8096fae7 142 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
f88ed172 143 1,*)
91063bbc
JH
144 usage ;;
145 *)
146 strategy="$2"
147 shift ;;
148 esac
149 case " $all_strategies " in
150 *" $strategy "*)
151 use_strategies="$use_strategies$strategy " ;;
152 *)
153 die "available strategies are: $all_strategies" ;;
154 esac
155 ;;
17bcdad3
JH
156 -m=*|--m=*|--me=*|--mes=*|--mess=*|--messa=*|--messag=*|--message=*)
157 merge_msg=`expr "z$1" : 'z-[^=]*=\(.*\)'`
158 have_message=t
159 ;;
160 -m|--m|--me|--mes|--mess|--messa|--messag|--message)
161 shift
162 case "$#" in
163 1) usage ;;
164 esac
165 merge_msg="$1"
166 have_message=t
167 ;;
91063bbc
JH
168 -*) usage ;;
169 *) break ;;
170 esac
171 shift
172done
173
51e7ecf4 174if test -z "$show_diffstat"; then
5be60078 175 test "$(git config --bool merge.diffstat)" = false && show_diffstat=false
51e7ecf4
AR
176 test -z "$show_diffstat" && show_diffstat=t
177fi
178
17bcdad3
JH
179# This could be traditional "merge <msg> HEAD <commit>..." and the
180# way we can tell it is to see if the second token is HEAD, but some
181# people might have misused the interface and used a committish that
182# is the same as HEAD there instead. Traditional format never would
183# have "-m" so it is an additional safety measure to check for it.
184
185if test -z "$have_message" &&
5be60078
JH
186 second_token=$(git rev-parse --verify "$2^0" 2>/dev/null) &&
187 head_commit=$(git rev-parse --verify "HEAD" 2>/dev/null) &&
17bcdad3
JH
188 test "$second_token" = "$head_commit"
189then
190 merge_msg="$1"
191 shift
192 head_arg="$1"
193 shift
5be60078 194elif ! git rev-parse --verify HEAD >/dev/null 2>&1
8092c7f6
JH
195then
196 # If the merged head is a valid one there is no reason to
197 # forbid "git merge" into a branch yet to be born. We do
198 # the same for "git pull".
199 if test 1 -ne $#
200 then
201 echo >&2 "Can merge only exactly one commit into empty head"
202 exit 1
203 fi
204
205 rh=$(git rev-parse --verify "$1^0") ||
206 die "$1 - not something we can merge"
207
5be60078
JH
208 git update-ref -m "initial pull" HEAD "$rh" "" &&
209 git read-tree --reset -u HEAD
8092c7f6
JH
210 exit
211
17bcdad3
JH
212else
213 # We are invoked directly as the first-class UI.
214 head_arg=HEAD
215
216 # All the rest are the commits being merged; prepare
217 # the standard merge summary message to be appended to
218 # the given message. If remote is invalid we will die
219 # later in the common codepath so we discard the error
220 # in this loop.
221 merge_name=$(for remote
222 do
b1bfcae4 223 merge_name "$remote"
5be60078 224 done | git fmt-merge-msg
17bcdad3
JH
225 )
226 merge_msg="${merge_msg:+$merge_msg$LF$LF}$merge_name"
227fi
5be60078 228head=$(git rev-parse --verify "$head_arg"^0) || usage
91063bbc
JH
229
230# All the rest are remote heads
6ea23343 231test "$#" = 0 && usage ;# we need at least one remote head.
7f9acb2a 232set_reflog_action "merge $*"
6ea23343 233
9954f5b8 234remoteheads=
91063bbc
JH
235for remote
236do
5be60078 237 remotehead=$(git rev-parse --verify "$remote"^0 2>/dev/null) ||
91063bbc 238 die "$remote - not something we can merge"
9954f5b8 239 remoteheads="${remoteheads}$remotehead "
e0ec1819
SP
240 eval GITHEAD_$remotehead='"$remote"'
241 export GITHEAD_$remotehead
91063bbc 242done
9954f5b8 243set x $remoteheads ; shift
91063bbc 244
6ea23343
JH
245case "$use_strategies" in
246'')
247 case "$#" in
248 1)
5be60078 249 var="`git config --get pull.twohead`"
de811948
SP
250 if test -n "$var"
251 then
252 use_strategies="$var"
253 else
254 use_strategies="$default_twohead_strategies"
255 fi ;;
6ea23343 256 *)
5be60078 257 var="`git config --get pull.octopus`"
de811948
SP
258 if test -n "$var"
259 then
260 use_strategies="$var"
261 else
262 use_strategies="$default_octopus_strategies"
263 fi ;;
6ea23343
JH
264 esac
265 ;;
266esac
267
268for s in $use_strategies
269do
a0050852 270 for ss in $no_fast_forward_strategies
de6f0def
JH
271 do
272 case " $s " in
a0050852
JH
273 *" $ss "*)
274 allow_fast_forward=f
275 break
276 ;;
277 esac
278 done
279 for ss in $no_trivial_strategies
280 do
281 case " $s " in
282 *" $ss "*)
283 allow_trivial_merge=f
de6f0def
JH
284 break
285 ;;
286 esac
287 done
6ea23343
JH
288done
289
13956670
JH
290case "$#" in
2911)
5be60078 292 common=$(git merge-base --all $head "$@")
13956670
JH
293 ;;
294*)
5be60078 295 common=$(git show-branch --merge-base $head "$@")
13956670
JH
296 ;;
297esac
91063bbc
JH
298echo "$head" >"$GIT_DIR/ORIG_HEAD"
299
a0050852 300case "$allow_fast_forward,$#,$common,$no_commit" in
6ea23343 301?,*,'',*)
88f8f0a5 302 # No common ancestors found. We need a real merge.
91063bbc 303 ;;
6ea23343 304?,1,"$1",*)
91063bbc 305 # If head can reach all the merge then we are up to date.
6ea23343 306 # but first the most common case of merging one remote.
7d0c6887 307 finish_up_to_date "Already up-to-date."
91063bbc
JH
308 exit 0
309 ;;
a0050852 310t,1,"$head",*)
91063bbc 311 # Again the most common case of merging one remote.
5be60078
JH
312 echo "Updating $(git rev-parse --short $head)..$(git rev-parse --short $1)"
313 git update-index --refresh 2>/dev/null
be242d57
BF
314 msg="Fast forward"
315 if test -n "$have_message"
316 then
317 msg="$msg (no commit created; -m option ignored)"
318 fi
5be60078
JH
319 new_head=$(git rev-parse --verify "$1^0") &&
320 git read-tree -v -m -u --exclude-per-directory=.gitignore $head "$new_head" &&
be242d57 321 finish "$new_head" "$msg" || exit
a9358240 322 dropsave
91063bbc
JH
323 exit 0
324 ;;
6ea23343 325?,1,?*"$LF"?*,*)
91063bbc
JH
326 # We are not doing octopus and not fast forward. Need a
327 # real merge.
328 ;;
6ea23343 329?,1,*,)
f9d72413 330 # We are not doing octopus, not fast forward, and have only
c82d7117 331 # one common.
5be60078 332 git update-index --refresh 2>/dev/null
a0050852
JH
333 case "$allow_trivial_merge" in
334 t)
c82d7117
SP
335 # See if it is really trivial.
336 git var GIT_COMMITTER_IDENT >/dev/null || exit
337 echo "Trying really trivial in-index merge..."
5be60078
JH
338 if git read-tree --trivial -m -u -v $common $head "$1" &&
339 result_tree=$(git write-tree)
c82d7117
SP
340 then
341 echo "Wonderful."
342 result_commit=$(
a23bfaed 343 printf '%s\n' "$merge_msg" |
5be60078 344 git commit-tree $result_tree -p HEAD -p "$1"
c82d7117
SP
345 ) || exit
346 finish "$result_commit" "In-index merge"
347 dropsave
348 exit 0
349 fi
350 echo "Nope."
351 esac
f9d72413 352 ;;
91063bbc
JH
353*)
354 # An octopus. If we can reach all the remote we are up to date.
355 up_to_date=t
356 for remote
357 do
5be60078 358 common_one=$(git merge-base --all $head $remote)
91063bbc
JH
359 if test "$common_one" != "$remote"
360 then
361 up_to_date=f
362 break
363 fi
364 done
365 if test "$up_to_date" = t
366 then
7d0c6887 367 finish_up_to_date "Already up-to-date. Yeeah!"
91063bbc
JH
368 exit 0
369 fi
370 ;;
371esac
372
e3b59a44
JH
373# We are going to make a new commit.
374git var GIT_COMMITTER_IDENT >/dev/null || exit
375
a9358240
JH
376# At this point, we need a real merge. No matter what strategy
377# we use, it would operate on the index, possibly affecting the
378# working tree, and when resolved cleanly, have the desired tree
379# in the index -- this means that the index must be in sync with
60fa0560 380# the $head commit. The strategies are responsible to ensure this.
91063bbc 381
a9358240
JH
382case "$use_strategies" in
383?*' '?*)
384 # Stash away the local changes so that we can try more than one.
385 savestate
386 single_strategy=no
387 ;;
388*)
deca7e8c 389 rm -f "$GIT_DIR/MERGE_SAVE"
a9358240
JH
390 single_strategy=yes
391 ;;
392esac
91063bbc
JH
393
394result_tree= best_cnt=-1 best_strategy= wt_strategy=
695bf722 395merge_was_ok=
91063bbc
JH
396for strategy in $use_strategies
397do
398 test "$wt_strategy" = '' || {
399 echo "Rewinding the tree to pristine..."
a9358240 400 restorestate
91063bbc 401 }
a9358240
JH
402 case "$single_strategy" in
403 no)
404 echo "Trying merge strategy $strategy..."
405 ;;
406 esac
407
408 # Remember which strategy left the state in the working tree
91063bbc 409 wt_strategy=$strategy
a9358240 410
123ee3ca
JH
411 git-merge-$strategy $common -- "$head_arg" "$@"
412 exit=$?
413 if test "$no_commit" = t && test "$exit" = 0
414 then
695bf722 415 merge_was_ok=t
123ee3ca
JH
416 exit=1 ;# pretend it left conflicts.
417 fi
418
419 test "$exit" = 0 || {
91063bbc
JH
420
421 # The backend exits with 1 when conflicts are left to be resolved,
422 # with 2 when it does not handle the given merge at all.
423
91063bbc
JH
424 if test "$exit" -eq 1
425 then
426 cnt=`{
5be60078
JH
427 git diff-files --name-only
428 git ls-files --unmerged
91063bbc
JH
429 } | wc -l`
430 if test $best_cnt -le 0 -o $cnt -le $best_cnt
431 then
432 best_strategy=$strategy
433 best_cnt=$cnt
434 fi
435 fi
436 continue
437 }
438
439 # Automerge succeeded.
5be60078 440 result_tree=$(git write-tree) && break
91063bbc
JH
441done
442
443# If we have a resulting tree, that means the strategy module
444# auto resolved the merge cleanly.
445if test '' != "$result_tree"
446then
5be60078
JH
447 parents=$(git show-branch --independent "$head" "$@" | sed -e 's/^/-p /')
448 result_commit=$(printf '%s\n' "$merge_msg" | git commit-tree $result_tree $parents) || exit
e1447e38 449 finish "$result_commit" "Merge made by $wt_strategy."
a9358240 450 dropsave
91063bbc
JH
451 exit 0
452fi
453
454# Pick the result from the best strategy and have the user fix it up.
455case "$best_strategy" in
456'')
a9358240 457 restorestate
0c4e95d0
JH
458 case "$use_strategies" in
459 ?*' '?*)
460 echo >&2 "No merge strategy handled the merge."
461 ;;
462 *)
463 echo >&2 "Merge with strategy $use_strategies failed."
464 ;;
465 esac
4275df51 466 exit 2
91063bbc
JH
467 ;;
468"$wt_strategy")
469 # We already have its result in the working tree.
470 ;;
471*)
472 echo "Rewinding the tree to pristine..."
a9358240 473 restorestate
91063bbc 474 echo "Using the $best_strategy to prepare resolving by hand."
a9358240 475 git-merge-$best_strategy $common -- "$head_arg" "$@"
91063bbc
JH
476 ;;
477esac
7d0c6887
JH
478
479if test "$squash" = t
480then
481 finish
482else
483 for remote
484 do
485 echo $remote
486 done >"$GIT_DIR/MERGE_HEAD"
a23bfaed 487 printf '%s\n' "$merge_msg" >"$GIT_DIR/MERGE_MSG"
7d0c6887 488fi
deca7e8c 489
695bf722
JH
490if test "$merge_was_ok" = t
491then
492 echo >&2 \
493 "Automatic merge went well; stopped before committing as requested"
494 exit 0
495else
6b94f1e4
JH
496 {
497 echo '
498Conflicts:
499'
500 git ls-files --unmerged |
501 sed -e 's/^[^ ]* / /' |
502 uniq
503 } >>"$GIT_DIR/MERGE_MSG"
b4372ef1 504 git rerere
50ac7408 505 die "Automatic merge failed; fix conflicts and then commit the result."
695bf722 506fi