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