1#!/bin/sh 2# 3# Copyright (c) 2005 Junio C Hamano 4# 5 6 7USAGE='[-n] [--no-commit] [-s <strategy>]... <merge-message> <head> <remote>+' 8. git-sh-setup 9 10LF=' 11' 12 13all_strategies='recursive octopus resolve stupid ours' 14default_strategies='recursive' 15use_strategies= 16 17dropsave() { 18rm-f --"$GIT_DIR/MERGE_HEAD""$GIT_DIR/MERGE_MSG" \ 19"$GIT_DIR/MERGE_SAVE"||exit1 20} 21 22savestate() { 23# Stash away any local modifications. 24 git-diff-index -z --name-only$head| 25cpio-0 -o>"$GIT_DIR/MERGE_SAVE" 26} 27 28restorestate() { 29iftest -f"$GIT_DIR/MERGE_SAVE" 30then 31 git reset--hard$head 32cpio-iuv<"$GIT_DIR/MERGE_SAVE" 33 git-update-index --refresh>/dev/null 34fi 35} 36 37finish () { 38test''="$2"||echo"$2" 39case"$merge_msg"in 40'') 41echo"No merge message -- not updating HEAD" 42;; 43*) 44 git-update-ref HEAD "$1""$head"||exit1 45;; 46esac 47 48case"$no_summary"in 49'') 50 git-diff-tree -p -M"$head""$1"| 51 git-apply --stat --summary 52;; 53esac 54} 55 56while case"$#"in0)break;;esac 57do 58case"$1"in 59-n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\ 60--no-summa|--no-summar|--no-summary) 61 no_summary=t ;; 62--no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit) 63 no_commit=t ;; 64-s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\ 65--strateg=*|--strategy=*|\ 66-s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy) 67case"$#,$1"in 68*,*=*) 69 strategy=`expr "$1" : '-[^=]*=\(.*\)'`;; 701,*) 71 usage ;; 72*) 73 strategy="$2" 74shift;; 75esac 76case"$all_strategies"in 77*"$strategy"*) 78 use_strategies="$use_strategies$strategy";; 79*) 80 die "available strategies are:$all_strategies";; 81esac 82;; 83-*) usage ;; 84*)break;; 85esac 86shift 87done 88 89test"$#"-le2&& usage ;# we need at least two heads. 90 91merge_msg="$1" 92shift 93head_arg="$1" 94head=$(git-rev-parse --verify "$1"^0)|| usage 95shift 96 97# All the rest are remote heads 98remoteheads= 99for remote 100do 101 remotehead=$(git-rev-parse --verify "$remote"^0)|| 102 die "$remote- not something we can merge" 103 remoteheads="${remoteheads}$remotehead" 104done 105set x $remoteheads;shift 106 107case"$#"in 1081) 109 common=$(git-merge-base --all $head "$@") 110;; 111*) 112 common=$(git-show-branch --merge-base $head "$@") 113;; 114esac 115echo"$head">"$GIT_DIR/ORIG_HEAD" 116 117case"$#,$common,$no_commit"in 118*,'',*) 119# No common ancestors found. We need a real merge. 120;; 1211,"$1",*) 122# If head can reach all the merge then we are up to date. 123# but first the most common case of merging one remote 124echo"Already up-to-date." 125 dropsave 126exit0 127;; 1281,"$head",*) 129# Again the most common case of merging one remote. 130echo"Updating from$headto$1." 131 git-update-index --refresh2>/dev/null 132 new_head=$(git-rev-parse --verify "$1^0")&& 133 git-read-tree -u -m$head"$new_head"&& 134 finish "$new_head""Fast forward" 135 dropsave 136exit0 137;; 1381,?*"$LF"?*,*) 139# We are not doing octopus and not fast forward. Need a 140# real merge. 141;; 1421,*,) 143# We are not doing octopus, not fast forward, and have only 144# one common. See if it is really trivial. 145echo"Trying really trivial in-index merge..." 146 git-update-index --refresh2>/dev/null 147if git-read-tree --trivial -m -u$common $head"$1"&& 148 result_tree=$(git-write-tree) 149then 150echo"Wonderful." 151 result_commit=$( 152echo"$merge_msg"| 153 git-commit-tree$result_tree-p HEAD -p"$1" 154) ||exit 155 finish "$result_commit""In-index merge" 156 dropsave 157exit0 158fi 159echo"Nope." 160;; 161*) 162# An octopus. If we can reach all the remote we are up to date. 163 up_to_date=t 164for remote 165do 166 common_one=$(git-merge-base --all $head $remote) 167iftest"$common_one"!="$remote" 168then 169 up_to_date=f 170break 171fi 172done 173iftest"$up_to_date"= t 174then 175echo"Already up-to-date. Yeeah!" 176 dropsave 177exit0 178fi 179;; 180esac 181 182case"$use_strategies"in 183'') 184case"$#"in 1851) 186 use_strategies="$default_strategies";; 187*) 188 use_strategies=octopus ;; 189esac 190;; 191esac 192 193# At this point, we need a real merge. No matter what strategy 194# we use, it would operate on the index, possibly affecting the 195# working tree, and when resolved cleanly, have the desired tree 196# in the index -- this means that the index must be in sync with 197# the $head commit. The strategies are responsible to ensure this. 198 199case"$use_strategies"in 200?*' '?*) 201# Stash away the local changes so that we can try more than one. 202 savestate 203 single_strategy=no 204;; 205*) 206rm-f"$GIT_DIR/MERGE_SAVE" 207 single_strategy=yes 208;; 209esac 210 211result_tree= best_cnt=-1 best_strategy= wt_strategy= 212for strategy in$use_strategies 213do 214test"$wt_strategy"=''|| { 215echo"Rewinding the tree to pristine..." 216 restorestate 217} 218case"$single_strategy"in 219 no) 220echo"Trying merge strategy$strategy..." 221;; 222esac 223 224# Remember which strategy left the state in the working tree 225 wt_strategy=$strategy 226 227 git-merge-$strategy $common--"$head_arg""$@" 228exit=$? 229iftest"$no_commit"= t &&test"$exit"=0 230then 231exit=1;# pretend it left conflicts. 232fi 233 234test"$exit"=0|| { 235 236# The backend exits with 1 when conflicts are left to be resolved, 237# with 2 when it does not handle the given merge at all. 238 239iftest"$exit"-eq1 240then 241 cnt=`{ 242 git-diff-files --name-only 243 git-ls-files --unmerged 244 } | wc -l` 245iftest$best_cnt-le0-o$cnt-le$best_cnt 246then 247 best_strategy=$strategy 248 best_cnt=$cnt 249fi 250fi 251continue 252} 253 254# Automerge succeeded. 255 result_tree=$(git-write-tree)&&break 256done 257 258# If we have a resulting tree, that means the strategy module 259# auto resolved the merge cleanly. 260iftest''!="$result_tree" 261then 262 parents="-p$head" 263for remote 264do 265 parents="$parents-p$remote" 266done 267 result_commit=$(echo "$merge_msg" | git-commit-tree $result_tree $parents)||exit 268 finish "$result_commit""Merge$result_commit, made by$wt_strategy." 269 dropsave 270exit0 271fi 272 273# Pick the result from the best strategy and have the user fix it up. 274case"$best_strategy"in 275'') 276 restorestate 277echo>&2"No merge strategy handled the merge." 278exit2 279;; 280"$wt_strategy") 281# We already have its result in the working tree. 282;; 283*) 284echo"Rewinding the tree to pristine..." 285 restorestate 286echo"Using the$best_strategyto prepare resolving by hand." 287 git-merge-$best_strategy $common--"$head_arg""$@" 288;; 289esac 290for remote 291do 292echo$remote 293done>"$GIT_DIR/MERGE_HEAD" 294echo$merge_msg>"$GIT_DIR/MERGE_MSG" 295 296die "Automatic merge failed/prevented; fix up by hand"