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 whitespace= pass it through git-apply
19 directory= pass it through git-apply
20 C= pass it through git-apply
21 p= pass it through git-apply
22 patch-format= format the patch(es) are in
23 reject pass it through git-apply
24 resolvemsg= override error message when patch failure occurs
25 r,resolved to be used after a patch failure
26 skip skip the current patch
27 abort restore the original branch and abort the patching operation.
28 committer-date-is-author-date lie about committer date
29 ignore-date use current timestamp for author date
30 rebasing* (internal use for git-rebase)"
33 prefix
=$
(git rev-parse
--show-prefix)
38 git var GIT_COMMITTER_IDENT
>/dev
/null ||
39 die
"You need to set your committer info first"
41 if git rev-parse
--verify -q HEAD
>/dev
/null
49 git rev-parse
--sq-quote "$@"
53 echo "$1" >"$dotest/next"
57 stop_here_user_resolve
() {
58 if [ -n "$resolvemsg" ]; then
59 printf '%s\n' "$resolvemsg"
63 if test '' != "$interactive"
67 if test '' != "$threeway"
71 echo "When you have resolved this problem run \"$cmdline --resolved\"."
72 echo "If you would prefer to skip this patch, instead run \"$cmdline --skip\"."
73 echo "To restore the original branch and stop patching run \"$cmdline --abort\"."
79 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
80 "$dotest/patch" "$dotest/info"
81 echo "$next" >"$dotest/next"
87 echo "Cannot fall back to three-way merge."
92 O_OBJECT
=`cd "$GIT_OBJECT_DIRECTORY" && pwd`
94 rm -fr "$dotest"/patch-merge-
*
95 mkdir
"$dotest/patch-merge-tmp-dir"
97 # First see if the patch records the index info that we can use.
98 git apply
--build-fake-ancestor "$dotest/patch-merge-tmp-index" \
100 GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
101 git write-tree
>"$dotest/patch-merge-base+" ||
102 cannot_fallback
"Repository lacks necessary blobs to fall back on 3-way merge."
104 say Using index info to reconstruct a base tree...
105 if GIT_INDEX_FILE
="$dotest/patch-merge-tmp-index" \
106 git apply
--cached <"$dotest/patch"
108 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
109 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
111 cannot_fallback
"Did you hand edit your patch?
112 It does not apply to blobs recorded in its index."
115 test -f "$dotest/patch-merge-index" &&
116 his_tree
=$
(GIT_INDEX_FILE
="$dotest/patch-merge-index" git write-tree
) &&
117 orig_tree
=$
(cat "$dotest/patch-merge-base") &&
118 rm -fr "$dotest"/patch-merge-
* ||
exit 1
120 say Falling back to patching base and
3-way merge...
122 # This is not so wrong. Depending on which base we picked,
123 # orig_tree may be wildly different from ours, but his_tree
124 # has the same set of wildly different changes in parts the
125 # patch did not touch, so recursive ends up canceling them,
126 # saying that we reverted all those changes.
128 eval GITHEAD_
$his_tree='"$FIRSTLINE"'
129 export GITHEAD_
$his_tree
130 if test -n "$GIT_QUIET"
132 export GIT_MERGE_VERBOSITY
=0
134 git-merge-recursive
$orig_tree -- HEAD
$his_tree ||
{
136 echo Failed to merge
in the changes.
139 unset GITHEAD_
$his_tree
143 test $# = 0 ||
echo >&2 "$@"
150 check_patch_format
() {
151 # early return if patch_format was set from the command line
152 if test -n "$patch_format"
157 # we default to mbox format if input is from stdin and for
159 if test $# = 0 ||
test "x$1" = "x-" ||
test -d "$1"
165 # otherwise, check the first few lines of the first patch to try
166 # to detect its format
172 "From "* |
"From: "*)
175 '# This series applies on GIT commit'*)
176 patch_format
=stgit-series
178 "# HG changeset patch")
182 # if the second line is empty and the third is
183 # a From, Author or Date entry, this is very
184 # likely an StGIT patch
186 ,"From: "* |
,"Author: "* |
,"Date: "*)
194 } < "$1" || clean_abort
198 case "$patch_format" in
200 git mailsplit
-d"$prec" -o"$dotest" -b -- "$@" > "$dotest/last" ||
206 clean_abort
"Only one StGIT patch series can be applied at once"
208 series_dir
=`dirname "$1"`
215 set "$@" "$series_dir/$filename"
217 # remove the safety x
219 # remove the arg coming from the first-line comment
221 } < "$series_file" || clean_abort
222 # set the patch format appropriately
224 # now handle the actual StGIT patches
231 this
=`expr "$this" + 1`
232 msgnum
=`printf "%0${prec}d" $this`
233 # Perl version of StGIT parse_patch. The first nonemptyline
234 # not starting with Author, From or Date is the
235 # subject, and the body starts with the next nonempty
236 # line not starting with Author, From or Date
237 perl
-ne 'BEGIN { $subject = 0 }
238 if ($subject > 1) { print ; }
239 elsif (/^\s+$/) { next ; }
240 elsif (/^Author:/) { print s/Author/From/ ; }
241 elsif (/^(From|Date)/) { print ; }
247 print "Subject: ", $_ ;
250 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
252 echo "$this" > "$dotest/last"
257 clean_abort
"Patch format $patch_format is not supported."
263 dotest
="$GIT_DIR/rebase-apply"
264 sign
= utf8
=t keep
= skip
= interactive
= resolved
= rebasing
= abort
=
267 committer_date_is_author_date
=
282 utf8
=t
;; # this is now default
294 rebasing
=t threeway
=t keep
=t
;;
296 die
"-d option is no longer supported. Do not use."
299 shift; resolvemsg
=$1 ;;
300 --whitespace|
--directory)
301 git_apply_opt
="$git_apply_opt $(sq "$1=$2")"; shift ;;
303 git_apply_opt
="$git_apply_opt $(sq "$1$2")"; shift ;;
305 shift ; patch_format
="$1" ;;
307 git_apply_opt
="$git_apply_opt $1" ;;
308 --committer-date-is-author-date)
309 committer_date_is_author_date
=t
;;
322 # If the dotest directory exists, but we have finished applying all the
323 # patches in them, clear it out.
324 if test -d "$dotest" &&
325 last
=$
(cat "$dotest/last") &&
326 next
=$
(cat "$dotest/next") &&
328 test "$next" -gt "$last"
335 case "$#,$skip$resolved$abort" in
337 # Explicit resume command and we do not have file, so
341 # No file input but without resume parameters; catch
342 # user error to feed us a patch from standard input
343 # when there is already $dotest. This is somewhat
344 # unreliable -- stdin could be /dev/null for example
345 # and the caller did not intend to feed us a patch but
346 # wanted to continue unattended.
353 die
"previous rebase directory $dotest still exists but mbox given."
356 case "$skip,$abort" in
358 die
"Please make up your mind. --skip or --abort?"
362 git read-tree
--reset -u HEAD HEAD
363 orig_head
=$
(cat "$GIT_DIR/ORIG_HEAD")
365 git update-ref ORIG_HEAD
$orig_head
368 if test -f "$dotest/rebasing"
370 exec git rebase
--abort
373 test -f "$dotest/dirtyindex" ||
{
374 git read-tree
--reset -u HEAD ORIG_HEAD
380 rm -f "$dotest/dirtyindex"
382 # Make sure we are not given --skip, --resolved, nor --abort
383 test "$skip$resolved$abort" = "" ||
384 die
"Resolve operation not in progress, we are not resuming."
387 mkdir
-p "$dotest" ||
exit
389 if test -n "$prefix" && test $# != 0
394 test -n "$first" && {
402 set "$@" "$prefix$arg" ;;
408 check_patch_format
"$@"
412 # -s, -u, -k, --whitespace, -3, -C, -q and -p flags are kept
413 # for the resuming session after a patch failure.
414 # -i can and must be given when resuming.
415 echo " $git_apply_opt" >"$dotest/apply-opt"
416 echo "$threeway" >"$dotest/threeway"
417 echo "$sign" >"$dotest/sign"
418 echo "$utf8" >"$dotest/utf8"
419 echo "$keep" >"$dotest/keep"
420 echo "$GIT_QUIET" >"$dotest/quiet"
421 echo 1 >"$dotest/next"
422 if test -n "$rebasing"
424 : >"$dotest/rebasing"
426 : >"$dotest/applying"
427 if test -n "$HAS_HEAD"
429 git update-ref ORIG_HEAD HEAD
431 git update-ref
-d ORIG_HEAD
>/dev
/null
2>&1
440 files
=$
(git ls-files
) ;;
442 files
=$
(git diff-index
--cached --name-only HEAD
--) ;;
446 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
447 die
"Dirty index: cannot apply patches (dirty: $files)"
451 if test "$(cat "$dotest/utf8
")" = t
457 if test "$(cat "$dotest/keep
")" = t
461 if test "$(cat "$dotest/quiet
")" = t
465 if test "$(cat "$dotest/threeway
")" = t
469 git_apply_opt
=$
(cat "$dotest/apply-opt")
470 if test "$(cat "$dotest/sign
")" = t
472 SIGNOFF
=`git var GIT_COMMITTER_IDENT | sed -e '
474 s/^/Signed-off-by: /'
480 last
=`cat "$dotest/last"`
481 this
=`cat "$dotest/next"`
484 this
=`expr "$this" + 1`
488 if test "$this" -gt "$last"
495 while test "$this" -le "$last"
497 msgnum
=`printf "%0${prec}d" $this`
498 next
=`expr "$this" + 1`
499 test -f "$dotest/$msgnum" ||
{
505 # If we are not resuming, parse and extract the patch information
506 # into separate files:
507 # - info records the authorship and title
508 # - msg is the rest of commit log message
509 # - patch is the patch body.
511 # When we are resuming, these files are either already prepared
512 # by the user, or the user can tell us to do so by --resolved flag.
515 git mailinfo
$keep $utf8 "$dotest/msg" "$dotest/patch" \
516 <"$dotest/$msgnum" >"$dotest/info" ||
519 # skip pine's internal folder data
520 grep '^Author: Mail System Internal Data$' \
521 <"$dotest"/info
>/dev
/null
&&
524 test -s "$dotest/patch" ||
{
525 echo "Patch is empty. Was it split wrong?"
528 if test -f "$dotest/rebasing" &&
529 commit
=$
(sed -e 's/^From \([0-9a-f]*\) .*/\1/' \
530 -e q
"$dotest/$msgnum") &&
531 test "$(git cat-file -t "$commit")" = commit
533 git cat-file commit
"$commit" |
534 sed -e '1,/^$/d' >"$dotest/msg-clean"
536 SUBJECT
="$(sed -n '/^Subject/ s/Subject: //p' "$dotest/info
")"
537 case "$keep_subject" in -k) SUBJECT
="[PATCH] $SUBJECT" ;; esac
539 (printf '%s\n\n' "$SUBJECT"; cat "$dotest/msg") |
540 git stripspace
> "$dotest/msg-clean"
545 GIT_AUTHOR_NAME
="$(sed -n '/^Author/ s/Author: //p' "$dotest/info
")"
546 GIT_AUTHOR_EMAIL
="$(sed -n '/^Email/ s/Email: //p' "$dotest/info
")"
547 GIT_AUTHOR_DATE
="$(sed -n '/^Date/ s/Date: //p' "$dotest/info
")"
549 if test -z "$GIT_AUTHOR_EMAIL"
551 echo "Patch does not have a valid e-mail address."
555 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
559 if test '' != "$SIGNOFF"
562 sed -ne '/^Signed-off-by: /p' \
563 "$dotest/msg-clean" |
567 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || {
568 test '' = "$LAST_SIGNED_OFF_BY" && echo
575 if test -s "$dotest/msg-clean"
577 cat "$dotest/msg-clean"
579 if test '' != "$ADD_SIGNOFF"
583 } >"$dotest/final-commit"
586 case "$resolved$interactive" in
588 # This is used only for interactive view option.
589 git diff-index
-p --cached HEAD
-- >"$dotest/patch"
595 if test "$interactive" = t
598 die
"cannot be interactive without stdin connected to a terminal."
600 while test "$action" = again
602 echo "Commit Body is:"
603 echo "--------------------------"
604 cat "$dotest/final-commit"
605 echo "--------------------------"
606 printf "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
610 [aA
]*) action
=yes interactive
= ;;
611 [nN
]*) action
=skip
;;
612 [eE
]*) git_editor
"$dotest/final-commit"
615 LESS
=-S ${PAGER:-less} "$dotest/patch" ;;
622 FIRSTLINE
=$
(sed 1q
"$dotest/final-commit")
624 if test $action = skip
630 if test -x "$GIT_DIR"/hooks
/applypatch-msg
632 "$GIT_DIR"/hooks
/applypatch-msg
"$dotest/final-commit" ||
636 say
"Applying: $FIRSTLINE"
640 # When we are allowed to fall back to 3-way later, don't give
641 # false errors during the initial attempt.
643 if test "$threeway" = t
645 squelch
='>/dev/null 2>&1 '
647 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
651 # Resolved means the user did all the hard work, and
652 # we do not have to do any patch application. Just
653 # trust what the user has in the index file and the
656 git diff-index
--quiet --cached HEAD
-- && {
657 echo "No changes - did you forget to use 'git add'?"
658 stop_here_user_resolve
$this
660 unmerged
=$
(git ls-files
-u)
661 if test -n "$unmerged"
663 echo "You still have unmerged paths in your index"
664 echo "did you forget to use 'git add'?"
665 stop_here_user_resolve
$this
672 if test $apply_status = 1 && test "$threeway" = t
676 # Applying the patch to an earlier tree and merging the
677 # result may have produced the same tree as ours.
678 git diff-index
--quiet --cached HEAD
-- && {
679 say No changes
-- Patch already applied.
683 # clear apply_status -- we have successfully merged.
687 if test $apply_status != 0
689 printf 'Patch failed at %s %s\n' "$msgnum" "$FIRSTLINE"
690 stop_here_user_resolve
$this
693 if test -x "$GIT_DIR"/hooks
/pre-applypatch
695 "$GIT_DIR"/hooks
/pre-applypatch || stop_here
$this
698 tree
=$
(git write-tree
) &&
700 if test -n "$ignore_date"
704 parent
=$
(git rev-parse
--verify -q HEAD
) ||
705 say
>&2 "applying to an empty history"
707 if test -n "$committer_date_is_author_date"
709 GIT_COMMITTER_DATE
="$GIT_AUTHOR_DATE"
710 export GIT_COMMITTER_DATE
712 git commit-tree
$tree ${parent:+-p} $parent <"$dotest/final-commit"
714 git update-ref
-m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD
$commit $parent ||
717 if test -x "$GIT_DIR"/hooks
/post-applypatch
719 "$GIT_DIR"/hooks
/post-applypatch