]> git.ipfire.org Git - thirdparty/git.git/blame - git-am.sh
http: add Accept-Language header if possible
[thirdparty/git.git] / git-am.sh
CommitLineData
d1c5f2a4
JH
1#!/bin/sh
2#
d64e6b04 3# Copyright (c) 2005, 2006 Junio C Hamano
d1c5f2a4 4
c1491841 5SUBDIRECTORY_OK=Yes
78443d90 6OPTIONS_KEEPDASHDASH=
88336623 7OPTIONS_STUCKLONG=t
78443d90 8OPTIONS_SPEC="\
0adda936 9git am [options] [(<mbox>|<Maildir>)...]
8ceb6fbd 10git am [options] (--continue | --skip | --abort)
78443d90 11--
66006c63 12i,interactive run interactively
98ef23b3 13b,binary* (historical option -- no-op)
78443d90 143,3way allow fall back on 3way merging if needed
0e987a12 15q,quiet be quiet
78443d90
PH
16s,signoff add a Signed-off-by line to the commit message
17u,utf8 recode into utf8 (default)
fe1fa946 18k,keep pass -k flag to git-mailinfo
f7e5ea17 19keep-non-patch pass -b flag to git-mailinfo
a078f732 20m,message-id pass -m flag to git-mailinfo
ad2c9280 21keep-cr pass --keep-cr flag to git-mailsplit for mbox format
e80d4cbe 22no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr
017678b4 23c,scissors strip everything before a scissors line
78443d90 24whitespace= pass it through git-apply
86c91f91
GB
25ignore-space-change pass it through git-apply
26ignore-whitespace pass it through git-apply
b47dfe9e 27directory= pass it through git-apply
77e9e496 28exclude= pass it through git-apply
58725efd 29include= pass it through git-apply
78443d90
PH
30C= pass it through git-apply
31p= pass it through git-apply
a5a6755a 32patch-format= format the patch(es) are in
b80da424 33reject pass it through git-apply
78443d90 34resolvemsg= override error message when patch failure occurs
c8089af6
JK
35continue continue applying patches after resolving a conflict
36r,resolved synonyms for --continue
3041c324 37skip skip the current patch
3e5057a8 38abort restore the original branch and abort the patching operation.
3f01ad66 39committer-date-is-author-date lie about committer date
a79ec62d 40ignore-date use current timestamp for author date
cb6020bb 41rerere-autoupdate update the index with reused conflict resolution if possible
3b4e395f 42S,gpg-sign? GPG-sign commits
98ef23b3 43rebasing* (internal use for git-rebase)"
78443d90 44
cf1fe88c 45. git-sh-setup
b9a97269 46. git-sh-i18n
bb034f83 47prefix=$(git rev-parse --show-prefix)
f9474132 48set_reflog_action am
7eff28a9 49require_work_tree
c1491841 50cd_to_toplevel
d1c5f2a4 51
460abee5 52git var GIT_COMMITTER_IDENT >/dev/null ||
79087259 53 die "$(gettext "You need to set your committer info first")"
d64e6b04 54
f79d4c8a
NS
55if git rev-parse --verify -q HEAD >/dev/null
56then
57 HAS_HEAD=yes
58else
59 HAS_HEAD=
60fi
61
d2c46310
RR
62cmdline="git am"
63if test '' != "$interactive"
64then
65 cmdline="$cmdline -i"
66fi
67if test '' != "$threeway"
68then
69 cmdline="$cmdline -3"
70fi
71
b47dfe9e 72sq () {
47c9739e 73 git rev-parse --sq-quote "$@"
b47dfe9e
JH
74}
75
d1c5f2a4
JH
76stop_here () {
77 echo "$1" >"$dotest/next"
7b3b7e37 78 git rev-parse --verify -q HEAD >"$dotest/abort-safety"
d1c5f2a4
JH
79 exit 1
80}
81
7b3b7e37
JH
82safe_to_abort () {
83 if test -f "$dotest/dirtyindex"
84 then
85 return 1
86 fi
87
88 if ! test -s "$dotest/abort-safety"
89 then
90 return 0
91 fi
92
93 abort_safety=$(cat "$dotest/abort-safety")
94 if test "z$(git rev-parse --verify -q HEAD)" = "z$abort_safety"
95 then
96 return 0
97 fi
42e6504f 98 gettextln "You seem to have moved HEAD since the last 'am' failure.
de88c1ce 99Not rewinding to ORIG_HEAD" >&2
7b3b7e37
JH
100 return 1
101}
102
ced9456a 103stop_here_user_resolve () {
cc120056 104 if [ -n "$resolvemsg" ]; then
a23bfaed 105 printf '%s\n' "$resolvemsg"
cc120056
SE
106 stop_here $1
107 fi
8ceb6fbd 108 eval_gettextln "When you have resolved this problem, run \"\$cmdline --continue\".
c7108bf9
JX
109If you prefer to skip this patch, run \"\$cmdline --skip\" instead.
110To restore the original branch and stop patching, run \"\$cmdline --abort\"."
ced9456a
RS
111
112 stop_here $1
113}
114
d1c5f2a4
JH
115go_next () {
116 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
117 "$dotest/patch" "$dotest/info"
118 echo "$next" >"$dotest/next"
119 this=$next
120}
121
fd7bcfb5
JH
122cannot_fallback () {
123 echo "$1"
de88c1ce 124 gettextln "Cannot fall back to three-way merge."
fd7bcfb5
JH
125 exit 1
126}
127
d1c5f2a4 128fall_back_3way () {
75ee3d70 129 O_OBJECT=$(cd "$GIT_OBJECT_DIRECTORY" && pwd)
d1c5f2a4
JH
130
131 rm -fr "$dotest"/patch-merge-*
132 mkdir "$dotest/patch-merge-tmp-dir"
133
134 # First see if the patch records the index info that we can use.
4056afbc
JH
135 cmd="git apply $git_apply_opt --build-fake-ancestor" &&
136 cmd="$cmd "'"$dotest/patch-merge-tmp-index" "$dotest/patch"' &&
137 eval "$cmd" &&
fd7bcfb5 138 GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \
5be60078 139 git write-tree >"$dotest/patch-merge-base+" ||
a424ca15 140 cannot_fallback "$(gettext "Repository lacks necessary blobs to fall back on 3-way merge.")"
fd7bcfb5 141
42e6504f 142 say "$(gettext "Using index info to reconstruct a base tree...")"
4056afbc
JH
143
144 cmd='GIT_INDEX_FILE="$dotest/patch-merge-tmp-index"'
5d86861c
JH
145
146 if test -z "$GIT_QUIET"
147 then
148 eval "$cmd git diff-index --cached --diff-filter=AM --name-status HEAD"
149 fi
150
4056afbc
JH
151 cmd="$cmd git apply --cached $git_apply_opt"' <"$dotest/patch"'
152 if eval "$cmd"
d1c5f2a4 153 then
d1c5f2a4
JH
154 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
155 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
fd7bcfb5 156 else
a424ca15
ÆAB
157 cannot_fallback "$(gettext "Did you hand edit your patch?
158It does not apply to blobs recorded in its index.")"
d1c5f2a4
JH
159 fi
160
161 test -f "$dotest/patch-merge-index" &&
5be60078 162 his_tree=$(GIT_INDEX_FILE="$dotest/patch-merge-index" git write-tree) &&
d1c5f2a4
JH
163 orig_tree=$(cat "$dotest/patch-merge-base") &&
164 rm -fr "$dotest"/patch-merge-* || exit 1
165
865207a6 166 say "$(gettext "Falling back to patching base and 3-way merge...")"
d1c5f2a4
JH
167
168 # This is not so wrong. Depending on which base we picked,
169 # orig_tree may be wildly different from ours, but his_tree
170 # has the same set of wildly different changes in parts the
579c9bb1 171 # patch did not touch, so recursive ends up canceling them,
d1c5f2a4
JH
172 # saying that we reverted all those changes.
173
2e6e3e82 174 eval GITHEAD_$his_tree='"$FIRSTLINE"'
579c9bb1 175 export GITHEAD_$his_tree
0e987a12
SB
176 if test -n "$GIT_QUIET"
177 then
69ae92bd 178 GIT_MERGE_VERBOSITY=0 && export GIT_MERGE_VERBOSITY
0e987a12 179 fi
579c9bb1 180 git-merge-recursive $orig_tree -- HEAD $his_tree || {
cb6020bb 181 git rerere $allow_rerere_autoupdate
42e6504f 182 die "$(gettext "Failed to merge in the changes.")"
d1c5f2a4 183 }
579c9bb1 184 unset GITHEAD_$his_tree
d1c5f2a4
JH
185}
186
0cd29a03
GB
187clean_abort () {
188 test $# = 0 || echo >&2 "$@"
189 rm -fr "$dotest"
190 exit 1
191}
192
a5a6755a
GB
193patch_format=
194
195check_patch_format () {
196 # early return if patch_format was set from the command line
197 if test -n "$patch_format"
198 then
199 return 0
200 fi
15ced753
GB
201
202 # we default to mbox format if input is from stdin and for
203 # directories
204 if test $# = 0 || test "x$1" = "x-" || test -d "$1"
205 then
206 patch_format=mbox
207 return 0
208 fi
209
0e8341f2
DB
210 # otherwise, check the first few non-blank lines of the first
211 # patch to try to detect its format
15ced753 212 {
0e8341f2
DB
213 # Start from first line containing non-whitespace
214 l1=
215 while test -z "$l1"
216 do
f0c5793b 217 read l1 || break
0e8341f2 218 done
15ced753
GB
219 read l2
220 read l3
221 case "$l1" in
222 "From "* | "From: "*)
223 patch_format=mbox
224 ;;
225 '# This series applies on GIT commit'*)
226 patch_format=stgit-series
227 ;;
228 "# HG changeset patch")
229 patch_format=hg
230 ;;
231 *)
232 # if the second line is empty and the third is
233 # a From, Author or Date entry, this is very
234 # likely an StGIT patch
235 case "$l2,$l3" in
236 ,"From: "* | ,"Author: "* | ,"Date: "*)
237 patch_format=stgit
238 ;;
239 *)
240 ;;
241 esac
242 ;;
243 esac
0fcb2caf
JH
244 if test -z "$patch_format" &&
245 test -n "$l1" &&
246 test -n "$l2" &&
247 test -n "$l3"
248 then
249 # This begins with three non-empty lines. Is this a
250 # piece of e-mail a-la RFC2822? Grab all the headers,
251 # discarding the indented remainder of folded lines,
252 # and see if it looks like that they all begin with the
253 # header field names...
e3f67d30
SB
254 tr -d '\015' <"$1" |
255 sed -n -e '/^$/q' -e '/^[ ]/d' -e p |
e1622bfc 256 sane_egrep -v '^[!-9;-~]+:' >/dev/null ||
0fcb2caf
JH
257 patch_format=mbox
258 fi
0cd29a03 259 } < "$1" || clean_abort
a5a6755a
GB
260}
261
262split_patches () {
263 case "$patch_format" in
264 mbox)
0fbb95dc 265 if test t = "$keepcr"
ad2c9280
SH
266 then
267 keep_cr=--keep-cr
268 else
269 keep_cr=
270 fi
c2ca1d79 271 git mailsplit -d"$prec" -o"$dotest" -b $keep_cr -- "$@" > "$dotest/last" ||
0cd29a03 272 clean_abort
a5a6755a 273 ;;
c574e683
GB
274 stgit-series)
275 if test $# -ne 1
276 then
d62a1461 277 clean_abort "$(gettext "Only one StGIT patch series can be applied at once")"
c574e683 278 fi
75ee3d70 279 series_dir=$(dirname "$1")
c574e683
GB
280 series_file="$1"
281 shift
282 {
283 set x
284 while read filename
285 do
286 set "$@" "$series_dir/$filename"
287 done
288 # remove the safety x
289 shift
290 # remove the arg coming from the first-line comment
291 shift
0cd29a03 292 } < "$series_file" || clean_abort
c574e683
GB
293 # set the patch format appropriately
294 patch_format=stgit
295 # now handle the actual StGIT patches
296 split_patches "$@"
297 ;;
298 stgit)
299 this=0
300 for stgit in "$@"
301 do
75ee3d70
EP
302 this=$(expr "$this" + 1)
303 msgnum=$(printf "%0${prec}d" $this)
c574e683
GB
304 # Perl version of StGIT parse_patch. The first nonemptyline
305 # not starting with Author, From or Date is the
306 # subject, and the body starts with the next nonempty
307 # line not starting with Author, From or Date
fcb06a8d 308 @@PERL@@ -ne 'BEGIN { $subject = 0 }
c574e683
GB
309 if ($subject > 1) { print ; }
310 elsif (/^\s+$/) { next ; }
45d51dc9 311 elsif (/^Author:/) { s/Author/From/ ; print ;}
c574e683
GB
312 elsif (/^(From|Date)/) { print ; }
313 elsif ($subject) {
314 $subject = 2 ;
315 print "\n" ;
316 print ;
317 } else {
318 print "Subject: ", $_ ;
319 $subject = 1;
320 }
0cd29a03 321 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
c574e683
GB
322 done
323 echo "$this" > "$dotest/last"
324 this=
325 msgnum=
326 ;;
0cfd1120
GB
327 hg)
328 this=0
329 for hg in "$@"
330 do
331 this=$(( $this + 1 ))
332 msgnum=$(printf "%0${prec}d" $this)
333 # hg stores changeset metadata in #-commented lines preceding
334 # the commit message and diff(s). The only metadata we care about
335 # are the User and Date (Node ID and Parent are hashes which are
336 # only relevant to the hg repository and thus not useful to us)
337 # Since we cannot guarantee that the commit message is in
338 # git-friendly format, we put no Subject: line and just consume
339 # all of the message as the body
fcb06a8d 340 LANG=C LC_ALL=C @@PERL@@ -M'POSIX qw(strftime)' -ne 'BEGIN { $subject = 0 }
0cfd1120
GB
341 if ($subject) { print ; }
342 elsif (/^\# User /) { s/\# User/From:/ ; print ; }
343 elsif (/^\# Date /) {
344 my ($hashsign, $str, $time, $tz) = split ;
345 $tz = sprintf "%+05d", (0-$tz)/36;
346 print "Date: " .
347 strftime("%a, %d %b %Y %H:%M:%S ",
348 localtime($time))
349 . "$tz\n";
350 } elsif (/^\# /) { next ; }
351 else {
352 print "\n", $_ ;
353 $subject = 1;
354 }
355 ' <"$hg" >"$dotest/$msgnum" || clean_abort
356 done
357 echo "$this" >"$dotest/last"
358 this=
359 msgnum=
360 ;;
a5a6755a 361 *)
dff4b0ef
GB
362 if test -n "$patch_format"
363 then
d62a1461 364 clean_abort "$(eval_gettext "Patch format \$patch_format is not supported.")"
46caf505 365 else
d62a1461 366 clean_abort "$(gettext "Patch format detection failed.")"
46caf505 367 fi
a5a6755a
GB
368 ;;
369 esac
370}
371
d1c5f2a4 372prec=4
51ef1daa 373dotest="$GIT_DIR/rebase-apply"
ad2c9280 374sign= utf8=t keep= keepcr= skip= interactive= resolved= rebasing= abort=
a078f732 375messageid= resolvemsg= resume= scissors= no_inbody_headers=
67dad687 376git_apply_opt=
3f01ad66 377committer_date_is_author_date=
a79ec62d 378ignore_date=
cb6020bb 379allow_rerere_autoupdate=
3b4e395f 380gpg_sign_opt=
d1c5f2a4 381
a078f732
PB
382if test "$(git config --bool --get am.messageid)" = true
383then
384 messageid=t
385fi
386
e80d4cbe
SH
387if test "$(git config --bool --get am.keepcr)" = true
388then
389 keepcr=t
390fi
391
822f7c73 392while test $# != 0
d1c5f2a4
JH
393do
394 case "$1" in
78443d90
PH
395 -i|--interactive)
396 interactive=t ;;
397 -b|--binary)
42e6504f
JX
398 gettextln >&2 "The -b/--binary option has been a no-op for long time, and
399it will be removed. Please do not use it anymore."
4eeb1de1 400 ;;
78443d90
PH
401 -3|--3way)
402 threeway=t ;;
dfdd7e66 403 -s|--signoff)
78443d90
PH
404 sign=t ;;
405 -u|--utf8)
406 utf8=t ;; # this is now default
407 --no-utf8)
408 utf8= ;;
a078f732
PB
409 -m|--message-id)
410 messageid=t ;;
411 --no-message-id)
412 messageid=f ;;
78443d90
PH
413 -k|--keep)
414 keep=t ;;
f7e5ea17
TR
415 --keep-non-patch)
416 keep=b ;;
017678b4
JH
417 -c|--scissors)
418 scissors=t ;;
419 --no-scissors)
420 scissors=f ;;
c8089af6 421 -r|--resolved|--continue)
78443d90
PH
422 resolved=t ;;
423 --skip)
424 skip=t ;;
3e5057a8
NS
425 --abort)
426 abort=t ;;
3041c324 427 --rebasing)
0fbb95dc 428 rebasing=t threeway=t ;;
88336623
NV
429 --resolvemsg=*)
430 resolvemsg="${1#--resolvemsg=}" ;;
431 --whitespace=*|--directory=*|--exclude=*|--include=*)
432 git_apply_opt="$git_apply_opt $(sq "$1")" ;;
433 -C*|-p*)
434 git_apply_opt="$git_apply_opt $(sq "$1")" ;;
435 --patch-format=*)
436 patch_format="${1#--patch-format=}" ;;
86c91f91 437 --reject|--ignore-whitespace|--ignore-space-change)
b80da424 438 git_apply_opt="$git_apply_opt $1" ;;
3f01ad66
JH
439 --committer-date-is-author-date)
440 committer_date_is_author_date=t ;;
a79ec62d
NS
441 --ignore-date)
442 ignore_date=t ;;
cb6020bb
JH
443 --rerere-autoupdate|--no-rerere-autoupdate)
444 allow_rerere_autoupdate="$1" ;;
0e987a12
SB
445 -q|--quiet)
446 GIT_QUIET=t ;;
ad2c9280
SH
447 --keep-cr)
448 keepcr=t ;;
e80d4cbe
SH
449 --no-keep-cr)
450 keepcr=f ;;
3b4e395f
NV
451 --gpg-sign)
452 gpg_sign_opt=-S ;;
453 --gpg-sign=*)
454 gpg_sign_opt="-S${1#--gpg-sign=}" ;;
d1c5f2a4 455 --)
78443d90 456 shift; break ;;
d1c5f2a4 457 *)
78443d90 458 usage ;;
d1c5f2a4 459 esac
78443d90 460 shift
d1c5f2a4
JH
461done
462
0c15cc92
JH
463# If the dotest directory exists, but we have finished applying all the
464# patches in them, clear it out.
d1c5f2a4 465if test -d "$dotest" &&
c30754f1
RR
466 test -f "$dotest/last" &&
467 test -f "$dotest/next" &&
d1c5f2a4
JH
468 last=$(cat "$dotest/last") &&
469 next=$(cat "$dotest/next") &&
470 test $# != 0 &&
471 test "$next" -gt "$last"
472then
473 rm -fr "$dotest"
474fi
475
c30754f1 476if test -d "$dotest" && test -f "$dotest/last" && test -f "$dotest/next"
d1c5f2a4 477then
3e5057a8 478 case "$#,$skip$resolved$abort" in
c95b1389
JH
479 0,*t*)
480 # Explicit resume command and we do not have file, so
481 # we are happy.
482 : ;;
483 0,)
484 # No file input but without resume parameters; catch
485 # user error to feed us a patch from standard input
e72c7406 486 # when there is already $dotest. This is somewhat
c95b1389
JH
487 # unreliable -- stdin could be /dev/null for example
488 # and the caller did not intend to feed us a patch but
489 # wanted to continue unattended.
98ef23b3 490 test -t 0
c95b1389
JH
491 ;;
492 *)
493 false
494 ;;
495 esac ||
79087259 496 die "$(eval_gettext "previous rebase directory \$dotest still exists but mbox given.")"
271440e3 497 resume=yes
3e5057a8 498
95f8ebbf 499 case "$skip,$abort" in
2d56a136 500 t,t)
79087259 501 die "$(gettext "Please make up your mind. --skip or --abort?")"
2d56a136 502 ;;
95f8ebbf
OM
503 t,)
504 git rerere clear
505 git read-tree --reset -u HEAD HEAD
506 orig_head=$(cat "$GIT_DIR/ORIG_HEAD")
507 git reset HEAD
508 git update-ref ORIG_HEAD $orig_head
509 ;;
510 ,t)
2d56a136
JH
511 if test -f "$dotest/rebasing"
512 then
513 exec git rebase --abort
514 fi
3e5057a8 515 git rerere clear
7b3b7e37
JH
516 if safe_to_abort
517 then
c767184d
MG
518 git read-tree --reset -u HEAD ORIG_HEAD
519 git reset ORIG_HEAD
7b3b7e37 520 fi
3e5057a8
NS
521 rm -fr "$dotest"
522 exit ;;
523 esac
c767184d 524 rm -f "$dotest/dirtyindex"
d1c5f2a4 525else
b141f3c9
RR
526 # Possible stray $dotest directory in the independent-run
527 # case; in the --rebasing case, it is upto the caller
528 # (git-rebase--am) to take care of stray directories.
529 if test -d "$dotest" && test -z "$rebasing"
530 then
531 case "$skip,$resolved,$abort" in
532 ,,t)
533 rm -fr "$dotest"
534 exit 0
535 ;;
536 *)
537 die "$(eval_gettext "Stray \$dotest directory found.
538Use \"git am --abort\" to remove it.")"
539 ;;
540 esac
541 fi
542
01689909 543 # Make sure we are not given --skip, --continue, or --abort
3e5057a8 544 test "$skip$resolved$abort" = "" ||
79087259 545 die "$(gettext "Resolve operation not in progress, we are not resuming.")"
d1c5f2a4
JH
546
547 # Start afresh.
548 mkdir -p "$dotest" || exit
549
bb034f83
JH
550 if test -n "$prefix" && test $# != 0
551 then
552 first=t
553 for arg
554 do
555 test -n "$first" && {
556 set x
557 first=
558 }
5e9677cb
PT
559 if is_absolute_path "$arg"
560 then
561 set "$@" "$arg"
562 else
563 set "$@" "$prefix$arg"
564 fi
bb034f83
JH
565 done
566 shift
567 fi
a5a6755a
GB
568
569 check_patch_format "$@"
570
571 split_patches "$@"
d1c5f2a4 572
017678b4
JH
573 # -i can and must be given when resuming; everything
574 # else is kept
9b9f5a22 575 echo " $git_apply_opt" >"$dotest/apply-opt"
22db240d 576 echo "$threeway" >"$dotest/threeway"
d1c5f2a4
JH
577 echo "$sign" >"$dotest/sign"
578 echo "$utf8" >"$dotest/utf8"
579 echo "$keep" >"$dotest/keep"
a078f732 580 echo "$messageid" >"$dotest/messageid"
017678b4 581 echo "$scissors" >"$dotest/scissors"
d25e5159 582 echo "$no_inbody_headers" >"$dotest/no_inbody_headers"
0e987a12 583 echo "$GIT_QUIET" >"$dotest/quiet"
d1c5f2a4 584 echo 1 >"$dotest/next"
3041c324
JH
585 if test -n "$rebasing"
586 then
587 : >"$dotest/rebasing"
588 else
589 : >"$dotest/applying"
f79d4c8a
NS
590 if test -n "$HAS_HEAD"
591 then
592 git update-ref ORIG_HEAD HEAD
593 else
594 git update-ref -d ORIG_HEAD >/dev/null 2>&1
595 fi
3041c324 596 fi
d1c5f2a4
JH
597fi
598
2a6f08ac
JK
599git update-index -q --refresh
600
0c15cc92
JH
601case "$resolved" in
602'')
f79d4c8a
NS
603 case "$HAS_HEAD" in
604 '')
605 files=$(git ls-files) ;;
606 ?*)
607 files=$(git diff-index --cached --name-only HEAD --) ;;
608 esac || exit
c767184d
MG
609 if test "$files"
610 then
f79d4c8a 611 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
79087259 612 die "$(eval_gettext "Dirty index: cannot apply patches (dirty: \$files)")"
c767184d 613 fi
0c15cc92
JH
614esac
615
f7e5ea17
TR
616# Now, decide what command line options we will give to the git
617# commands we invoke, based on the result of parsing command line
618# options and previous invocation state stored in $dotest/ files.
619
d1c5f2a4
JH
620if test "$(cat "$dotest/utf8")" = t
621then
622 utf8=-u
bb1091a4
JH
623else
624 utf8=-n
d1c5f2a4 625fi
f7e5ea17
TR
626keep=$(cat "$dotest/keep")
627case "$keep" in
628t)
629 keep=-k ;;
630b)
631 keep=-b ;;
632*)
633 keep= ;;
634esac
a078f732
PB
635case "$(cat "$dotest/messageid")" in
636t)
637 messageid=-m ;;
638f)
639 messageid= ;;
640esac
017678b4
JH
641case "$(cat "$dotest/scissors")" in
642t)
643 scissors=--scissors ;;
644f)
645 scissors=--no-scissors ;;
646esac
d25e5159
LS
647if test "$(cat "$dotest/no_inbody_headers")" = t
648then
649 no_inbody_headers=--no-inbody-headers
650else
651 no_inbody_headers=
652fi
0e987a12
SB
653if test "$(cat "$dotest/quiet")" = t
654then
655 GIT_QUIET=t
656fi
22db240d
JH
657if test "$(cat "$dotest/threeway")" = t
658then
659 threeway=t
660fi
9b9f5a22 661git_apply_opt=$(cat "$dotest/apply-opt")
d1c5f2a4
JH
662if test "$(cat "$dotest/sign")" = t
663then
75ee3d70 664 SIGNOFF=$(git var GIT_COMMITTER_IDENT | sed -e '
d1c5f2a4
JH
665 s/>.*/>/
666 s/^/Signed-off-by: /'
75ee3d70 667 )
d1c5f2a4
JH
668else
669 SIGNOFF=
670fi
d1c5f2a4 671
75ee3d70
EP
672last=$(cat "$dotest/last")
673this=$(cat "$dotest/next")
d1c5f2a4
JH
674if test "$skip" = t
675then
75ee3d70 676 this=$(expr "$this" + 1)
69224716 677 resume=
d1c5f2a4
JH
678fi
679
d1c5f2a4
JH
680while test "$this" -le "$last"
681do
75ee3d70
EP
682 msgnum=$(printf "%0${prec}d" $this)
683 next=$(expr "$this" + 1)
d1c5f2a4 684 test -f "$dotest/$msgnum" || {
69224716 685 resume=
d1c5f2a4
JH
686 go_next
687 continue
688 }
0c15cc92
JH
689
690 # If we are not resuming, parse and extract the patch information
691 # into separate files:
692 # - info records the authorship and title
693 # - msg is the rest of commit log message
694 # - patch is the patch body.
695 #
696 # When we are resuming, these files are either already prepared
8ceb6fbd 697 # by the user, or the user can tell us to do so by --continue flag.
271440e3
JH
698 case "$resume" in
699 '')
0fbb95dc
MZ
700 if test -f "$dotest/rebasing"
701 then
5e835cac
JH
702 commit=$(sed -e 's/^From \([0-9a-f]*\) .*/\1/' \
703 -e q "$dotest/$msgnum") &&
0fbb95dc
MZ
704 test "$(git cat-file -t "$commit")" = commit ||
705 stop_here $this
5e835cac
JH
706 git cat-file commit "$commit" |
707 sed -e '1,/^$/d' >"$dotest/msg-clean"
0fbb95dc
MZ
708 echo "$commit" >"$dotest/original-commit"
709 get_author_ident_from_commit "$commit" >"$dotest/author-script"
4ae6d469 710 git diff-tree --root --binary --full-index "$commit" >"$dotest/patch"
5e835cac 711 else
a078f732 712 git mailinfo $keep $no_inbody_headers $messageid $scissors $utf8 "$dotest/msg" "$dotest/patch" \
0fbb95dc
MZ
713 <"$dotest/$msgnum" >"$dotest/info" ||
714 stop_here $this
715
716 # skip pine's internal folder data
717 sane_grep '^Author: Mail System Internal Data$' \
718 <"$dotest"/info >/dev/null &&
719 go_next && continue
720
721 test -s "$dotest/patch" || {
722 eval_gettextln "Patch is empty. Was it split wrong?
723If you would prefer to skip this patch, instead run \"\$cmdline --skip\".
724To restore the original branch and stop patching run \"\$cmdline --abort\"."
725 stop_here $this
726 }
727 rm -f "$dotest/original-commit" "$dotest/author-script"
c970a6fd
JH
728 {
729 sed -n '/^Subject/ s/Subject: //p' "$dotest/info"
730 echo
731 cat "$dotest/msg"
732 } |
733 git stripspace > "$dotest/msg-clean"
5e835cac 734 fi
271440e3
JH
735 ;;
736 esac
d1c5f2a4 737
43c23251
JS
738 if test -f "$dotest/author-script"
739 then
740 eval $(cat "$dotest/author-script")
741 else
742 GIT_AUTHOR_NAME="$(sed -n '/^Author/ s/Author: //p' "$dotest/info")"
743 GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' "$dotest/info")"
744 GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' "$dotest/info")"
745 fi
e0e3ba20 746
3b78959e 747 if test -z "$GIT_AUTHOR_EMAIL"
e0e3ba20 748 then
de88c1ce 749 gettextln "Patch does not have a valid e-mail address."
e0e3ba20
JH
750 stop_here $this
751 fi
752
2c674191 753 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
d1c5f2a4 754
4bfb6b62
JH
755 case "$resume" in
756 '')
757 if test '' != "$SIGNOFF"
758 then
75ee3d70 759 LAST_SIGNED_OFF_BY=$(
4bfb6b62
JH
760 sed -ne '/^Signed-off-by: /p' \
761 "$dotest/msg-clean" |
b4ce54fc 762 sed -ne '$p'
75ee3d70
EP
763 )
764 ADD_SIGNOFF=$(
4bfb6b62 765 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || {
d1c5f2a4
JH
766 test '' = "$LAST_SIGNED_OFF_BY" && echo
767 echo "$SIGNOFF"
75ee3d70 768 })
4bfb6b62 769 else
d1c5f2a4 770 ADD_SIGNOFF=
4bfb6b62
JH
771 fi
772 {
d1c5f2a4
JH
773 if test -s "$dotest/msg-clean"
774 then
d1c5f2a4
JH
775 cat "$dotest/msg-clean"
776 fi
777 if test '' != "$ADD_SIGNOFF"
778 then
779 echo "$ADD_SIGNOFF"
780 fi
4bfb6b62
JH
781 } >"$dotest/final-commit"
782 ;;
0c15cc92 783 *)
6d28644d 784 case "$resolved$interactive" in
0c15cc92
JH
785 tt)
786 # This is used only for interactive view option.
38762c47 787 git diff-index -p --cached HEAD -- >"$dotest/patch"
0c15cc92
JH
788 ;;
789 esac
4bfb6b62 790 esac
d1c5f2a4 791
4bfb6b62 792 resume=
d1c5f2a4
JH
793 if test "$interactive" = t
794 then
a1451104 795 test -t 0 ||
79087259 796 die "$(gettext "cannot be interactive without stdin connected to a terminal.")"
d1c5f2a4
JH
797 action=again
798 while test "$action" = again
799 do
de88c1ce 800 gettextln "Commit Body is:"
d1c5f2a4
JH
801 echo "--------------------------"
802 cat "$dotest/final-commit"
803 echo "--------------------------"
7a74d04a
ÆAB
804 # TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
805 # in your translation. The program will only accept English
806 # input at this point.
807 gettext "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
d1c5f2a4
JH
808 read reply
809 case "$reply" in
f89ad67f
JH
810 [yY]*) action=yes ;;
811 [aA]*) action=yes interactive= ;;
812 [nN]*) action=skip ;;
ef0c2abf 813 [eE]*) git_editor "$dotest/final-commit"
d1c5f2a4 814 action=again ;;
f89ad67f 815 [vV]*) action=again
f6dff119 816 git_pager "$dotest/patch" ;;
f89ad67f 817 *) action=again ;;
d1c5f2a4
JH
818 esac
819 done
820 else
821 action=yes
822 fi
92f65e6a 823
d1c5f2a4
JH
824 if test $action = skip
825 then
826 go_next
827 continue
828 fi
829
830 if test -x "$GIT_DIR"/hooks/applypatch-msg
831 then
832 "$GIT_DIR"/hooks/applypatch-msg "$dotest/final-commit" ||
833 stop_here $this
834 fi
835
b34a9129
SR
836 if test -f "$dotest/final-commit"
837 then
838 FIRSTLINE=$(sed 1q "$dotest/final-commit")
839 else
840 FIRSTLINE=""
841 fi
842
dff1a983 843 say "$(eval_gettext "Applying: \$FIRSTLINE")"
d1c5f2a4 844
0c15cc92
JH
845 case "$resolved" in
846 '')
3ddd1703
SB
847 # When we are allowed to fall back to 3-way later, don't give
848 # false errors during the initial attempt.
849 squelch=
850 if test "$threeway" = t
851 then
852 squelch='>/dev/null 2>&1 '
853 fi
854 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
0c15cc92
JH
855 apply_status=$?
856 ;;
857 t)
858 # Resolved means the user did all the hard work, and
859 # we do not have to do any patch application. Just
860 # trust what the user has in the index file and the
861 # working tree.
862 resolved=
38762c47 863 git diff-index --quiet --cached HEAD -- && {
de88c1ce 864 gettextln "No changes - did you forget to use 'git add'?
bd8643ae 865If there is nothing left to stage, chances are that something else
de88c1ce 866already introduced the same changes; you might want to skip this patch."
ced9456a 867 stop_here_user_resolve $this
06aff47b 868 }
5be60078 869 unmerged=$(git ls-files -u)
c1d1128b
JH
870 if test -n "$unmerged"
871 then
de88c1ce
JS
872 gettextln "You still have unmerged paths in your index
873did you forget to use 'git add'?"
ced9456a 874 stop_here_user_resolve $this
c1d1128b 875 fi
0c15cc92 876 apply_status=0
b4372ef1 877 git rerere
0c15cc92
JH
878 ;;
879 esac
880
0ba17dd0 881 if test $apply_status != 0 && test "$threeway" = t
d1c5f2a4 882 then
73319032 883 if (fall_back_3way)
d1c5f2a4 884 then
73319032
JH
885 # Applying the patch to an earlier tree and merging the
886 # result may have produced the same tree as ours.
38762c47 887 git diff-index --quiet --cached HEAD -- && {
dff1a983 888 say "$(gettext "No changes -- Patch already applied.")"
06aff47b
AR
889 go_next
890 continue
891 }
73319032
JH
892 # clear apply_status -- we have successfully merged.
893 apply_status=0
d1c5f2a4
JH
894 fi
895 fi
896 if test $apply_status != 0
897 then
de88c1ce 898 eval_gettextln 'Patch failed at $msgnum $FIRSTLINE'
14bf2d58
PG
899 if test "$(git config --bool advice.amworkdir)" != false
900 then
a312a271
NTND
901 eval_gettextln 'The copy of the patch that failed is found in:
902 $dotest/patch'
14bf2d58 903 fi
ced9456a 904 stop_here_user_resolve $this
d1c5f2a4
JH
905 fi
906
907 if test -x "$GIT_DIR"/hooks/pre-applypatch
908 then
909 "$GIT_DIR"/hooks/pre-applypatch || stop_here $this
910 fi
911
5be60078 912 tree=$(git write-tree) &&
3f01ad66 913 commit=$(
a79ec62d
NS
914 if test -n "$ignore_date"
915 then
916 GIT_AUTHOR_DATE=
917 fi
f79d4c8a 918 parent=$(git rev-parse --verify -q HEAD) ||
dff1a983 919 say >&2 "$(gettext "applying to an empty history")"
f79d4c8a 920
3f01ad66
JH
921 if test -n "$committer_date_is_author_date"
922 then
923 GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
924 export GIT_COMMITTER_DATE
925 fi &&
3b4e395f
NV
926 git commit-tree ${parent:+-p} $parent ${gpg_sign_opt:+"$gpg_sign_opt"} $tree \
927 <"$dotest/final-commit"
3f01ad66 928 ) &&
2e6e3e82 929 git update-ref -m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD $commit $parent ||
d1c5f2a4
JH
930 stop_here $this
931
96e19488
TR
932 if test -f "$dotest/original-commit"; then
933 echo "$(cat "$dotest/original-commit") $commit" >> "$dotest/rewritten"
934 fi
935
d1c5f2a4
JH
936 if test -x "$GIT_DIR"/hooks/post-applypatch
937 then
938 "$GIT_DIR"/hooks/post-applypatch
939 fi
940
941 go_next
942done
943
eb2151bb
TR
944if test -s "$dotest"/rewritten; then
945 git notes copy --for-rewrite=rebase < "$dotest"/rewritten
946 if test -x "$GIT_DIR"/hooks/post-rewrite; then
96e19488 947 "$GIT_DIR"/hooks/post-rewrite rebase < "$dotest"/rewritten
eb2151bb 948 fi
96e19488
TR
949fi
950
a1549e10
RR
951# If am was called with --rebasing (from git-rebase--am), it's up to
952# the caller to take care of housekeeping.
953if ! test -f "$dotest/rebasing"
954then
955 rm -fr "$dotest"
956 git gc --auto
957fi