1#!/bin/sh 2# 3# Copyright (c) 2005, 2006 Junio C Hamano 4 5SUBDIRECTORY_OK=Yes 6OPTIONS_KEEPDASHDASH= 7OPTIONS_SPEC="\ 8git am [options] [(<mbox>|<Maildir>)...] 9git am [options] (--resolved | --skip | --abort) 10-- 11i,interactive run interactively 12b,binary* (historical option -- no-op) 133,3way allow fall back on 3way merging if needed 14q,quiet be quiet 15s,signoff add a Signed-off-by line to the commit message 16u,utf8 recode into utf8 (default) 17k,keep pass -k flag to git-mailinfo 18keep-non-patch pass -b flag to git-mailinfo 19keep-cr pass --keep-cr flag to git-mailsplit for mbox format 20no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr 21c,scissors strip everything before a scissors line 22whitespace= pass it through git-apply 23ignore-space-change pass it through git-apply 24ignore-whitespace pass it through git-apply 25directory= pass it through git-apply 26exclude= pass it through git-apply 27C= pass it through git-apply 28p= pass it through git-apply 29patch-format= format the patch(es) are in 30reject pass it through git-apply 31resolvemsg= override error message when patch failure occurs 32continue continue applying patches after resolving a conflict 33r,resolved synonyms for --continue 34skip skip the current patch 35abort restore the original branch and abort the patching operation. 36committer-date-is-author-date lie about committer date 37ignore-date use current timestamp for author date 38rerere-autoupdate update the index with reused conflict resolution if possible 39rebasing* (internal use for git-rebase)" 40 41. git-sh-setup 42. git-sh-i18n 43prefix=$(git rev-parse --show-prefix) 44set_reflog_action am 45require_work_tree 46cd_to_toplevel 47 48git var GIT_COMMITTER_IDENT >/dev/null || 49 die "$(gettext "You need to set your committer info first")" 50 51if git rev-parse --verify -q HEAD >/dev/null 52then 53 HAS_HEAD=yes 54else 55 HAS_HEAD= 56fi 57 58cmdline="git am" 59iftest''!="$interactive" 60then 61 cmdline="$cmdline-i" 62fi 63iftest''!="$threeway" 64then 65 cmdline="$cmdline-3" 66fi 67 68sq() { 69 git rev-parse --sq-quote"$@" 70} 71 72stop_here () { 73echo"$1">"$dotest/next" 74 git rev-parse --verify -q HEAD >"$dotest/abort-safety" 75exit1 76} 77 78safe_to_abort () { 79iftest -f"$dotest/dirtyindex" 80then 81return1 82fi 83 84if!test -s"$dotest/abort-safety" 85then 86return0 87fi 88 89 abort_safety=$(cat"$dotest/abort-safety") 90iftest"z$(git rev-parse --verify -q HEAD)"="z$abort_safety" 91then 92return0 93fi 94 gettextln "You seem to have moved HEAD since the last 'am' failure. 95Not rewinding to ORIG_HEAD">&2 96return1 97} 98 99stop_here_user_resolve () { 100if[-n"$resolvemsg"];then 101printf'%s\n'"$resolvemsg" 102 stop_here $1 103fi 104 eval_gettextln "When you have resolved this problem run\"\$cmdline--resolved\". 105If you would prefer to skip this patch, instead run\"\$cmdline--skip\". 106To restore the original branch and stop patching run\"\$cmdline--abort\"." 107 108 stop_here $1 109} 110 111go_next () { 112rm-f"$dotest/$msgnum""$dotest/msg""$dotest/msg-clean" \ 113"$dotest/patch""$dotest/info" 114echo"$next">"$dotest/next" 115 this=$next 116} 117 118cannot_fallback () { 119echo"$1" 120 gettextln "Cannot fall back to three-way merge." 121exit1 122} 123 124fall_back_3way () { 125 O_OBJECT=`cd "$GIT_OBJECT_DIRECTORY" && pwd` 126 127rm-fr"$dotest"/patch-merge-* 128mkdir"$dotest/patch-merge-tmp-dir" 129 130# First see if the patch records the index info that we can use. 131 git apply --build-fake-ancestor"$dotest/patch-merge-tmp-index" \ 132"$dotest/patch"&& 133 GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ 134 git write-tree >"$dotest/patch-merge-base+"|| 135 cannot_fallback "$(gettext "Repository lacks necessary blobs to fall back on 3-way merge.")" 136 137 say Using index info to reconstruct a base tree... 138if GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ 139 git apply --cached<"$dotest/patch" 140then 141mv"$dotest/patch-merge-base+""$dotest/patch-merge-base" 142mv"$dotest/patch-merge-tmp-index""$dotest/patch-merge-index" 143else 144 cannot_fallback "$(gettext "Did you hand edit your patch? 145It does not apply to blobs recorded in its index.")" 146fi 147 148test -f"$dotest/patch-merge-index"&& 149 his_tree=$(GIT_INDEX_FILE="$dotest/patch-merge-index" git write-tree) && 150 orig_tree=$(cat"$dotest/patch-merge-base") && 151rm-fr"$dotest"/patch-merge-* ||exit1 152 153 say "$(gettext "Falling back to patching base and 3-way merge...")" 154 155# This is not so wrong. Depending on which base we picked, 156# orig_tree may be wildly different from ours, but his_tree 157# has the same set of wildly different changes in parts the 158# patch did not touch, so recursive ends up canceling them, 159# saying that we reverted all those changes. 160 161eval GITHEAD_$his_tree='"$FIRSTLINE"' 162export GITHEAD_$his_tree 163iftest -n"$GIT_QUIET" 164then 165 GIT_MERGE_VERBOSITY=0&&export GIT_MERGE_VERBOSITY 166fi 167 git-merge-recursive $orig_tree-- HEAD $his_tree|| { 168 git rerere $allow_rerere_autoupdate 169echo Failed to merge in the changes. 170exit1 171} 172unset GITHEAD_$his_tree 173} 174 175clean_abort () { 176test$#=0||echo>&2"$@" 177rm-fr"$dotest" 178exit1 179} 180 181patch_format= 182 183check_patch_format () { 184# early return if patch_format was set from the command line 185iftest -n"$patch_format" 186then 187return0 188fi 189 190# we default to mbox format if input is from stdin and for 191# directories 192iftest$#=0||test"x$1"="x-"||test -d"$1" 193then 194 patch_format=mbox 195return0 196fi 197 198# otherwise, check the first few non-blank lines of the first 199# patch to try to detect its format 200{ 201# Start from first line containing non-whitespace 202 l1= 203whiletest -z"$l1" 204do 205read l1 206done 207read l2 208read l3 209case"$l1"in 210"From "* |"From: "*) 211 patch_format=mbox 212;; 213'# This series applies on GIT commit'*) 214 patch_format=stgit-series 215;; 216"# HG changeset patch") 217 patch_format=hg 218;; 219*) 220# if the second line is empty and the third is 221# a From, Author or Date entry, this is very 222# likely an StGIT patch 223case"$l2,$l3"in 224,"From: "* | ,"Author: "* | ,"Date: "*) 225 patch_format=stgit 226;; 227*) 228;; 229esac 230;; 231esac 232iftest -z"$patch_format"&& 233test -n"$l1"&& 234test -n"$l2"&& 235test -n"$l3" 236then 237# This begins with three non-empty lines. Is this a 238# piece of e-mail a-la RFC2822? Grab all the headers, 239# discarding the indented remainder of folded lines, 240# and see if it looks like that they all begin with the 241# header field names... 242tr-d'\015'<"$1"| 243sed-n -e'/^$/q'-e'/^[ ]/d'-e p | 244 sane_egrep -v'^[!-9;-~]+:'>/dev/null || 245 patch_format=mbox 246fi 247} <"$1"|| clean_abort 248} 249 250split_patches () { 251case"$patch_format"in 252 mbox) 253iftest -n"$rebasing"||test t ="$keepcr" 254then 255 keep_cr=--keep-cr 256else 257 keep_cr= 258fi 259 git mailsplit -d"$prec"-o"$dotest"-b$keep_cr--"$@">"$dotest/last"|| 260 clean_abort 261;; 262 stgit-series) 263iftest$#-ne1 264then 265 clean_abort "$(gettext "Only one StGIT patch series can be applied at once")" 266fi 267 series_dir=`dirname "$1"` 268 series_file="$1" 269shift 270{ 271set x 272whileread filename 273do 274set"$@""$series_dir/$filename" 275done 276# remove the safety x 277shift 278# remove the arg coming from the first-line comment 279shift 280} <"$series_file"|| clean_abort 281# set the patch format appropriately 282 patch_format=stgit 283# now handle the actual StGIT patches 284 split_patches "$@" 285;; 286 stgit) 287 this=0 288for stgit in"$@" 289do 290 this=`expr "$this" + 1` 291 msgnum=`printf "%0${prec}d"$this` 292# Perl version of StGIT parse_patch. The first nonemptyline 293# not starting with Author, From or Date is the 294# subject, and the body starts with the next nonempty 295# line not starting with Author, From or Date 296 perl -ne'BEGIN {$subject= 0 } 297 if ($subject> 1) { print ; } 298 elsif (/^\s+$/) { next ; } 299 elsif (/^Author:/) { s/Author/From/ ; print ;} 300 elsif (/^(From|Date)/) { print ; } 301 elsif ($subject) { 302$subject= 2 ; 303 print "\n" ; 304 print ; 305 } else { 306 print "Subject: ",$_; 307$subject= 1; 308 } 309 '<"$stgit">"$dotest/$msgnum"|| clean_abort 310done 311echo"$this">"$dotest/last" 312 this= 313 msgnum= 314;; 315 hg) 316 this=0 317for hg in"$@" 318do 319 this=$(($this+1)) 320 msgnum=$(printf"%0${prec}d"$this) 321# hg stores changeset metadata in #-commented lines preceding 322# the commit message and diff(s). The only metadata we care about 323# are the User and Date (Node ID and Parent are hashes which are 324# only relevant to the hg repository and thus not useful to us) 325# Since we cannot guarantee that the commit message is in 326# git-friendly format, we put no Subject: line and just consume 327# all of the message as the body 328 perl -M'POSIX qw(strftime)'-ne'BEGIN {$subject= 0 } 329 if ($subject) { print ; } 330 elsif (/^\# User /) { s/\# User/From:/ ; print ; } 331 elsif (/^\# Date /) { 332 my ($hashsign,$str,$time,$tz) = split ; 333$tz= sprintf "%+05d", (0-$tz)/36; 334 print "Date: " . 335 strftime("%a, %d %b %Y %H:%M:%S ", 336 localtime($time)) 337 . "$tz\n"; 338 } elsif (/^\# /) { next ; } 339 else { 340 print "\n",$_; 341$subject= 1; 342 } 343 '<"$hg">"$dotest/$msgnum"|| clean_abort 344done 345echo"$this">"$dotest/last" 346 this= 347 msgnum= 348;; 349*) 350iftest -n"$patch_format" 351then 352 clean_abort "$(eval_gettext "Patch format \$patch_format is not supported.")" 353else 354 clean_abort "$(gettext "Patch format detection failed.")" 355fi 356;; 357esac 358} 359 360prec=4 361dotest="$GIT_DIR/rebase-apply" 362sign= utf8=t keep= keepcr= skip= interactive= resolved= rebasing= abort= 363resolvemsg= resume= scissors= no_inbody_headers= 364git_apply_opt= 365committer_date_is_author_date= 366ignore_date= 367allow_rerere_autoupdate= 368 369iftest"$(git config --bool --get am.keepcr)"= true 370then 371 keepcr=t 372fi 373 374whiletest$#!=0 375do 376case"$1"in 377-i|--interactive) 378 interactive=t ;; 379-b|--binary) 380: ;; 381-3|--3way) 382 threeway=t ;; 383-s|--signoff) 384 sign=t ;; 385-u|--utf8) 386 utf8=t ;;# this is now default 387--no-utf8) 388 utf8= ;; 389-k|--keep) 390 keep=t ;; 391--keep-non-patch) 392 keep=b ;; 393-c|--scissors) 394 scissors=t ;; 395--no-scissors) 396 scissors=f ;; 397-r|--resolved|--continue) 398 resolved=t ;; 399--skip) 400 skip=t ;; 401--abort) 402 abort=t ;; 403--rebasing) 404 rebasing=t threeway=t keep=t scissors=f no_inbody_headers=t ;; 405-d|--dotest) 406 die "$(gettext "-d option is no longer supported. Do not use.")" 407;; 408--resolvemsg) 409shift; resolvemsg=$1;; 410--whitespace|--directory|--exclude) 411 git_apply_opt="$git_apply_opt$(sq "$1=$2")";shift;; 412-C|-p) 413 git_apply_opt="$git_apply_opt$(sq "$1$2")";shift;; 414--patch-format) 415shift; patch_format="$1";; 416--reject|--ignore-whitespace|--ignore-space-change) 417 git_apply_opt="$git_apply_opt$1";; 418--committer-date-is-author-date) 419 committer_date_is_author_date=t ;; 420--ignore-date) 421 ignore_date=t ;; 422--rerere-autoupdate|--no-rerere-autoupdate) 423 allow_rerere_autoupdate="$1";; 424-q|--quiet) 425 GIT_QUIET=t ;; 426--keep-cr) 427 keepcr=t ;; 428--no-keep-cr) 429 keepcr=f ;; 430--) 431shift;break;; 432*) 433 usage ;; 434esac 435shift 436done 437 438# If the dotest directory exists, but we have finished applying all the 439# patches in them, clear it out. 440iftest -d"$dotest"&& 441 last=$(cat"$dotest/last") && 442 next=$(cat"$dotest/next") && 443test$#!=0&& 444test"$next"-gt"$last" 445then 446rm-fr"$dotest" 447fi 448 449iftest -d"$dotest" 450then 451case"$#,$skip$resolved$abort"in 4520,*t*) 453# Explicit resume command and we do not have file, so 454# we are happy. 455: ;; 4560,) 457# No file input but without resume parameters; catch 458# user error to feed us a patch from standard input 459# when there is already $dotest. This is somewhat 460# unreliable -- stdin could be /dev/null for example 461# and the caller did not intend to feed us a patch but 462# wanted to continue unattended. 463test -t0 464;; 465*) 466 false 467;; 468esac|| 469 die "$(eval_gettext "previous rebase directory \$dotest still exists but mbox given.")" 470 resume=yes 471 472case"$skip,$abort"in 473 t,t) 474 die "$(gettext "Please make up your mind. --skip or --abort?")" 475;; 476 t,) 477 git rerere clear 478 git read-tree --reset -u HEAD HEAD 479 orig_head=$(cat"$GIT_DIR/ORIG_HEAD") 480 git reset HEAD 481 git update-ref ORIG_HEAD $orig_head 482;; 483,t) 484iftest -f"$dotest/rebasing" 485then 486exec git rebase --abort 487fi 488 git rerere clear 489if safe_to_abort 490then 491 git read-tree --reset -u HEAD ORIG_HEAD 492 git reset ORIG_HEAD 493fi 494rm-fr"$dotest" 495exit;; 496esac 497rm-f"$dotest/dirtyindex" 498else 499# Make sure we are not given --skip, --resolved, nor --abort 500test"$skip$resolved$abort"=""|| 501 die "$(gettext "Resolve operation not in progress, we are not resuming.")" 502 503# Start afresh. 504mkdir-p"$dotest"||exit 505 506iftest -n"$prefix"&&test$#!=0 507then 508 first=t 509for arg 510do 511test -n"$first"&& { 512set x 513 first= 514} 515if is_absolute_path "$arg" 516then 517set"$@""$arg" 518else 519set"$@""$prefix$arg" 520fi 521done 522shift 523fi 524 525 check_patch_format "$@" 526 527 split_patches "$@" 528 529# -i can and must be given when resuming; everything 530# else is kept 531echo"$git_apply_opt">"$dotest/apply-opt" 532echo"$threeway">"$dotest/threeway" 533echo"$sign">"$dotest/sign" 534echo"$utf8">"$dotest/utf8" 535echo"$keep">"$dotest/keep" 536echo"$scissors">"$dotest/scissors" 537echo"$no_inbody_headers">"$dotest/no_inbody_headers" 538echo"$GIT_QUIET">"$dotest/quiet" 539echo1>"$dotest/next" 540iftest -n"$rebasing" 541then 542: >"$dotest/rebasing" 543else 544: >"$dotest/applying" 545iftest -n"$HAS_HEAD" 546then 547 git update-ref ORIG_HEAD HEAD 548else 549 git update-ref -d ORIG_HEAD >/dev/null 2>&1 550fi 551fi 552fi 553 554git update-index -q --refresh 555 556case"$resolved"in 557'') 558case"$HAS_HEAD"in 559'') 560 files=$(git ls-files) ;; 561 ?*) 562 files=$(git diff-index --cached --name-only HEAD --) ;; 563esac||exit 564iftest"$files" 565then 566test -n"$HAS_HEAD"&& : >"$dotest/dirtyindex" 567 die "$(eval_gettext "Dirty index: cannot apply patches (dirty: \$files)")" 568fi 569esac 570 571# Now, decide what command line options we will give to the git 572# commands we invoke, based on the result of parsing command line 573# options and previous invocation state stored in $dotest/ files. 574 575iftest"$(cat "$dotest/utf8")"= t 576then 577 utf8=-u 578else 579 utf8=-n 580fi 581keep=$(cat"$dotest/keep") 582case"$keep"in 583t) 584 keep=-k ;; 585b) 586 keep=-b ;; 587*) 588 keep= ;; 589esac 590case"$(cat "$dotest/scissors")"in 591t) 592 scissors=--scissors ;; 593f) 594 scissors=--no-scissors ;; 595esac 596iftest"$(cat "$dotest/no_inbody_headers")"= t 597then 598 no_inbody_headers=--no-inbody-headers 599else 600 no_inbody_headers= 601fi 602iftest"$(cat "$dotest/quiet")"= t 603then 604 GIT_QUIET=t 605fi 606iftest"$(cat "$dotest/threeway")"= t 607then 608 threeway=t 609fi 610git_apply_opt=$(cat"$dotest/apply-opt") 611iftest"$(cat "$dotest/sign")"= t 612then 613 SIGNOFF=`git var GIT_COMMITTER_IDENT | sed -e ' 614 s/>.*/>/ 615 s/^/Signed-off-by: /' 616 ` 617else 618 SIGNOFF= 619fi 620 621last=`cat "$dotest/last"` 622this=`cat "$dotest/next"` 623iftest"$skip"= t 624then 625 this=`expr "$this" + 1` 626 resume= 627fi 628 629whiletest"$this"-le"$last" 630do 631 msgnum=`printf "%0${prec}d"$this` 632 next=`expr "$this" + 1` 633test -f"$dotest/$msgnum"|| { 634 resume= 635 go_next 636continue 637} 638 639# If we are not resuming, parse and extract the patch information 640# into separate files: 641# - info records the authorship and title 642# - msg is the rest of commit log message 643# - patch is the patch body. 644# 645# When we are resuming, these files are either already prepared 646# by the user, or the user can tell us to do so by --resolved flag. 647case"$resume"in 648'') 649 git mailinfo $keep $no_inbody_headers $scissors $utf8"$dotest/msg""$dotest/patch" \ 650<"$dotest/$msgnum">"$dotest/info"|| 651 stop_here $this 652 653# skip pine's internal folder data 654 sane_grep '^Author: Mail System Internal Data$' \ 655<"$dotest"/info >/dev/null && 656 go_next &&continue 657 658test -s"$dotest/patch"|| { 659 eval_gettextln "Patch is empty. Was it split wrong? 660If you would prefer to skip this patch, instead run\"\$cmdline--skip\". 661To restore the original branch and stop patching run\"\$cmdline--abort\"." 662 stop_here $this 663} 664rm-f"$dotest/original-commit""$dotest/author-script" 665iftest -f"$dotest/rebasing"&& 666 commit=$(sed-e's/^From \([0-9a-f]*\) .*/\1/' \ 667-e q "$dotest/$msgnum") && 668test"$(git cat-file -t "$commit")"= commit 669then 670 git cat-file commit "$commit"| 671sed-e'1,/^$/d'>"$dotest/msg-clean" 672echo"$commit">"$dotest/original-commit" 673 get_author_ident_from_commit "$commit">"$dotest/author-script" 674else 675{ 676sed-n'/^Subject/ s/Subject: //p'"$dotest/info" 677echo 678cat"$dotest/msg" 679} | 680 git stripspace >"$dotest/msg-clean" 681fi 682;; 683esac 684 685iftest -f"$dotest/author-script" 686then 687eval $(cat"$dotest/author-script") 688else 689 GIT_AUTHOR_NAME="$(sed -n '/^Author/ s/Author: //p' "$dotest/info")" 690 GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' "$dotest/info")" 691 GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' "$dotest/info")" 692fi 693 694iftest -z"$GIT_AUTHOR_EMAIL" 695then 696 gettextln "Patch does not have a valid e-mail address." 697 stop_here $this 698fi 699 700export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE 701 702case"$resume"in 703'') 704iftest''!="$SIGNOFF" 705then 706 LAST_SIGNED_OFF_BY=` 707 sed -ne '/^Signed-off-by: /p' \ 708 "$dotest/msg-clean" | 709 sed -ne '$p' 710 ` 711 ADD_SIGNOFF=` 712 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || { 713 test '' = "$LAST_SIGNED_OFF_BY" && echo 714 echo "$SIGNOFF" 715 }` 716else 717 ADD_SIGNOFF= 718fi 719{ 720iftest -s"$dotest/msg-clean" 721then 722cat"$dotest/msg-clean" 723fi 724iftest''!="$ADD_SIGNOFF" 725then 726echo"$ADD_SIGNOFF" 727fi 728} >"$dotest/final-commit" 729;; 730*) 731case"$resolved$interactive"in 732 tt) 733# This is used only for interactive view option. 734 git diff-index -p --cached HEAD -->"$dotest/patch" 735;; 736esac 737esac 738 739 resume= 740iftest"$interactive"= t 741then 742test -t0|| 743 die "$(gettext "cannot be interactive without stdin connected to a terminal.")" 744 action=again 745whiletest"$action"= again 746do 747 gettextln "Commit Body is:" 748echo"--------------------------" 749cat"$dotest/final-commit" 750echo"--------------------------" 751# TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a] 752# in your translation. The program will only accept English 753# input at this point. 754gettext"Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all " 755read reply 756case"$reply"in 757[yY]*) action=yes;; 758[aA]*) action=yes interactive= ;; 759[nN]*) action=skip ;; 760[eE]*) git_editor "$dotest/final-commit" 761 action=again ;; 762[vV]*) action=again 763 git_pager "$dotest/patch";; 764*) action=again ;; 765esac 766done 767else 768 action=yes 769fi 770 771iftest -f"$dotest/final-commit" 772then 773 FIRSTLINE=$(sed1q "$dotest/final-commit") 774else 775 FIRSTLINE="" 776fi 777 778iftest$action= skip 779then 780 go_next 781continue 782fi 783 784iftest -x"$GIT_DIR"/hooks/applypatch-msg 785then 786"$GIT_DIR"/hooks/applypatch-msg "$dotest/final-commit"|| 787 stop_here $this 788fi 789 790 say "$(eval_gettext "Applying: \$FIRSTLINE")" 791 792case"$resolved"in 793'') 794# When we are allowed to fall back to 3-way later, don't give 795# false errors during the initial attempt. 796 squelch= 797iftest"$threeway"= t 798then 799 squelch='>/dev/null 2>&1 ' 800fi 801eval"git apply$squelch$git_apply_opt"' --index "$dotest/patch"' 802 apply_status=$? 803;; 804 t) 805# Resolved means the user did all the hard work, and 806# we do not have to do any patch application. Just 807# trust what the user has in the index file and the 808# working tree. 809 resolved= 810 git diff-index --quiet --cached HEAD --&& { 811 gettextln "No changes - did you forget to use 'git add'? 812If there is nothing left to stage, chances are that something else 813already introduced the same changes; you might want to skip this patch." 814 stop_here_user_resolve $this 815} 816 unmerged=$(git ls-files -u) 817iftest -n"$unmerged" 818then 819 gettextln "You still have unmerged paths in your index 820did you forget to use 'git add'?" 821 stop_here_user_resolve $this 822fi 823 apply_status=0 824 git rerere 825;; 826esac 827 828iftest$apply_status!=0&&test"$threeway"= t 829then 830if(fall_back_3way) 831then 832# Applying the patch to an earlier tree and merging the 833# result may have produced the same tree as ours. 834 git diff-index --quiet --cached HEAD --&& { 835 say "$(gettext "No changes -- Patch already applied.")" 836 go_next 837continue 838} 839# clear apply_status -- we have successfully merged. 840 apply_status=0 841fi 842fi 843iftest$apply_status!=0 844then 845 eval_gettextln 'Patch failed at$msgnum$FIRSTLINE' 846 stop_here_user_resolve $this 847fi 848 849iftest -x"$GIT_DIR"/hooks/pre-applypatch 850then 851"$GIT_DIR"/hooks/pre-applypatch || stop_here $this 852fi 853 854 tree=$(git write-tree) && 855 commit=$( 856iftest -n"$ignore_date" 857then 858 GIT_AUTHOR_DATE= 859fi 860 parent=$(git rev-parse --verify -q HEAD) || 861 say >&2"$(gettext "applying to an empty history")" 862 863iftest -n"$committer_date_is_author_date" 864then 865 GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE" 866export GIT_COMMITTER_DATE 867fi&& 868 git commit-tree $tree ${parent:+-p} $parent<"$dotest/final-commit" 869) && 870 git update-ref -m"$GIT_REFLOG_ACTION:$FIRSTLINE" HEAD $commit $parent|| 871 stop_here $this 872 873iftest -f"$dotest/original-commit";then 874echo"$(cat "$dotest/original-commit")$commit">>"$dotest/rewritten" 875fi 876 877iftest -x"$GIT_DIR"/hooks/post-applypatch 878then 879"$GIT_DIR"/hooks/post-applypatch 880fi 881 882 go_next 883done 884 885iftest -s"$dotest"/rewritten;then 886 git notes copy --for-rewrite=rebase <"$dotest"/rewritten 887iftest -x"$GIT_DIR"/hooks/post-rewrite;then 888"$GIT_DIR"/hooks/post-rewrite rebase <"$dotest"/rewritten 889fi 890fi 891 892rm-fr"$dotest" 893git gc --auto