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