1#!/bin/sh 2# 3# 4 5USAGE='[--signoff] [--dotest=<dir>] [--utf8] [--binary] [--3way] <mbox> 6 or, when resuming [--skip | --resolved]' 7. git-sh-setup 8 9stop_here () { 10echo"$1">"$dotest/next" 11exit1 12} 13 14go_next () { 15rm-f"$dotest/$msgnum""$dotest/msg""$dotest/msg-clean" \ 16"$dotest/patch""$dotest/info" 17echo"$next">"$dotest/next" 18 this=$next 19} 20 21fall_back_3way () { 22 O_OBJECT=`cd "$GIT_OBJECT_DIRECTORY" && pwd` 23 24rm-fr"$dotest"/patch-merge-* 25mkdir"$dotest/patch-merge-tmp-dir" 26 27# First see if the patch records the index info that we can use. 28if git-apply -z --index-info"$dotest/patch" \ 29>"$dotest/patch-merge-index-info"2>/dev/null && 30 GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ 31 git-update-index -z --index-info<"$dotest/patch-merge-index-info"&& 32 GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ 33 git-write-tree>"$dotest/patch-merge-base+"&& 34# index has the base tree now. 35( 36cd"$dotest/patch-merge-tmp-dir"&& 37 GIT_INDEX_FILE="../patch-merge-tmp-index" \ 38 GIT_OBJECT_DIRECTORY="$O_OBJECT" \ 39 git-apply$binary--index<../patch 40) 41then 42echo Using index info to reconstruct a base tree... 43mv"$dotest/patch-merge-base+""$dotest/patch-merge-base" 44mv"$dotest/patch-merge-tmp-index""$dotest/patch-merge-index" 45else 46# Otherwise, try nearby trees that can be used to apply the 47# patch. 48( 49 N=10 50 51# Hoping the patch is against our recent commits... 52 git-rev-list --max-count=$N HEAD 53 54# or hoping the patch is against known tags... 55 git-ls-remote --tags . 56) | 57whileread base junk 58do 59# See if we have it as a tree... 60 git-cat-file tree "$base">/dev/null 2>&1||continue 61 62rm-fr"$dotest"/patch-merge-* && 63mkdir"$dotest/patch-merge-tmp-dir"||break 64( 65cd"$dotest/patch-merge-tmp-dir"&& 66 GIT_INDEX_FILE=../patch-merge-tmp-index&& 67 GIT_OBJECT_DIRECTORY="$O_OBJECT"&& 68export GIT_INDEX_FILE GIT_OBJECT_DIRECTORY && 69 git-read-tree"$base"&& 70 git-apply$binary--index&& 71mv ../patch-merge-tmp-index ../patch-merge-index&& 72echo"$base">../patch-merge-base 73) <"$dotest/patch"2>/dev/null &&break 74done 75fi 76 77test -f"$dotest/patch-merge-index"&& 78 his_tree=$(GIT_INDEX_FILE="$dotest/patch-merge-index" git-write-tree)&& 79 orig_tree=$(cat "$dotest/patch-merge-base")&& 80rm-fr"$dotest"/patch-merge-* ||exit1 81 82echo Falling back to patching base and 3-way merge... 83 84# This is not so wrong. Depending on which base we picked, 85# orig_tree may be wildly different from ours, but his_tree 86# has the same set of wildly different changes in parts the 87# patch did not touch, so resolve ends up cancelling them, 88# saying that we reverted all those changes. 89 90 git-merge-resolve$orig_tree-- HEAD $his_tree|| { 91echo Failed to merge in the changes. 92exit1 93} 94} 95 96prec=4 97dotest=.dotest sign= utf8= keep= skip= interactive= resolved= binary= 98 99while case"$#"in0)break;;esac 100do 101case"$1"in 102-d=*|--d=*|--do=*|--dot=*|--dote=*|--dotes=*|--dotest=*) 103 dotest=`expr "$1" : '-[^=]*=\(.*\)'`;shift;; 104-d|--d|--do|--dot|--dote|--dotes|--dotest) 105case"$#"in1) usage ;;esac;shift 106 dotest="$1";shift;; 107 108-i|--i|--in|--int|--inte|--inter|--intera|--interac|--interact|\ 109--interacti|--interactiv|--interactive) 110 interactive=t;shift;; 111 112-b|--b|--bi|--bin|--bina|--binar|--binary) 113 binary=t;shift;; 114 115-3|--3|--3w|--3wa|--3way) 116 threeway=t;shift;; 117-s|--s|--si|--sig|--sign|--signo|--signof|--signoff) 118 sign=t;shift;; 119-u|--u|--ut|--utf|--utf8) 120 utf8=t;shift;; 121-k|--k|--ke|--kee|--keep) 122 keep=t;shift;; 123 124-r|--r|--re|--res|--reso|--resol|--resolv|--resolve|--resolved) 125 resolved=t;shift;; 126 127--sk|--ski|--skip) 128 skip=t;shift;; 129 130--) 131shift;break;; 132-*) 133 usage ;; 134*) 135break;; 136esac 137done 138 139# If the dotest directory exists, but we have finished applying all the 140# patches in them, clear it out. 141iftest -d"$dotest"&& 142 last=$(cat "$dotest/last")&& 143 next=$(cat "$dotest/next")&& 144test$#!=0&& 145test"$next"-gt"$last" 146then 147rm-fr"$dotest" 148fi 149 150iftest -d"$dotest" 151then 152test",$#,"=",0,"|| 153 die "previous dotest directory$doteststill exists but mbox given." 154 resume=yes 155else 156# Make sure we are not given --skip nor --resolved 157test",$skip,$resolved,"= ,,, || 158 die "we are not resuming." 159 160# Start afresh. 161mkdir-p"$dotest"||exit 162 163 git-mailsplit -d"$prec"-o"$dotest"-b --"$@">"$dotest/last"|| { 164rm-fr"$dotest" 165exit1 166} 167 168# -b, -s, -u and -k flags are kept for the resuming session after 169# a patch failure. 170# -3 and -i can and must be given when resuming. 171echo"$binary">"$dotest/binary" 172echo"$sign">"$dotest/sign" 173echo"$utf8">"$dotest/utf8" 174echo"$keep">"$dotest/keep" 175echo1>"$dotest/next" 176fi 177 178case"$resolved"in 179'') 180 files=$(git-diff-index --cached --name-only HEAD)||exit 181if["$files"];then 182echo"Dirty index: cannot apply patches (dirty:$files)">&2 183exit1 184fi 185esac 186 187iftest"$(cat "$dotest/binary")"= t 188then 189 binary=--allow-binary-replacement 190fi 191iftest"$(cat "$dotest/utf8")"= t 192then 193 utf8=-u 194fi 195iftest"$(cat "$dotest/keep")"= t 196then 197 keep=-k 198fi 199iftest"$(cat "$dotest/sign")"= t 200then 201 SIGNOFF=`git-var GIT_COMMITTER_IDENT | sed -e ' 202 s/>.*/>/ 203 s/^/Signed-off-by: /' 204 ` 205else 206 SIGNOFF= 207fi 208 209last=`cat "$dotest/last"` 210this=`cat "$dotest/next"` 211iftest"$skip"= t 212then 213 this=`expr "$this" + 1` 214 resume= 215fi 216 217iftest"$this"-gt"$last" 218then 219echo Nothing to do. 220rm-fr"$dotest" 221exit 222fi 223 224whiletest"$this"-le"$last" 225do 226 msgnum=`printf "%0${prec}d"$this` 227 next=`expr "$this" + 1` 228test -f"$dotest/$msgnum"|| { 229 resume= 230 go_next 231continue 232} 233 234# If we are not resuming, parse and extract the patch information 235# into separate files: 236# - info records the authorship and title 237# - msg is the rest of commit log message 238# - patch is the patch body. 239# 240# When we are resuming, these files are either already prepared 241# by the user, or the user can tell us to do so by --resolved flag. 242case"$resume"in 243'') 244 git-mailinfo$keep $utf8"$dotest/msg""$dotest/patch" \ 245<"$dotest/$msgnum">"$dotest/info"|| 246 stop_here $this 247 git-stripspace<"$dotest/msg">"$dotest/msg-clean" 248;; 249esac 250 251 GIT_AUTHOR_NAME="$(sed -n '/^Author/ s/Author: //p' "$dotest/info")" 252 GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' "$dotest/info")" 253 GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' "$dotest/info")" 254 255iftest -z"$GIT_AUTHOR_EMAIL" 256then 257echo"Patch does not have a valid e-mail address." 258 stop_here $this 259fi 260 261export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE 262 263 SUBJECT="$(sed -n '/^Subject/ s/Subject: //p' "$dotest/info")" 264case"$keep_subject"in-k) SUBJECT="[PATCH]$SUBJECT";;esac 265 266case"$resume"in 267'') 268iftest''!="$SIGNOFF" 269then 270 LAST_SIGNED_OFF_BY=` 271 sed -ne '/^Signed-off-by: /p' \ 272 "$dotest/msg-clean" | 273 tail -n 1 274 ` 275 ADD_SIGNOFF=` 276 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || { 277 test '' = "$LAST_SIGNED_OFF_BY" && echo 278 echo "$SIGNOFF" 279 }` 280else 281 ADD_SIGNOFF= 282fi 283{ 284echo"$SUBJECT" 285iftest -s"$dotest/msg-clean" 286then 287echo 288cat"$dotest/msg-clean" 289fi 290iftest''!="$ADD_SIGNOFF" 291then 292echo"$ADD_SIGNOFF" 293fi 294} >"$dotest/final-commit" 295;; 296*) 297case"$resolved,$interactive"in 298 tt) 299# This is used only for interactive view option. 300 git-diff-index -p --cached HEAD >"$dotest/patch" 301;; 302esac 303esac 304 305 resume= 306iftest"$interactive"= t 307then 308test -t0|| 309 die "cannot be interactive without stdin connected to a terminal." 310 action=again 311whiletest"$action"= again 312do 313echo"Commit Body is:" 314echo"--------------------------" 315cat"$dotest/final-commit" 316echo"--------------------------" 317printf"Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all " 318read reply 319case"$reply"in 320[yY]*) action=yes;; 321[aA]*) action=yes interactive= ;; 322[nN]*) action=skip ;; 323[eE]*)"${VISUAL:-${EDITOR:-vi}}""$dotest/final-commit" 324 action=again ;; 325[vV]*) action=again 326 LESS=-S${PAGER:-less}"$dotest/patch";; 327*) action=again ;; 328esac 329done 330else 331 action=yes 332fi 333 334iftest$action= skip 335then 336 go_next 337continue 338fi 339 340iftest -x"$GIT_DIR"/hooks/applypatch-msg 341then 342"$GIT_DIR"/hooks/applypatch-msg"$dotest/final-commit"|| 343 stop_here $this 344fi 345 346echo 347echo"Applying '$SUBJECT'" 348echo 349 350case"$resolved"in 351'') 352 git-apply$binary--index"$dotest/patch" 353 apply_status=$? 354;; 355 t) 356# Resolved means the user did all the hard work, and 357# we do not have to do any patch application. Just 358# trust what the user has in the index file and the 359# working tree. 360 resolved= 361 apply_status=0 362;; 363esac 364 365iftest$apply_status=1&&test"$threeway"= t 366then 367if(fall_back_3way) 368then 369# Applying the patch to an earlier tree and merging the 370# result may have produced the same tree as ours. 371 changed="$(git-diff-index --cached --name-only -z HEAD)" 372iftest''="$changed" 373then 374echo No changes -- Patch already applied. 375 go_next 376continue 377fi 378# clear apply_status -- we have successfully merged. 379 apply_status=0 380fi 381fi 382iftest$apply_status!=0 383then 384echo Patch failed at$msgnum. 385 stop_here $this 386fi 387 388iftest -x"$GIT_DIR"/hooks/pre-applypatch 389then 390"$GIT_DIR"/hooks/pre-applypatch|| stop_here $this 391fi 392 393 tree=$(git-write-tree)&& 394echo Wrote tree $tree&& 395 parent=$(git-rev-parse --verify HEAD)&& 396 commit=$(git-commit-tree $tree -p $parent <"$dotest/final-commit")&& 397echo Committed:$commit&& 398 git-update-ref HEAD $commit $parent|| 399 stop_here $this 400 401iftest -x"$GIT_DIR"/hooks/post-applypatch 402then 403"$GIT_DIR"/hooks/post-applypatch 404fi 405 406 go_next 407done 408 409rm-fr"$dotest"