3 # Copyright (c) 2005, 2006 Junio C Hamano
8 git am [options] [<mbox>|<Maildir>...]
9 git am [options] (--resolved | --skip | --abort)
11 i,interactive run interactively
12 b,binary* (historical option -- no-op)
13 3,3way allow fall back on 3way merging if needed
15 s,signoff add a Signed-off-by line to the commit message
16 u,utf8 recode into utf8 (default)
17 k,keep pass -k flag to git-mailinfo
18 keep-cr pass --keep-cr flag to git-mailsplit for mbox format
19 no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr
20 c,scissors strip everything before a scissors line
21 whitespace= pass it through git-apply
22 ignore-space-change pass it through git-apply
23 ignore-whitespace pass it through git-apply
24 directory= pass it through git-apply
25 C= pass it through git-apply
26 p= pass it through git-apply
27 patch-format= format the patch(es) are in
28 reject pass it through git-apply
29 resolvemsg= override error message when patch failure occurs
30 continue continue applying patches after resolving a conflict
31 r,resolved synonyms for --continue
32 skip skip the current patch
33 abort restore the original branch and abort the patching operation.
34 committer-date-is-author-date lie about committer date
35 ignore-date use current timestamp for author date
36 rerere-autoupdate update the index with reused conflict resolution if possible
37 rebasing* (internal use for git-rebase)"
40 prefix
=$
(git rev-parse
--show-prefix)
45 git var GIT_COMMITTER_IDENT
>/dev
/null ||
46 die
"You need to set your committer info first"
48 if git rev-parse
--verify -q HEAD
>/dev
/null
56 if test '' != "$interactive"
60 if test '' != "$threeway"
66 git rev-parse
--sq-quote "$@"
70 echo "$1" >"$dotest/next"
74 stop_here_user_resolve
() {
75 if [ -n "$resolvemsg" ]; then
76 printf '%s\n' "$resolvemsg"
79 echo "When you have resolved this problem run \"$cmdline --resolved\"."
80 echo "If you would prefer to skip this patch, instead run \"$cmdline --skip\"."
81 echo "To restore the original branch and stop patching run \"$cmdline --abort\"."
87 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
88 "$dotest/patch" "$dotest/info"
89 echo "$next" >"$dotest/next"
95 echo "Cannot fall back to three-way merge."
100 O_OBJECT
=`cd "$GIT_OBJECT_DIRECTORY" && pwd`
102 rm -fr "$dotest"/patch-merge-
*
103 mkdir
"$dotest/patch-merge-tmp-dir"
105 # First see if the patch records the index info that we can use.
106 git apply
--build-fake-ancestor "$dotest/patch-merge-tmp-index" \
108 GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
109 git write-tree
>"$dotest/patch-merge-base+" ||
110 cannot_fallback
"Repository lacks necessary blobs to fall back on 3-way merge."
112 say Using index info to reconstruct a base tree...
113 if GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
114 git apply
--cached <"$dotest/patch"
116 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
117 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
119 cannot_fallback
"Did you hand edit your patch?
120 It does not apply to blobs recorded in its index."
123 test -f "$dotest/patch-merge-index" &&
124 his_tree
=$
(GIT_INDEX_FILE
="$dotest/patch-merge-index" git write-tree
) &&
125 orig_tree
=$
(cat "$dotest/patch-merge-base") &&
126 rm -fr "$dotest"/patch-merge-
* ||
exit 1
128 say Falling back to patching base and
3-way merge...
130 # This is not so wrong. Depending on which base we picked,
131 # orig_tree may be wildly different from ours, but his_tree
132 # has the same set of wildly different changes in parts the
133 # patch did not touch, so recursive ends up canceling them,
134 # saying that we reverted all those changes.
136 eval GITHEAD_
$his_tree='"$FIRSTLINE"'
137 export GITHEAD_
$his_tree
138 if test -n "$GIT_QUIET"
140 export GIT_MERGE_VERBOSITY
=0
142 git-merge-recursive
$orig_tree -- HEAD
$his_tree ||
{
143 git rerere
$allow_rerere_autoupdate
144 echo Failed to merge
in the changes.
147 unset GITHEAD_
$his_tree
151 test $# = 0 ||
echo >&2 "$@"
158 check_patch_format
() {
159 # early return if patch_format was set from the command line
160 if test -n "$patch_format"
165 # we default to mbox format if input is from stdin and for
167 if test $# = 0 ||
test "x$1" = "x-" ||
test -d "$1"
173 # otherwise, check the first few lines of the first patch to try
174 # to detect its format
180 "From "* |
"From: "*)
183 '# This series applies on GIT commit'*)
184 patch_format
=stgit-series
186 "# HG changeset patch")
190 # if the second line is empty and the third is
191 # a From, Author or Date entry, this is very
192 # likely an StGIT patch
194 ,"From: "* |
,"Author: "* |
,"Date: "*)
202 if test -z "$patch_format" &&
207 # This begins with three non-empty lines. Is this a
208 # piece of e-mail a-la RFC2822? Grab all the headers,
209 # discarding the indented remainder of folded lines,
210 # and see if it looks like that they all begin with the
211 # header field names...
213 sed -n -e '/^$/q' -e '/^[ ]/d' -e p |
214 sane_egrep
-v '^[!-9;-~]+:' >/dev
/null ||
217 } < "$1" || clean_abort
221 case "$patch_format" in
223 if test -n "$rebasing" ||
test t
= "$keepcr"
229 git mailsplit
-d"$prec" -o"$dotest" -b $keep_cr -- "$@" > "$dotest/last" ||
235 clean_abort
"Only one StGIT patch series can be applied at once"
237 series_dir
=`dirname "$1"`
244 set "$@" "$series_dir/$filename"
246 # remove the safety x
248 # remove the arg coming from the first-line comment
250 } < "$series_file" || clean_abort
251 # set the patch format appropriately
253 # now handle the actual StGIT patches
260 this
=`expr "$this" + 1`
261 msgnum
=`printf "%0${prec}d" $this`
262 # Perl version of StGIT parse_patch. The first nonemptyline
263 # not starting with Author, From or Date is the
264 # subject, and the body starts with the next nonempty
265 # line not starting with Author, From or Date
266 perl
-ne 'BEGIN { $subject = 0 }
267 if ($subject > 1) { print ; }
268 elsif (/^\s+$/) { next ; }
269 elsif (/^Author:/) { print s/Author/From/ ; }
270 elsif (/^(From|Date)/) { print ; }
276 print "Subject: ", $_ ;
279 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
281 echo "$this" > "$dotest/last"
286 if test -n "$parse_patch" ; then
287 clean_abort
"Patch format $patch_format is not supported."
289 clean_abort
"Patch format detection failed."
296 dotest
="$GIT_DIR/rebase-apply"
297 sign
= utf8
=t keep
= keepcr
= skip
= interactive
= resolved
= rebasing
= abort
=
298 resolvemsg
= resume
= scissors
= no_inbody_headers
=
300 committer_date_is_author_date
=
302 allow_rerere_autoupdate
=
304 if test "$(git config --bool --get am.keepcr)" = true
321 utf8
=t
;; # this is now default
330 -r|
--resolved|
--continue)
337 rebasing
=t threeway
=t keep
=t scissors
=f no_inbody_headers
=t
;;
339 die
"-d option is no longer supported. Do not use."
342 shift; resolvemsg
=$1 ;;
343 --whitespace|
--directory)
344 git_apply_opt
="$git_apply_opt $(sq "$1=$2")"; shift ;;
346 git_apply_opt
="$git_apply_opt $(sq "$1$2")"; shift ;;
348 shift ; patch_format
="$1" ;;
349 --reject|
--ignore-whitespace|
--ignore-space-change)
350 git_apply_opt
="$git_apply_opt $1" ;;
351 --committer-date-is-author-date)
352 committer_date_is_author_date
=t
;;
355 --rerere-autoupdate|
--no-rerere-autoupdate)
356 allow_rerere_autoupdate
="$1" ;;
371 # If the dotest directory exists, but we have finished applying all the
372 # patches in them, clear it out.
373 if test -d "$dotest" &&
374 last
=$
(cat "$dotest/last") &&
375 next
=$
(cat "$dotest/next") &&
377 test "$next" -gt "$last"
384 case "$#,$skip$resolved$abort" in
386 # Explicit resume command and we do not have file, so
390 # No file input but without resume parameters; catch
391 # user error to feed us a patch from standard input
392 # when there is already $dotest. This is somewhat
393 # unreliable -- stdin could be /dev/null for example
394 # and the caller did not intend to feed us a patch but
395 # wanted to continue unattended.
402 die
"previous rebase directory $dotest still exists but mbox given."
405 case "$skip,$abort" in
407 die
"Please make up your mind. --skip or --abort?"
411 git read-tree
--reset -u HEAD HEAD
412 orig_head
=$
(cat "$GIT_DIR/ORIG_HEAD")
414 git update-ref ORIG_HEAD
$orig_head
417 if test -f "$dotest/rebasing"
419 exec git rebase
--abort
422 test -f "$dotest/dirtyindex" ||
{
423 git read-tree
--reset -u HEAD ORIG_HEAD
429 rm -f "$dotest/dirtyindex"
431 # Make sure we are not given --skip, --resolved, nor --abort
432 test "$skip$resolved$abort" = "" ||
433 die
"Resolve operation not in progress, we are not resuming."
436 mkdir
-p "$dotest" ||
exit
438 if test -n "$prefix" && test $# != 0
443 test -n "$first" && {
451 set "$@" "$prefix$arg" ;;
457 check_patch_format
"$@"
461 # -i can and must be given when resuming; everything
463 echo " $git_apply_opt" >"$dotest/apply-opt"
464 echo "$threeway" >"$dotest/threeway"
465 echo "$sign" >"$dotest/sign"
466 echo "$utf8" >"$dotest/utf8"
467 echo "$keep" >"$dotest/keep"
468 echo "$keepcr" >"$dotest/keepcr"
469 echo "$scissors" >"$dotest/scissors"
470 echo "$no_inbody_headers" >"$dotest/no_inbody_headers"
471 echo "$GIT_QUIET" >"$dotest/quiet"
472 echo 1 >"$dotest/next"
473 if test -n "$rebasing"
475 : >"$dotest/rebasing"
477 : >"$dotest/applying"
478 if test -n "$HAS_HEAD"
480 git update-ref ORIG_HEAD HEAD
482 git update-ref
-d ORIG_HEAD
>/dev
/null
2>&1
491 files
=$
(git ls-files
) ;;
493 files
=$
(git diff-index
--cached --name-only HEAD
--) ;;
497 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
498 die
"Dirty index: cannot apply patches (dirty: $files)"
502 if test "$(cat "$dotest/utf8
")" = t
508 if test "$(cat "$dotest/keep
")" = t
512 case "$(cat "$dotest/keepcr
")" in
516 keepcr
=--no-keep-cr ;;
518 case "$(cat "$dotest/scissors
")" in
520 scissors
=--scissors ;;
522 scissors
=--no-scissors ;;
524 if test "$(cat "$dotest/no_inbody_headers
")" = t
526 no_inbody_headers
=--no-inbody-headers
530 if test "$(cat "$dotest/quiet
")" = t
534 if test "$(cat "$dotest/threeway
")" = t
538 git_apply_opt
=$
(cat "$dotest/apply-opt")
539 if test "$(cat "$dotest/sign
")" = t
541 SIGNOFF
=`git var GIT_COMMITTER_IDENT | sed -e '
543 s/^/Signed-off-by: /'
549 last
=`cat "$dotest/last"`
550 this
=`cat "$dotest/next"`
553 this
=`expr "$this" + 1`
557 if test "$this" -gt "$last"
564 while test "$this" -le "$last"
566 msgnum
=`printf "%0${prec}d" $this`
567 next
=`expr "$this" + 1`
568 test -f "$dotest/$msgnum" ||
{
574 # If we are not resuming, parse and extract the patch information
575 # into separate files:
576 # - info records the authorship and title
577 # - msg is the rest of commit log message
578 # - patch is the patch body.
580 # When we are resuming, these files are either already prepared
581 # by the user, or the user can tell us to do so by --resolved flag.
584 git mailinfo
$keep $no_inbody_headers $scissors $utf8 "$dotest/msg" "$dotest/patch" \
585 <"$dotest/$msgnum" >"$dotest/info" ||
588 # skip pine's internal folder data
589 sane_grep
'^Author: Mail System Internal Data$' \
590 <"$dotest"/info
>/dev
/null
&&
593 test -s "$dotest/patch" ||
{
594 echo "Patch is empty. Was it split wrong?"
595 echo "If you would prefer to skip this patch, instead run \"$cmdline --skip\"."
596 echo "To restore the original branch and stop patching run \"$cmdline --abort\"."
599 rm -f "$dotest/original-commit" "$dotest/author-script"
600 if test -f "$dotest/rebasing" &&
601 commit
=$
(sed -e 's/^From \([0-9a-f]*\) .*/\1/' \
602 -e q
"$dotest/$msgnum") &&
603 test "$(git cat-file -t "$commit")" = commit
605 git cat-file commit
"$commit" |
606 sed -e '1,/^$/d' >"$dotest/msg-clean"
607 echo "$commit" > "$dotest/original-commit"
608 get_author_ident_from_commit
"$commit" > "$dotest/author-script"
611 sed -n '/^Subject/ s/Subject: //p' "$dotest/info"
615 git stripspace
> "$dotest/msg-clean"
620 if test -f "$dotest/author-script"
622 eval $
(cat "$dotest/author-script")
624 GIT_AUTHOR_NAME
="$(sed -n '/^Author/ s/Author: //p' "$dotest/info
")"
625 GIT_AUTHOR_EMAIL
="$(sed -n '/^Email/ s/Email: //p' "$dotest/info
")"
626 GIT_AUTHOR_DATE
="$(sed -n '/^Date/ s/Date: //p' "$dotest/info
")"
629 if test -z "$GIT_AUTHOR_EMAIL"
631 echo "Patch does not have a valid e-mail address."
635 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
639 if test '' != "$SIGNOFF"
642 sed -ne '/^Signed-off-by: /p' \
643 "$dotest/msg-clean" |
647 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || {
648 test '' = "$LAST_SIGNED_OFF_BY" && echo
655 if test -s "$dotest/msg-clean"
657 cat "$dotest/msg-clean"
659 if test '' != "$ADD_SIGNOFF"
663 } >"$dotest/final-commit"
666 case "$resolved$interactive" in
668 # This is used only for interactive view option.
669 git diff-index
-p --cached HEAD
-- >"$dotest/patch"
675 if test "$interactive" = t
678 die
"cannot be interactive without stdin connected to a terminal."
680 while test "$action" = again
682 echo "Commit Body is:"
683 echo "--------------------------"
684 cat "$dotest/final-commit"
685 echo "--------------------------"
686 printf "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
690 [aA
]*) action
=yes interactive
= ;;
691 [nN
]*) action
=skip
;;
692 [eE
]*) git_editor
"$dotest/final-commit"
695 git_pager
"$dotest/patch" ;;
703 if test -f "$dotest/final-commit"
705 FIRSTLINE
=$
(sed 1q
"$dotest/final-commit")
710 if test $action = skip
716 if test -x "$GIT_DIR"/hooks
/applypatch-msg
718 "$GIT_DIR"/hooks
/applypatch-msg
"$dotest/final-commit" ||
722 say
"Applying: $FIRSTLINE"
726 # When we are allowed to fall back to 3-way later, don't give
727 # false errors during the initial attempt.
729 if test "$threeway" = t
731 squelch
='>/dev/null 2>&1 '
733 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
737 # Resolved means the user did all the hard work, and
738 # we do not have to do any patch application. Just
739 # trust what the user has in the index file and the
742 git diff-index
--quiet --cached HEAD
-- && {
743 echo "No changes - did you forget to use 'git add'?"
744 echo "If there is nothing left to stage, chances are that something else"
745 echo "already introduced the same changes; you might want to skip this patch."
746 stop_here_user_resolve
$this
748 unmerged
=$
(git ls-files
-u)
749 if test -n "$unmerged"
751 echo "You still have unmerged paths in your index"
752 echo "did you forget to use 'git add'?"
753 stop_here_user_resolve
$this
760 if test $apply_status != 0 && test "$threeway" = t
764 # Applying the patch to an earlier tree and merging the
765 # result may have produced the same tree as ours.
766 git diff-index
--quiet --cached HEAD
-- && {
767 say No changes
-- Patch already applied.
771 # clear apply_status -- we have successfully merged.
775 if test $apply_status != 0
777 printf 'Patch failed at %s %s\n' "$msgnum" "$FIRSTLINE"
778 stop_here_user_resolve
$this
781 if test -x "$GIT_DIR"/hooks
/pre-applypatch
783 "$GIT_DIR"/hooks
/pre-applypatch || stop_here
$this
786 tree
=$
(git write-tree
) &&
788 if test -n "$ignore_date"
792 parent
=$
(git rev-parse
--verify -q HEAD
) ||
793 say
>&2 "applying to an empty history"
795 if test -n "$committer_date_is_author_date"
797 GIT_COMMITTER_DATE
="$GIT_AUTHOR_DATE"
798 export GIT_COMMITTER_DATE
800 git commit-tree
$tree ${parent:+-p} $parent <"$dotest/final-commit"
802 git update-ref
-m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD
$commit $parent ||
805 if test -f "$dotest/original-commit"; then
806 echo "$(cat "$dotest/original-commit
") $commit" >> "$dotest/rewritten"
809 if test -x "$GIT_DIR"/hooks
/post-applypatch
811 "$GIT_DIR"/hooks
/post-applypatch
817 if test -s "$dotest"/rewritten
; then
818 git notes copy
--for-rewrite=rebase
< "$dotest"/rewritten
819 if test -x "$GIT_DIR"/hooks
/post-rewrite
; then
820 "$GIT_DIR"/hooks
/post-rewrite rebase
< "$dotest"/rewritten