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 exclude= pass it through git-apply
26 C= pass it through git-apply
27 p= pass it through git-apply
28 patch-format= format the patch(es) are in
29 reject pass it through git-apply
30 resolvemsg= override error message when patch failure occurs
31 continue continue applying patches after resolving a conflict
32 r,resolved synonyms for --continue
33 skip skip the current patch
34 abort restore the original branch and abort the patching operation.
35 committer-date-is-author-date lie about committer date
36 ignore-date use current timestamp for author date
37 rerere-autoupdate update the index with reused conflict resolution if possible
38 rebasing* (internal use for git-rebase)"
42 prefix
=$
(git rev-parse
--show-prefix)
47 git var GIT_COMMITTER_IDENT
>/dev
/null ||
48 die
"$(gettext "You need to
set your committer info first
")"
50 if git rev-parse
--verify -q HEAD
>/dev
/null
58 if test '' != "$interactive"
62 if test '' != "$threeway"
68 git rev-parse
--sq-quote "$@"
72 echo "$1" >"$dotest/next"
73 git rev-parse
--verify -q HEAD
>"$dotest/abort-safety"
78 if test -f "$dotest/dirtyindex"
83 if ! test -s "$dotest/abort-safety"
88 abort_safety
=$
(cat "$dotest/abort-safety")
89 if test "z$(git rev-parse --verify -q HEAD)" = "z$abort_safety"
94 gettext "You seem to have moved HEAD since the last 'am' failure.
95 Not rewinding to ORIG_HEAD" &&
101 stop_here_user_resolve
() {
102 if [ -n "$resolvemsg" ]; then
103 printf '%s\n' "$resolvemsg"
106 eval_gettext
"When you have resolved this problem run \"\$cmdline --resolved\".
107 If you would prefer to skip this patch, instead run \"\$cmdline --skip\".
108 To restore the original branch and stop patching run \"\$cmdline --abort\"."; echo
114 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
115 "$dotest/patch" "$dotest/info"
116 echo "$next" >"$dotest/next"
122 gettext "Cannot fall back to three-way merge."; echo
127 O_OBJECT
=`cd "$GIT_OBJECT_DIRECTORY" && pwd`
129 rm -fr "$dotest"/patch-merge-
*
130 mkdir
"$dotest/patch-merge-tmp-dir"
132 # First see if the patch records the index info that we can use.
133 git apply
--build-fake-ancestor "$dotest/patch-merge-tmp-index" \
135 GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
136 git write-tree
>"$dotest/patch-merge-base+" ||
137 cannot_fallback
"$(gettext "Repository lacks necessary blobs to fall back on
3-way merge.
")"
139 say Using index info to reconstruct a base tree...
140 if GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
141 git apply
--cached <"$dotest/patch"
143 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
144 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
146 cannot_fallback
"$(gettext "Did you hand edit your
patch?
147 It does not apply to blobs recorded
in its index.
")"
150 test -f "$dotest/patch-merge-index" &&
151 his_tree
=$
(GIT_INDEX_FILE
="$dotest/patch-merge-index" git write-tree
) &&
152 orig_tree
=$
(cat "$dotest/patch-merge-base") &&
153 rm -fr "$dotest"/patch-merge-
* ||
exit 1
155 say
"$(gettext "Falling back to patching base and
3-way merge...
")"
157 # This is not so wrong. Depending on which base we picked,
158 # orig_tree may be wildly different from ours, but his_tree
159 # has the same set of wildly different changes in parts the
160 # patch did not touch, so recursive ends up canceling them,
161 # saying that we reverted all those changes.
163 eval GITHEAD_
$his_tree='"$FIRSTLINE"'
164 export GITHEAD_
$his_tree
165 if test -n "$GIT_QUIET"
167 GIT_MERGE_VERBOSITY
=0 && export GIT_MERGE_VERBOSITY
169 git-merge-recursive
$orig_tree -- HEAD
$his_tree ||
{
170 git rerere
$allow_rerere_autoupdate
171 echo Failed to merge
in the changes.
174 unset GITHEAD_
$his_tree
178 test $# = 0 ||
echo >&2 "$@"
185 check_patch_format
() {
186 # early return if patch_format was set from the command line
187 if test -n "$patch_format"
192 # we default to mbox format if input is from stdin and for
194 if test $# = 0 ||
test "x$1" = "x-" ||
test -d "$1"
200 # otherwise, check the first few non-blank lines of the first
201 # patch to try to detect its format
203 # Start from first line containing non-whitespace
212 "From "* |
"From: "*)
215 '# This series applies on GIT commit'*)
216 patch_format
=stgit-series
218 "# HG changeset patch")
222 # if the second line is empty and the third is
223 # a From, Author or Date entry, this is very
224 # likely an StGIT patch
226 ,"From: "* |
,"Author: "* |
,"Date: "*)
234 if test -z "$patch_format" &&
239 # This begins with three non-empty lines. Is this a
240 # piece of e-mail a-la RFC2822? Grab all the headers,
241 # discarding the indented remainder of folded lines,
242 # and see if it looks like that they all begin with the
243 # header field names...
245 sed -n -e '/^$/q' -e '/^[ ]/d' -e p |
246 sane_egrep
-v '^[!-9;-~]+:' >/dev
/null ||
249 } < "$1" || clean_abort
253 case "$patch_format" in
255 if test -n "$rebasing" ||
test t
= "$keepcr"
261 git mailsplit
-d"$prec" -o"$dotest" -b $keep_cr -- "$@" > "$dotest/last" ||
267 clean_abort
"$(gettext "Only one StGIT
patch series can be applied
at once
")"
269 series_dir
=`dirname "$1"`
276 set "$@" "$series_dir/$filename"
278 # remove the safety x
280 # remove the arg coming from the first-line comment
282 } < "$series_file" || clean_abort
283 # set the patch format appropriately
285 # now handle the actual StGIT patches
292 this
=`expr "$this" + 1`
293 msgnum
=`printf "%0${prec}d" $this`
294 # Perl version of StGIT parse_patch. The first nonemptyline
295 # not starting with Author, From or Date is the
296 # subject, and the body starts with the next nonempty
297 # line not starting with Author, From or Date
298 perl
-ne 'BEGIN { $subject = 0 }
299 if ($subject > 1) { print ; }
300 elsif (/^\s+$/) { next ; }
301 elsif (/^Author:/) { print s/Author/From/ ; }
302 elsif (/^(From|Date)/) { print ; }
308 print "Subject: ", $_ ;
311 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
313 echo "$this" > "$dotest/last"
318 if test -n "$parse_patch" ; then
319 clean_abort
"$(eval_gettext "Patch format \
$patch_format is not supported.
")"
321 clean_abort
"$(gettext "Patch format detection failed.
")"
328 dotest
="$GIT_DIR/rebase-apply"
329 sign
= utf8
=t keep
= keepcr
= skip
= interactive
= resolved
= rebasing
= abort
=
330 resolvemsg
= resume
= scissors
= no_inbody_headers
=
332 committer_date_is_author_date
=
334 allow_rerere_autoupdate
=
336 if test "$(git config --bool --get am.keepcr)" = true
353 utf8
=t
;; # this is now default
362 -r|
--resolved|
--continue)
369 rebasing
=t threeway
=t keep
=t scissors
=f no_inbody_headers
=t
;;
371 die
"$(gettext "-d option is no longer supported. Do not use.
")"
374 shift; resolvemsg
=$1 ;;
375 --whitespace|
--directory|
--exclude)
376 git_apply_opt
="$git_apply_opt $(sq "$1=$2")"; shift ;;
378 git_apply_opt
="$git_apply_opt $(sq "$1$2")"; shift ;;
380 shift ; patch_format
="$1" ;;
381 --reject|
--ignore-whitespace|
--ignore-space-change)
382 git_apply_opt
="$git_apply_opt $1" ;;
383 --committer-date-is-author-date)
384 committer_date_is_author_date
=t
;;
387 --rerere-autoupdate|
--no-rerere-autoupdate)
388 allow_rerere_autoupdate
="$1" ;;
403 # If the dotest directory exists, but we have finished applying all the
404 # patches in them, clear it out.
405 if test -d "$dotest" &&
406 last
=$
(cat "$dotest/last") &&
407 next
=$
(cat "$dotest/next") &&
409 test "$next" -gt "$last"
416 case "$#,$skip$resolved$abort" in
418 # Explicit resume command and we do not have file, so
422 # No file input but without resume parameters; catch
423 # user error to feed us a patch from standard input
424 # when there is already $dotest. This is somewhat
425 # unreliable -- stdin could be /dev/null for example
426 # and the caller did not intend to feed us a patch but
427 # wanted to continue unattended.
434 die
"$(eval_gettext "previous rebase directory \
$dotest still exists but mbox given.
")"
437 case "$skip,$abort" in
439 die
"$(gettext "Please
make up your mind.
--skip or
--abort?
")"
443 git read-tree
--reset -u HEAD HEAD
444 orig_head
=$
(cat "$GIT_DIR/ORIG_HEAD")
446 git update-ref ORIG_HEAD
$orig_head
449 if test -f "$dotest/rebasing"
451 exec git rebase
--abort
456 git read-tree
--reset -u HEAD ORIG_HEAD
462 rm -f "$dotest/dirtyindex"
464 # Make sure we are not given --skip, --resolved, nor --abort
465 test "$skip$resolved$abort" = "" ||
466 die
"$(gettext "Resolve operation not
in progress
, we are not resuming.
")"
469 mkdir
-p "$dotest" ||
exit
471 if test -n "$prefix" && test $# != 0
476 test -n "$first" && {
480 if is_absolute_path
"$arg"
484 set "$@" "$prefix$arg"
490 check_patch_format
"$@"
494 # -i can and must be given when resuming; everything
496 echo " $git_apply_opt" >"$dotest/apply-opt"
497 echo "$threeway" >"$dotest/threeway"
498 echo "$sign" >"$dotest/sign"
499 echo "$utf8" >"$dotest/utf8"
500 echo "$keep" >"$dotest/keep"
501 echo "$keepcr" >"$dotest/keepcr"
502 echo "$scissors" >"$dotest/scissors"
503 echo "$no_inbody_headers" >"$dotest/no_inbody_headers"
504 echo "$GIT_QUIET" >"$dotest/quiet"
505 echo 1 >"$dotest/next"
506 if test -n "$rebasing"
508 : >"$dotest/rebasing"
510 : >"$dotest/applying"
511 if test -n "$HAS_HEAD"
513 git update-ref ORIG_HEAD HEAD
515 git update-ref
-d ORIG_HEAD
>/dev
/null
2>&1
520 git update-index
-q --refresh
526 files
=$
(git ls-files
) ;;
528 files
=$
(git diff-index
--cached --name-only HEAD
--) ;;
532 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
533 die
"$(eval_gettext "Dirty index
: cannot apply patches
(dirty
: \
$files)")"
537 if test "$(cat "$dotest/utf8
")" = t
543 if test "$(cat "$dotest/keep
")" = t
547 case "$(cat "$dotest/keepcr
")" in
551 keepcr
=--no-keep-cr ;;
553 case "$(cat "$dotest/scissors
")" in
555 scissors
=--scissors ;;
557 scissors
=--no-scissors ;;
559 if test "$(cat "$dotest/no_inbody_headers
")" = t
561 no_inbody_headers
=--no-inbody-headers
565 if test "$(cat "$dotest/quiet
")" = t
569 if test "$(cat "$dotest/threeway
")" = t
573 git_apply_opt
=$
(cat "$dotest/apply-opt")
574 if test "$(cat "$dotest/sign
")" = t
576 SIGNOFF
=`git var GIT_COMMITTER_IDENT | sed -e '
578 s/^/Signed-off-by: /'
584 last
=`cat "$dotest/last"`
585 this
=`cat "$dotest/next"`
588 this
=`expr "$this" + 1`
592 while test "$this" -le "$last"
594 msgnum
=`printf "%0${prec}d" $this`
595 next
=`expr "$this" + 1`
596 test -f "$dotest/$msgnum" ||
{
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.
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.
612 git mailinfo
$keep $no_inbody_headers $scissors $utf8 "$dotest/msg" "$dotest/patch" \
613 <"$dotest/$msgnum" >"$dotest/info" ||
616 # skip pine's internal folder data
617 sane_grep
'^Author: Mail System Internal Data$' \
618 <"$dotest"/info
>/dev
/null
&&
621 test -s "$dotest/patch" ||
{
622 eval_gettext
"Patch is empty. Was it split wrong?
623 If you would prefer to skip this patch, instead run \"\$cmdline --skip\".
624 To restore the original branch and stop patching run \"\$cmdline --abort\"."; echo
627 rm -f "$dotest/original-commit" "$dotest/author-script"
628 if test -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
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"
639 sed -n '/^Subject/ s/Subject: //p' "$dotest/info"
643 git stripspace
> "$dotest/msg-clean"
648 if test -f "$dotest/author-script"
650 eval $
(cat "$dotest/author-script")
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
")"
657 if test -z "$GIT_AUTHOR_EMAIL"
659 gettext "Patch does not have a valid e-mail address."; echo
663 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
667 if test '' != "$SIGNOFF"
670 sed -ne '/^Signed-off-by: /p' \
671 "$dotest/msg-clean" |
675 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || {
676 test '' = "$LAST_SIGNED_OFF_BY" && echo
683 if test -s "$dotest/msg-clean"
685 cat "$dotest/msg-clean"
687 if test '' != "$ADD_SIGNOFF"
691 } >"$dotest/final-commit"
694 case "$resolved$interactive" in
696 # This is used only for interactive view option.
697 git diff-index
-p --cached HEAD
-- >"$dotest/patch"
703 if test "$interactive" = t
706 die
"$(gettext "cannot be interactive without stdin connected to a terminal.
")"
708 while test "$action" = again
710 gettext "Commit Body is:"; echo
711 echo "--------------------------"
712 cat "$dotest/final-commit"
713 echo "--------------------------"
714 # TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
715 # in your translation. The program will only accept English
716 # input at this point.
717 gettext "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
721 [aA
]*) action
=yes interactive
= ;;
722 [nN
]*) action
=skip
;;
723 [eE
]*) git_editor
"$dotest/final-commit"
726 git_pager
"$dotest/patch" ;;
734 if test -f "$dotest/final-commit"
736 FIRSTLINE
=$
(sed 1q
"$dotest/final-commit")
741 if test $action = skip
747 if test -x "$GIT_DIR"/hooks
/applypatch-msg
749 "$GIT_DIR"/hooks
/applypatch-msg
"$dotest/final-commit" ||
753 say
"$(eval_gettext "Applying
: \
$FIRSTLINE")"
757 # When we are allowed to fall back to 3-way later, don't give
758 # false errors during the initial attempt.
760 if test "$threeway" = t
762 squelch
='>/dev/null 2>&1 '
764 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
768 # Resolved means the user did all the hard work, and
769 # we do not have to do any patch application. Just
770 # trust what the user has in the index file and the
773 git diff-index
--quiet --cached HEAD
-- && {
774 gettext "No changes - did you forget to use 'git add'?
775 If there is nothing left to stage, chances are that something else
776 already introduced the same changes; you might want to skip this patch."; echo
777 stop_here_user_resolve
$this
779 unmerged
=$
(git ls-files
-u)
780 if test -n "$unmerged"
782 gettext "You still have unmerged paths in your index
783 did you forget to use 'git add'?"; echo
784 stop_here_user_resolve
$this
791 if test $apply_status != 0 && test "$threeway" = t
795 # Applying the patch to an earlier tree and merging the
796 # result may have produced the same tree as ours.
797 git diff-index
--quiet --cached HEAD
-- && {
798 say
"$(gettext "No changes
-- Patch already applied.
")"
802 # clear apply_status -- we have successfully merged.
806 if test $apply_status != 0
808 eval_gettext
'Patch failed at $msgnum $FIRSTLINE'; echo
809 stop_here_user_resolve
$this
812 if test -x "$GIT_DIR"/hooks
/pre-applypatch
814 "$GIT_DIR"/hooks
/pre-applypatch || stop_here
$this
817 tree
=$
(git write-tree
) &&
819 if test -n "$ignore_date"
823 parent
=$
(git rev-parse
--verify -q HEAD
) ||
824 say
>&2 "$(gettext "applying to an empty
history")"
826 if test -n "$committer_date_is_author_date"
828 GIT_COMMITTER_DATE
="$GIT_AUTHOR_DATE"
829 export GIT_COMMITTER_DATE
831 git commit-tree
$tree ${parent:+-p} $parent <"$dotest/final-commit"
833 git update-ref
-m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD
$commit $parent ||
836 if test -f "$dotest/original-commit"; then
837 echo "$(cat "$dotest/original-commit
") $commit" >> "$dotest/rewritten"
840 if test -x "$GIT_DIR"/hooks
/post-applypatch
842 "$GIT_DIR"/hooks
/post-applypatch
848 if test -s "$dotest"/rewritten
; then
849 git notes copy
--for-rewrite=rebase
< "$dotest"/rewritten
850 if test -x "$GIT_DIR"/hooks
/post-rewrite
; then
851 "$GIT_DIR"/hooks
/post-rewrite rebase
< "$dotest"/rewritten