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