3 # Copyright (c) 2005, 2006 Junio C Hamano
9 git am [options] [(<mbox>|<Maildir>)...]
10 git am [options] (--continue | --skip | --abort)
12 i,interactive run interactively
13 b,binary* (historical option -- no-op)
14 3,3way allow fall back on 3way merging if needed
16 s,signoff add a Signed-off-by line to the commit message
17 u,utf8 recode into utf8 (default)
18 k,keep pass -k flag to git-mailinfo
19 keep-non-patch pass -b flag to git-mailinfo
20 keep-cr pass --keep-cr flag to git-mailsplit for mbox format
21 no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr
22 c,scissors strip everything before a scissors line
23 whitespace= pass it through git-apply
24 ignore-space-change pass it through git-apply
25 ignore-whitespace pass it through git-apply
26 directory= pass it through git-apply
27 exclude= pass it through git-apply
28 include= pass it through git-apply
29 C= pass it through git-apply
30 p= pass it through git-apply
31 patch-format= format the patch(es) are in
32 reject pass it through git-apply
33 resolvemsg= override error message when patch failure occurs
34 continue continue applying patches after resolving a conflict
35 r,resolved synonyms for --continue
36 skip skip the current patch
37 abort restore the original branch and abort the patching operation.
38 committer-date-is-author-date lie about committer date
39 ignore-date use current timestamp for author date
40 rerere-autoupdate update the index with reused conflict resolution if possible
41 S,gpg-sign? GPG-sign commits
42 rebasing* (internal use for git-rebase)"
46 prefix
=$
(git rev-parse
--show-prefix)
51 git var GIT_COMMITTER_IDENT
>/dev
/null ||
52 die
"$(gettext "You need to
set your committer info first
")"
54 if git rev-parse
--verify -q HEAD
>/dev
/null
62 if test '' != "$interactive"
66 if test '' != "$threeway"
72 git rev-parse
--sq-quote "$@"
76 echo "$1" >"$dotest/next"
77 git rev-parse
--verify -q HEAD
>"$dotest/abort-safety"
82 if test -f "$dotest/dirtyindex"
87 if ! test -s "$dotest/abort-safety"
92 abort_safety
=$
(cat "$dotest/abort-safety")
93 if test "z$(git rev-parse --verify -q HEAD)" = "z$abort_safety"
97 gettextln
"You seem to have moved HEAD since the last 'am' failure.
98 Not rewinding to ORIG_HEAD" >&2
102 stop_here_user_resolve
() {
103 if [ -n "$resolvemsg" ]; then
104 printf '%s\n' "$resolvemsg"
107 eval_gettextln
"When you have resolved this problem, run \"\$cmdline --continue\".
108 If you prefer to skip this patch, run \"\$cmdline --skip\" instead.
109 To restore the original branch and stop patching, run \"\$cmdline --abort\"."
115 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
116 "$dotest/patch" "$dotest/info"
117 echo "$next" >"$dotest/next"
123 gettextln
"Cannot fall back to three-way merge."
128 O_OBJECT
=$
(cd "$GIT_OBJECT_DIRECTORY" && pwd)
130 rm -fr "$dotest"/patch-merge-
*
131 mkdir
"$dotest/patch-merge-tmp-dir"
133 # First see if the patch records the index info that we can use.
134 cmd
="git apply $git_apply_opt --build-fake-ancestor" &&
135 cmd
="$cmd "'"$dotest/patch-merge-tmp-index" "$dotest/patch"' &&
137 GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
138 git write-tree
>"$dotest/patch-merge-base+" ||
139 cannot_fallback
"$(gettext "Repository lacks necessary blobs to fall back on
3-way merge.
")"
141 say
"$(gettext "Using index info to reconstruct a base tree...
")"
143 cmd
='GIT_INDEX_FILE="$dotest/patch-merge-tmp-index"'
145 if test -z "$GIT_QUIET"
147 eval "$cmd git diff-index --cached --diff-filter=AM --name-status HEAD"
150 cmd
="$cmd git apply --cached $git_apply_opt"' <"$dotest/patch"'
153 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
154 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
156 cannot_fallback
"$(gettext "Did you hand edit your
patch?
157 It does not apply to blobs recorded
in its index.
")"
160 test -f "$dotest/patch-merge-index" &&
161 his_tree
=$
(GIT_INDEX_FILE
="$dotest/patch-merge-index" git write-tree
) &&
162 orig_tree
=$
(cat "$dotest/patch-merge-base") &&
163 rm -fr "$dotest"/patch-merge-
* ||
exit 1
165 say
"$(gettext "Falling back to patching base and
3-way merge...
")"
167 # This is not so wrong. Depending on which base we picked,
168 # orig_tree may be wildly different from ours, but his_tree
169 # has the same set of wildly different changes in parts the
170 # patch did not touch, so recursive ends up canceling them,
171 # saying that we reverted all those changes.
173 eval GITHEAD_
$his_tree='"$FIRSTLINE"'
174 export GITHEAD_
$his_tree
175 if test -n "$GIT_QUIET"
177 GIT_MERGE_VERBOSITY
=0 && export GIT_MERGE_VERBOSITY
179 git-merge-recursive
$orig_tree -- HEAD
$his_tree ||
{
180 git rerere
$allow_rerere_autoupdate
181 die
"$(gettext "Failed to merge
in the changes.
")"
183 unset GITHEAD_
$his_tree
187 test $# = 0 ||
echo >&2 "$@"
194 check_patch_format
() {
195 # early return if patch_format was set from the command line
196 if test -n "$patch_format"
201 # we default to mbox format if input is from stdin and for
203 if test $# = 0 ||
test "x$1" = "x-" ||
test -d "$1"
209 # otherwise, check the first few non-blank lines of the first
210 # patch to try to detect its format
212 # Start from first line containing non-whitespace
221 "From "* |
"From: "*)
224 '# This series applies on GIT commit'*)
225 patch_format
=stgit-series
227 "# HG changeset patch")
231 # if the second line is empty and the third is
232 # a From, Author or Date entry, this is very
233 # likely an StGIT patch
235 ,"From: "* |
,"Author: "* |
,"Date: "*)
243 if test -z "$patch_format" &&
248 # This begins with three non-empty lines. Is this a
249 # piece of e-mail a-la RFC2822? Grab all the headers,
250 # discarding the indented remainder of folded lines,
251 # and see if it looks like that they all begin with the
252 # header field names...
254 sed -n -e '/^$/q' -e '/^[ ]/d' -e p |
255 sane_egrep
-v '^[!-9;-~]+:' >/dev
/null ||
258 } < "$1" || clean_abort
262 case "$patch_format" in
264 if test t
= "$keepcr"
270 git mailsplit
-d"$prec" -o"$dotest" -b $keep_cr -- "$@" > "$dotest/last" ||
276 clean_abort
"$(gettext "Only one StGIT
patch series can be applied
at once
")"
278 series_dir
=$
(dirname "$1")
285 set "$@" "$series_dir/$filename"
287 # remove the safety x
289 # remove the arg coming from the first-line comment
291 } < "$series_file" || clean_abort
292 # set the patch format appropriately
294 # now handle the actual StGIT patches
301 this
=$
(expr "$this" + 1)
302 msgnum
=$
(printf "%0${prec}d" $this)
303 # Perl version of StGIT parse_patch. The first nonemptyline
304 # not starting with Author, From or Date is the
305 # subject, and the body starts with the next nonempty
306 # line not starting with Author, From or Date
307 @@PERL@@
-ne 'BEGIN { $subject = 0 }
308 if ($subject > 1) { print ; }
309 elsif (/^\s+$/) { next ; }
310 elsif (/^Author:/) { s/Author/From/ ; print ;}
311 elsif (/^(From|Date)/) { print ; }
317 print "Subject: ", $_ ;
320 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
322 echo "$this" > "$dotest/last"
330 this
=$
(( $this + 1 ))
331 msgnum
=$
(printf "%0${prec}d" $this)
332 # hg stores changeset metadata in #-commented lines preceding
333 # the commit message and diff(s). The only metadata we care about
334 # are the User and Date (Node ID and Parent are hashes which are
335 # only relevant to the hg repository and thus not useful to us)
336 # Since we cannot guarantee that the commit message is in
337 # git-friendly format, we put no Subject: line and just consume
338 # all of the message as the body
339 LANG
=C LC_ALL
=C @@PERL@@
-M'POSIX qw(strftime)' -ne 'BEGIN { $subject = 0 }
340 if ($subject) { print ; }
341 elsif (/^\# User /) { s/\# User/From:/ ; print ; }
342 elsif (/^\# Date /) {
343 my ($hashsign, $str, $time, $tz) = split ;
344 $tz = sprintf "%+05d", (0-$tz)/36;
346 strftime("%a, %d %b %Y %H:%M:%S ",
349 } elsif (/^\# /) { next ; }
354 ' <"$hg" >"$dotest/$msgnum" || clean_abort
356 echo "$this" >"$dotest/last"
361 if test -n "$patch_format"
363 clean_abort
"$(eval_gettext "Patch format \
$patch_format is not supported.
")"
365 clean_abort
"$(gettext "Patch format detection failed.
")"
372 dotest
="$GIT_DIR/rebase-apply"
373 sign
= utf8
=t keep
= keepcr
= skip
= interactive
= resolved
= rebasing
= abort
=
374 resolvemsg
= resume
= scissors
= no_inbody_headers
=
376 committer_date_is_author_date
=
378 allow_rerere_autoupdate
=
381 if test "$(git config --bool --get am.keepcr)" = true
392 gettextln
>&2 "The -b/--binary option has been a no-op for long time, and
393 it will be removed. Please do not use it anymore."
400 utf8
=t
;; # this is now default
411 -r|
--resolved|
--continue)
418 rebasing
=t threeway
=t
;;
420 resolvemsg
="${1#--resolvemsg=}" ;;
421 --whitespace=*|
--directory=*|
--exclude=*|
--include=*)
422 git_apply_opt
="$git_apply_opt $(sq "$1")" ;;
424 git_apply_opt
="$git_apply_opt $(sq "$1")" ;;
426 patch_format
="${1#--patch-format=}" ;;
427 --reject|
--ignore-whitespace|
--ignore-space-change)
428 git_apply_opt
="$git_apply_opt $1" ;;
429 --committer-date-is-author-date)
430 committer_date_is_author_date
=t
;;
433 --rerere-autoupdate|
--no-rerere-autoupdate)
434 allow_rerere_autoupdate
="$1" ;;
444 gpg_sign_opt
="-S${1#--gpg-sign=}" ;;
453 # If the dotest directory exists, but we have finished applying all the
454 # patches in them, clear it out.
455 if test -d "$dotest" &&
456 test -f "$dotest/last" &&
457 test -f "$dotest/next" &&
458 last
=$
(cat "$dotest/last") &&
459 next
=$
(cat "$dotest/next") &&
461 test "$next" -gt "$last"
466 if test -d "$dotest" && test -f "$dotest/last" && test -f "$dotest/next"
468 case "$#,$skip$resolved$abort" in
470 # Explicit resume command and we do not have file, so
474 # No file input but without resume parameters; catch
475 # user error to feed us a patch from standard input
476 # when there is already $dotest. This is somewhat
477 # unreliable -- stdin could be /dev/null for example
478 # and the caller did not intend to feed us a patch but
479 # wanted to continue unattended.
486 die
"$(eval_gettext "previous rebase directory \
$dotest still exists but mbox given.
")"
489 case "$skip,$abort" in
491 die
"$(gettext "Please
make up your mind.
--skip or
--abort?
")"
495 git read-tree
--reset -u HEAD HEAD
496 orig_head
=$
(cat "$GIT_DIR/ORIG_HEAD")
498 git update-ref ORIG_HEAD
$orig_head
501 if test -f "$dotest/rebasing"
503 exec git rebase
--abort
508 git read-tree
--reset -u HEAD ORIG_HEAD
514 rm -f "$dotest/dirtyindex"
516 # Possible stray $dotest directory in the independent-run
517 # case; in the --rebasing case, it is upto the caller
518 # (git-rebase--am) to take care of stray directories.
519 if test -d "$dotest" && test -z "$rebasing"
521 case "$skip,$resolved,$abort" in
527 die
"$(eval_gettext "Stray \
$dotest directory found.
528 Use
\"git am
--abort\" to remove it.
")"
533 # Make sure we are not given --skip, --continue, or --abort
534 test "$skip$resolved$abort" = "" ||
535 die
"$(gettext "Resolve operation not
in progress
, we are not resuming.
")"
538 mkdir
-p "$dotest" ||
exit
540 if test -n "$prefix" && test $# != 0
545 test -n "$first" && {
549 if is_absolute_path
"$arg"
553 set "$@" "$prefix$arg"
559 check_patch_format
"$@"
563 # -i can and must be given when resuming; everything
565 echo " $git_apply_opt" >"$dotest/apply-opt"
566 echo "$threeway" >"$dotest/threeway"
567 echo "$sign" >"$dotest/sign"
568 echo "$utf8" >"$dotest/utf8"
569 echo "$keep" >"$dotest/keep"
570 echo "$scissors" >"$dotest/scissors"
571 echo "$no_inbody_headers" >"$dotest/no_inbody_headers"
572 echo "$GIT_QUIET" >"$dotest/quiet"
573 echo 1 >"$dotest/next"
574 if test -n "$rebasing"
576 : >"$dotest/rebasing"
578 : >"$dotest/applying"
579 if test -n "$HAS_HEAD"
581 git update-ref ORIG_HEAD HEAD
583 git update-ref
-d ORIG_HEAD
>/dev
/null
2>&1
588 git update-index
-q --refresh
594 files
=$
(git ls-files
) ;;
596 files
=$
(git diff-index
--cached --name-only HEAD
--) ;;
600 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
601 die
"$(eval_gettext "Dirty index
: cannot apply patches
(dirty
: \
$files)")"
605 # Now, decide what command line options we will give to the git
606 # commands we invoke, based on the result of parsing command line
607 # options and previous invocation state stored in $dotest/ files.
609 if test "$(cat "$dotest/utf8
")" = t
615 keep
=$
(cat "$dotest/keep")
624 case "$(cat "$dotest/scissors
")" in
626 scissors
=--scissors ;;
628 scissors
=--no-scissors ;;
630 if test "$(cat "$dotest/no_inbody_headers
")" = t
632 no_inbody_headers
=--no-inbody-headers
636 if test "$(cat "$dotest/quiet
")" = t
640 if test "$(cat "$dotest/threeway
")" = t
644 git_apply_opt
=$
(cat "$dotest/apply-opt")
645 if test "$(cat "$dotest/sign
")" = t
647 SIGNOFF
=$
(git var GIT_COMMITTER_IDENT |
sed -e '
649 s/^/Signed-off-by: /'
655 last
=$
(cat "$dotest/last")
656 this
=$
(cat "$dotest/next")
659 this
=$
(expr "$this" + 1)
663 while test "$this" -le "$last"
665 msgnum
=$
(printf "%0${prec}d" $this)
666 next
=$
(expr "$this" + 1)
667 test -f "$dotest/$msgnum" ||
{
673 # If we are not resuming, parse and extract the patch information
674 # into separate files:
675 # - info records the authorship and title
676 # - msg is the rest of commit log message
677 # - patch is the patch body.
679 # When we are resuming, these files are either already prepared
680 # by the user, or the user can tell us to do so by --continue flag.
683 if test -f "$dotest/rebasing"
685 commit
=$
(sed -e 's/^From \([0-9a-f]*\) .*/\1/' \
686 -e q
"$dotest/$msgnum") &&
687 test "$(git cat-file -t "$commit")" = commit ||
689 git cat-file commit
"$commit" |
690 sed -e '1,/^$/d' >"$dotest/msg-clean"
691 echo "$commit" >"$dotest/original-commit"
692 get_author_ident_from_commit
"$commit" >"$dotest/author-script"
693 git diff-tree
--root --binary --full-index "$commit" >"$dotest/patch"
695 git mailinfo
$keep $no_inbody_headers $scissors $utf8 "$dotest/msg" "$dotest/patch" \
696 <"$dotest/$msgnum" >"$dotest/info" ||
699 # skip pine's internal folder data
700 sane_grep
'^Author: Mail System Internal Data$' \
701 <"$dotest"/info
>/dev
/null
&&
704 test -s "$dotest/patch" ||
{
705 eval_gettextln
"Patch is empty. Was it split wrong?
706 If you would prefer to skip this patch, instead run \"\$cmdline --skip\".
707 To restore the original branch and stop patching run \"\$cmdline --abort\"."
710 rm -f "$dotest/original-commit" "$dotest/author-script"
712 sed -n '/^Subject/ s/Subject: //p' "$dotest/info"
716 git stripspace
> "$dotest/msg-clean"
721 if test -f "$dotest/author-script"
723 eval $
(cat "$dotest/author-script")
725 GIT_AUTHOR_NAME
="$(sed -n '/^Author/ s/Author: //p' "$dotest/info
")"
726 GIT_AUTHOR_EMAIL
="$(sed -n '/^Email/ s/Email: //p' "$dotest/info
")"
727 GIT_AUTHOR_DATE
="$(sed -n '/^Date/ s/Date: //p' "$dotest/info
")"
730 if test -z "$GIT_AUTHOR_EMAIL"
732 gettextln
"Patch does not have a valid e-mail address."
736 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
740 if test '' != "$SIGNOFF"
742 LAST_SIGNED_OFF_BY
=$
(
743 sed -ne '/^Signed-off-by: /p' \
744 "$dotest/msg-clean" |
748 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" ||
{
749 test '' = "$LAST_SIGNED_OFF_BY" && echo
756 if test -s "$dotest/msg-clean"
758 cat "$dotest/msg-clean"
760 if test '' != "$ADD_SIGNOFF"
764 } >"$dotest/final-commit"
767 case "$resolved$interactive" in
769 # This is used only for interactive view option.
770 git diff-index
-p --cached HEAD
-- >"$dotest/patch"
776 if test "$interactive" = t
779 die
"$(gettext "cannot be interactive without stdin connected to a terminal.
")"
781 while test "$action" = again
783 gettextln
"Commit Body is:"
784 echo "--------------------------"
785 cat "$dotest/final-commit"
786 echo "--------------------------"
787 # TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
788 # in your translation. The program will only accept English
789 # input at this point.
790 gettext "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
794 [aA
]*) action
=yes interactive
= ;;
795 [nN
]*) action
=skip
;;
796 [eE
]*) git_editor
"$dotest/final-commit"
799 git_pager
"$dotest/patch" ;;
807 if test $action = skip
813 if test -x "$GIT_DIR"/hooks
/applypatch-msg
815 "$GIT_DIR"/hooks
/applypatch-msg
"$dotest/final-commit" ||
819 if test -f "$dotest/final-commit"
821 FIRSTLINE
=$
(sed 1q
"$dotest/final-commit")
826 say
"$(eval_gettext "Applying
: \
$FIRSTLINE")"
830 # When we are allowed to fall back to 3-way later, don't give
831 # false errors during the initial attempt.
833 if test "$threeway" = t
835 squelch
='>/dev/null 2>&1 '
837 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
841 # Resolved means the user did all the hard work, and
842 # we do not have to do any patch application. Just
843 # trust what the user has in the index file and the
846 git diff-index
--quiet --cached HEAD
-- && {
847 gettextln
"No changes - did you forget to use 'git add'?
848 If there is nothing left to stage, chances are that something else
849 already introduced the same changes; you might want to skip this patch."
850 stop_here_user_resolve
$this
852 unmerged
=$
(git ls-files
-u)
853 if test -n "$unmerged"
855 gettextln
"You still have unmerged paths in your index
856 did you forget to use 'git add'?"
857 stop_here_user_resolve
$this
864 if test $apply_status != 0 && test "$threeway" = t
868 # Applying the patch to an earlier tree and merging the
869 # result may have produced the same tree as ours.
870 git diff-index
--quiet --cached HEAD
-- && {
871 say
"$(gettext "No changes
-- Patch already applied.
")"
875 # clear apply_status -- we have successfully merged.
879 if test $apply_status != 0
881 eval_gettextln
'Patch failed at $msgnum $FIRSTLINE'
882 if test "$(git config --bool advice.amworkdir)" != false
884 eval_gettextln
'The copy of the patch that failed is found in:
887 stop_here_user_resolve
$this
890 if test -x "$GIT_DIR"/hooks
/pre-applypatch
892 "$GIT_DIR"/hooks
/pre-applypatch || stop_here
$this
895 tree
=$
(git write-tree
) &&
897 if test -n "$ignore_date"
901 parent
=$
(git rev-parse
--verify -q HEAD
) ||
902 say
>&2 "$(gettext "applying to an empty
history")"
904 if test -n "$committer_date_is_author_date"
906 GIT_COMMITTER_DATE
="$GIT_AUTHOR_DATE"
907 export GIT_COMMITTER_DATE
909 git commit-tree
${parent:+-p} $parent ${gpg_sign_opt:+"$gpg_sign_opt"} $tree \
910 <"$dotest/final-commit"
912 git update-ref
-m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD
$commit $parent ||
915 if test -f "$dotest/original-commit"; then
916 echo "$(cat "$dotest/original-commit
") $commit" >> "$dotest/rewritten"
919 if test -x "$GIT_DIR"/hooks
/post-applypatch
921 "$GIT_DIR"/hooks
/post-applypatch
927 if test -s "$dotest"/rewritten
; then
928 git notes copy
--for-rewrite=rebase
< "$dotest"/rewritten
929 if test -x "$GIT_DIR"/hooks
/post-rewrite
; then
930 "$GIT_DIR"/hooks
/post-rewrite rebase
< "$dotest"/rewritten
934 # If am was called with --rebasing (from git-rebase--am), it's up to
935 # the caller to take care of housekeeping.
936 if ! test -f "$dotest/rebasing"