]> git.ipfire.org Git - thirdparty/git.git/blame - git-am.sh
git apply: option to ignore whitespace differences
[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
PH
6OPTIONS_KEEPDASHDASH=
7OPTIONS_SPEC="\
588c038a 8git am [options] [<mbox>|<Maildir>...]
09f8d055 9git am [options] (--resolved | --skip | --abort)
78443d90 10--
66006c63 11i,interactive run interactively
98ef23b3 12b,binary* (historical option -- no-op)
78443d90 133,3way allow fall back on 3way merging if needed
0e987a12 14q,quiet be quiet
78443d90
PH
15s,signoff add a Signed-off-by line to the commit message
16u,utf8 recode into utf8 (default)
fe1fa946 17k,keep pass -k flag to git-mailinfo
78443d90 18whitespace= pass it through git-apply
86c91f91
GB
19ignore-space-change pass it through git-apply
20ignore-whitespace pass it through git-apply
b47dfe9e 21directory= pass it through git-apply
78443d90
PH
22C= pass it through git-apply
23p= pass it through git-apply
a5a6755a 24patch-format= format the patch(es) are in
b80da424 25reject pass it through git-apply
78443d90
PH
26resolvemsg= override error message when patch failure occurs
27r,resolved to be used after a patch failure
3041c324 28skip skip the current patch
3e5057a8 29abort restore the original branch and abort the patching operation.
3f01ad66 30committer-date-is-author-date lie about committer date
a79ec62d 31ignore-date use current timestamp for author date
98ef23b3 32rebasing* (internal use for git-rebase)"
78443d90 33
cf1fe88c 34. git-sh-setup
bb034f83 35prefix=$(git rev-parse --show-prefix)
f9474132 36set_reflog_action am
7eff28a9 37require_work_tree
c1491841 38cd_to_toplevel
d1c5f2a4 39
460abee5
SB
40git var GIT_COMMITTER_IDENT >/dev/null ||
41 die "You need to set your committer info first"
d64e6b04 42
f79d4c8a
NS
43if git rev-parse --verify -q HEAD >/dev/null
44then
45 HAS_HEAD=yes
46else
47 HAS_HEAD=
48fi
49
b47dfe9e 50sq () {
47c9739e 51 git rev-parse --sq-quote "$@"
b47dfe9e
JH
52}
53
d1c5f2a4
JH
54stop_here () {
55 echo "$1" >"$dotest/next"
56 exit 1
57}
58
ced9456a 59stop_here_user_resolve () {
cc120056 60 if [ -n "$resolvemsg" ]; then
a23bfaed 61 printf '%s\n' "$resolvemsg"
cc120056
SE
62 stop_here $1
63 fi
75e1645f 64 cmdline="git am"
ced9456a
RS
65 if test '' != "$interactive"
66 then
67 cmdline="$cmdline -i"
68 fi
69 if test '' != "$threeway"
70 then
71 cmdline="$cmdline -3"
72 fi
ced9456a
RS
73 echo "When you have resolved this problem run \"$cmdline --resolved\"."
74 echo "If you would prefer to skip this patch, instead run \"$cmdline --skip\"."
3e5057a8 75 echo "To restore the original branch and stop patching run \"$cmdline --abort\"."
ced9456a
RS
76
77 stop_here $1
78}
79
d1c5f2a4
JH
80go_next () {
81 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
82 "$dotest/patch" "$dotest/info"
83 echo "$next" >"$dotest/next"
84 this=$next
85}
86
fd7bcfb5
JH
87cannot_fallback () {
88 echo "$1"
89 echo "Cannot fall back to three-way merge."
90 exit 1
91}
92
d1c5f2a4
JH
93fall_back_3way () {
94 O_OBJECT=`cd "$GIT_OBJECT_DIRECTORY" && pwd`
95
96 rm -fr "$dotest"/patch-merge-*
97 mkdir "$dotest/patch-merge-tmp-dir"
98
99 # First see if the patch records the index info that we can use.
7a988699
JS
100 git apply --build-fake-ancestor "$dotest/patch-merge-tmp-index" \
101 "$dotest/patch" &&
fd7bcfb5 102 GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \
5be60078 103 git write-tree >"$dotest/patch-merge-base+" ||
b1440cc8 104 cannot_fallback "Repository lacks necessary blobs to fall back on 3-way merge."
fd7bcfb5 105
0e987a12 106 say Using index info to reconstruct a base tree...
fd7bcfb5 107 if GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \
cb3a160d 108 git apply --cached <"$dotest/patch"
d1c5f2a4 109 then
d1c5f2a4
JH
110 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
111 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
fd7bcfb5
JH
112 else
113 cannot_fallback "Did you hand edit your patch?
114It does not apply to blobs recorded in its index."
d1c5f2a4
JH
115 fi
116
117 test -f "$dotest/patch-merge-index" &&
5be60078 118 his_tree=$(GIT_INDEX_FILE="$dotest/patch-merge-index" git write-tree) &&
d1c5f2a4
JH
119 orig_tree=$(cat "$dotest/patch-merge-base") &&
120 rm -fr "$dotest"/patch-merge-* || exit 1
121
0e987a12 122 say Falling back to patching base and 3-way merge...
d1c5f2a4
JH
123
124 # This is not so wrong. Depending on which base we picked,
125 # orig_tree may be wildly different from ours, but his_tree
126 # has the same set of wildly different changes in parts the
579c9bb1 127 # patch did not touch, so recursive ends up canceling them,
d1c5f2a4
JH
128 # saying that we reverted all those changes.
129
2e6e3e82 130 eval GITHEAD_$his_tree='"$FIRSTLINE"'
579c9bb1 131 export GITHEAD_$his_tree
0e987a12
SB
132 if test -n "$GIT_QUIET"
133 then
134 export GIT_MERGE_VERBOSITY=0
135 fi
579c9bb1 136 git-merge-recursive $orig_tree -- HEAD $his_tree || {
b4372ef1 137 git rerere
d1c5f2a4
JH
138 echo Failed to merge in the changes.
139 exit 1
140 }
579c9bb1 141 unset GITHEAD_$his_tree
d1c5f2a4
JH
142}
143
0cd29a03
GB
144clean_abort () {
145 test $# = 0 || echo >&2 "$@"
146 rm -fr "$dotest"
147 exit 1
148}
149
a5a6755a
GB
150patch_format=
151
152check_patch_format () {
153 # early return if patch_format was set from the command line
154 if test -n "$patch_format"
155 then
156 return 0
157 fi
15ced753
GB
158
159 # we default to mbox format if input is from stdin and for
160 # directories
161 if test $# = 0 || test "x$1" = "x-" || test -d "$1"
162 then
163 patch_format=mbox
164 return 0
165 fi
166
167 # otherwise, check the first few lines of the first patch to try
168 # to detect its format
169 {
170 read l1
171 read l2
172 read l3
173 case "$l1" in
174 "From "* | "From: "*)
175 patch_format=mbox
176 ;;
177 '# This series applies on GIT commit'*)
178 patch_format=stgit-series
179 ;;
180 "# HG changeset patch")
181 patch_format=hg
182 ;;
183 *)
184 # if the second line is empty and the third is
185 # a From, Author or Date entry, this is very
186 # likely an StGIT patch
187 case "$l2,$l3" in
188 ,"From: "* | ,"Author: "* | ,"Date: "*)
189 patch_format=stgit
190 ;;
191 *)
192 ;;
193 esac
194 ;;
195 esac
0cd29a03 196 } < "$1" || clean_abort
a5a6755a
GB
197}
198
199split_patches () {
200 case "$patch_format" in
201 mbox)
0cd29a03
GB
202 git mailsplit -d"$prec" -o"$dotest" -b -- "$@" > "$dotest/last" ||
203 clean_abort
a5a6755a 204 ;;
c574e683
GB
205 stgit-series)
206 if test $# -ne 1
207 then
0cd29a03 208 clean_abort "Only one StGIT patch series can be applied at once"
c574e683
GB
209 fi
210 series_dir=`dirname "$1"`
211 series_file="$1"
212 shift
213 {
214 set x
215 while read filename
216 do
217 set "$@" "$series_dir/$filename"
218 done
219 # remove the safety x
220 shift
221 # remove the arg coming from the first-line comment
222 shift
0cd29a03 223 } < "$series_file" || clean_abort
c574e683
GB
224 # set the patch format appropriately
225 patch_format=stgit
226 # now handle the actual StGIT patches
227 split_patches "$@"
228 ;;
229 stgit)
230 this=0
231 for stgit in "$@"
232 do
233 this=`expr "$this" + 1`
234 msgnum=`printf "%0${prec}d" $this`
235 # Perl version of StGIT parse_patch. The first nonemptyline
236 # not starting with Author, From or Date is the
237 # subject, and the body starts with the next nonempty
238 # line not starting with Author, From or Date
239 perl -ne 'BEGIN { $subject = 0 }
240 if ($subject > 1) { print ; }
241 elsif (/^\s+$/) { next ; }
242 elsif (/^Author:/) { print s/Author/From/ ; }
243 elsif (/^(From|Date)/) { print ; }
244 elsif ($subject) {
245 $subject = 2 ;
246 print "\n" ;
247 print ;
248 } else {
249 print "Subject: ", $_ ;
250 $subject = 1;
251 }
0cd29a03 252 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
c574e683
GB
253 done
254 echo "$this" > "$dotest/last"
255 this=
256 msgnum=
257 ;;
a5a6755a 258 *)
0cd29a03 259 clean_abort "Patch format $patch_format is not supported."
a5a6755a
GB
260 ;;
261 esac
262}
263
d1c5f2a4 264prec=4
51ef1daa 265dotest="$GIT_DIR/rebase-apply"
a2003379 266sign= utf8=t keep= skip= interactive= resolved= rebasing= abort=
3f0a8f3c 267resolvemsg= resume=
67dad687 268git_apply_opt=
3f01ad66 269committer_date_is_author_date=
a79ec62d 270ignore_date=
d1c5f2a4 271
822f7c73 272while test $# != 0
d1c5f2a4
JH
273do
274 case "$1" in
78443d90
PH
275 -i|--interactive)
276 interactive=t ;;
277 -b|--binary)
cb3a160d 278 : ;;
78443d90
PH
279 -3|--3way)
280 threeway=t ;;
dfdd7e66 281 -s|--signoff)
78443d90
PH
282 sign=t ;;
283 -u|--utf8)
284 utf8=t ;; # this is now default
285 --no-utf8)
286 utf8= ;;
287 -k|--keep)
288 keep=t ;;
289 -r|--resolved)
290 resolved=t ;;
291 --skip)
292 skip=t ;;
3e5057a8
NS
293 --abort)
294 abort=t ;;
3041c324 295 --rebasing)
cb3a160d 296 rebasing=t threeway=t keep=t ;;
78443d90 297 -d|--dotest)
e72c7406
JH
298 die "-d option is no longer supported. Do not use."
299 ;;
78443d90
PH
300 --resolvemsg)
301 shift; resolvemsg=$1 ;;
b47dfe9e
JH
302 --whitespace|--directory)
303 git_apply_opt="$git_apply_opt $(sq "$1=$2")"; shift ;;
78443d90 304 -C|-p)
b47dfe9e 305 git_apply_opt="$git_apply_opt $(sq "$1$2")"; shift ;;
a5a6755a
GB
306 --patch-format)
307 shift ; patch_format="$1" ;;
86c91f91 308 --reject|--ignore-whitespace|--ignore-space-change)
b80da424 309 git_apply_opt="$git_apply_opt $1" ;;
3f01ad66
JH
310 --committer-date-is-author-date)
311 committer_date_is_author_date=t ;;
a79ec62d
NS
312 --ignore-date)
313 ignore_date=t ;;
0e987a12
SB
314 -q|--quiet)
315 GIT_QUIET=t ;;
d1c5f2a4 316 --)
78443d90 317 shift; break ;;
d1c5f2a4 318 *)
78443d90 319 usage ;;
d1c5f2a4 320 esac
78443d90 321 shift
d1c5f2a4
JH
322done
323
0c15cc92
JH
324# If the dotest directory exists, but we have finished applying all the
325# patches in them, clear it out.
d1c5f2a4
JH
326if test -d "$dotest" &&
327 last=$(cat "$dotest/last") &&
328 next=$(cat "$dotest/next") &&
329 test $# != 0 &&
330 test "$next" -gt "$last"
331then
332 rm -fr "$dotest"
333fi
334
335if test -d "$dotest"
336then
3e5057a8 337 case "$#,$skip$resolved$abort" in
c95b1389
JH
338 0,*t*)
339 # Explicit resume command and we do not have file, so
340 # we are happy.
341 : ;;
342 0,)
343 # No file input but without resume parameters; catch
344 # user error to feed us a patch from standard input
e72c7406 345 # when there is already $dotest. This is somewhat
c95b1389
JH
346 # unreliable -- stdin could be /dev/null for example
347 # and the caller did not intend to feed us a patch but
348 # wanted to continue unattended.
98ef23b3 349 test -t 0
c95b1389
JH
350 ;;
351 *)
352 false
353 ;;
354 esac ||
28ed6e7b 355 die "previous rebase directory $dotest still exists but mbox given."
271440e3 356 resume=yes
3e5057a8 357
95f8ebbf 358 case "$skip,$abort" in
2d56a136
JH
359 t,t)
360 die "Please make up your mind. --skip or --abort?"
361 ;;
95f8ebbf
OM
362 t,)
363 git rerere clear
364 git read-tree --reset -u HEAD HEAD
365 orig_head=$(cat "$GIT_DIR/ORIG_HEAD")
366 git reset HEAD
367 git update-ref ORIG_HEAD $orig_head
368 ;;
369 ,t)
2d56a136
JH
370 if test -f "$dotest/rebasing"
371 then
372 exec git rebase --abort
373 fi
3e5057a8 374 git rerere clear
c767184d
MG
375 test -f "$dotest/dirtyindex" || {
376 git read-tree --reset -u HEAD ORIG_HEAD
377 git reset ORIG_HEAD
378 }
3e5057a8
NS
379 rm -fr "$dotest"
380 exit ;;
381 esac
c767184d 382 rm -f "$dotest/dirtyindex"
d1c5f2a4 383else
3e5057a8
NS
384 # Make sure we are not given --skip, --resolved, nor --abort
385 test "$skip$resolved$abort" = "" ||
cc120056 386 die "Resolve operation not in progress, we are not resuming."
d1c5f2a4
JH
387
388 # Start afresh.
389 mkdir -p "$dotest" || exit
390
bb034f83
JH
391 if test -n "$prefix" && test $# != 0
392 then
393 first=t
394 for arg
395 do
396 test -n "$first" && {
397 set x
398 first=
399 }
400 case "$arg" in
401 /*)
402 set "$@" "$arg" ;;
403 *)
404 set "$@" "$prefix$arg" ;;
405 esac
406 done
407 shift
408 fi
a5a6755a
GB
409
410 check_patch_format "$@"
411
412 split_patches "$@"
d1c5f2a4 413
0e987a12 414 # -s, -u, -k, --whitespace, -3, -C, -q and -p flags are kept
a2003379 415 # for the resuming session after a patch failure.
22db240d 416 # -i can and must be given when resuming.
9b9f5a22 417 echo " $git_apply_opt" >"$dotest/apply-opt"
22db240d 418 echo "$threeway" >"$dotest/threeway"
d1c5f2a4
JH
419 echo "$sign" >"$dotest/sign"
420 echo "$utf8" >"$dotest/utf8"
421 echo "$keep" >"$dotest/keep"
0e987a12 422 echo "$GIT_QUIET" >"$dotest/quiet"
d1c5f2a4 423 echo 1 >"$dotest/next"
3041c324
JH
424 if test -n "$rebasing"
425 then
426 : >"$dotest/rebasing"
427 else
428 : >"$dotest/applying"
f79d4c8a
NS
429 if test -n "$HAS_HEAD"
430 then
431 git update-ref ORIG_HEAD HEAD
432 else
433 git update-ref -d ORIG_HEAD >/dev/null 2>&1
434 fi
3041c324 435 fi
d1c5f2a4
JH
436fi
437
0c15cc92
JH
438case "$resolved" in
439'')
f79d4c8a
NS
440 case "$HAS_HEAD" in
441 '')
442 files=$(git ls-files) ;;
443 ?*)
444 files=$(git diff-index --cached --name-only HEAD --) ;;
445 esac || exit
c767184d
MG
446 if test "$files"
447 then
f79d4c8a 448 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
c767184d
MG
449 die "Dirty index: cannot apply patches (dirty: $files)"
450 fi
0c15cc92
JH
451esac
452
d1c5f2a4
JH
453if test "$(cat "$dotest/utf8")" = t
454then
455 utf8=-u
bb1091a4
JH
456else
457 utf8=-n
d1c5f2a4
JH
458fi
459if test "$(cat "$dotest/keep")" = t
460then
461 keep=-k
462fi
0e987a12
SB
463if test "$(cat "$dotest/quiet")" = t
464then
465 GIT_QUIET=t
466fi
22db240d
JH
467if test "$(cat "$dotest/threeway")" = t
468then
469 threeway=t
470fi
9b9f5a22 471git_apply_opt=$(cat "$dotest/apply-opt")
d1c5f2a4
JH
472if test "$(cat "$dotest/sign")" = t
473then
5354a56f 474 SIGNOFF=`git var GIT_COMMITTER_IDENT | sed -e '
d1c5f2a4
JH
475 s/>.*/>/
476 s/^/Signed-off-by: /'
477 `
478else
479 SIGNOFF=
480fi
d1c5f2a4
JH
481
482last=`cat "$dotest/last"`
483this=`cat "$dotest/next"`
484if test "$skip" = t
485then
486 this=`expr "$this" + 1`
69224716 487 resume=
d1c5f2a4
JH
488fi
489
490if test "$this" -gt "$last"
491then
0e987a12 492 say Nothing to do.
d1c5f2a4
JH
493 rm -fr "$dotest"
494 exit
495fi
496
497while test "$this" -le "$last"
498do
499 msgnum=`printf "%0${prec}d" $this`
500 next=`expr "$this" + 1`
501 test -f "$dotest/$msgnum" || {
69224716 502 resume=
d1c5f2a4
JH
503 go_next
504 continue
505 }
0c15cc92
JH
506
507 # If we are not resuming, parse and extract the patch information
508 # into separate files:
509 # - info records the authorship and title
510 # - msg is the rest of commit log message
511 # - patch is the patch body.
512 #
513 # When we are resuming, these files are either already prepared
514 # by the user, or the user can tell us to do so by --resolved flag.
271440e3
JH
515 case "$resume" in
516 '')
5be60078 517 git mailinfo $keep $utf8 "$dotest/msg" "$dotest/patch" \
271440e3
JH
518 <"$dotest/$msgnum" >"$dotest/info" ||
519 stop_here $this
ca193cf1
JS
520
521 # skip pine's internal folder data
522 grep '^Author: Mail System Internal Data$' \
523 <"$dotest"/info >/dev/null &&
524 go_next && continue
525
28ed6e7b 526 test -s "$dotest/patch" || {
6777c380 527 echo "Patch is empty. Was it split wrong?"
87ab7992
DZ
528 stop_here $this
529 }
5e835cac
JH
530 if test -f "$dotest/rebasing" &&
531 commit=$(sed -e 's/^From \([0-9a-f]*\) .*/\1/' \
532 -e q "$dotest/$msgnum") &&
533 test "$(git cat-file -t "$commit")" = commit
534 then
535 git cat-file commit "$commit" |
536 sed -e '1,/^$/d' >"$dotest/msg-clean"
537 else
538 SUBJECT="$(sed -n '/^Subject/ s/Subject: //p' "$dotest/info")"
539 case "$keep_subject" in -k) SUBJECT="[PATCH] $SUBJECT" ;; esac
540
41a3e3aa 541 (printf '%s\n\n' "$SUBJECT"; cat "$dotest/msg") |
5e835cac
JH
542 git stripspace > "$dotest/msg-clean"
543 fi
271440e3
JH
544 ;;
545 esac
d1c5f2a4
JH
546
547 GIT_AUTHOR_NAME="$(sed -n '/^Author/ s/Author: //p' "$dotest/info")"
548 GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' "$dotest/info")"
549 GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' "$dotest/info")"
e0e3ba20 550
3b78959e 551 if test -z "$GIT_AUTHOR_EMAIL"
e0e3ba20 552 then
3b78959e 553 echo "Patch does not have a valid e-mail address."
e0e3ba20
JH
554 stop_here $this
555 fi
556
2c674191 557 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
d1c5f2a4 558
4bfb6b62
JH
559 case "$resume" in
560 '')
561 if test '' != "$SIGNOFF"
562 then
d1c5f2a4 563 LAST_SIGNED_OFF_BY=`
4bfb6b62
JH
564 sed -ne '/^Signed-off-by: /p' \
565 "$dotest/msg-clean" |
b4ce54fc 566 sed -ne '$p'
d1c5f2a4 567 `
4bfb6b62
JH
568 ADD_SIGNOFF=`
569 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || {
d1c5f2a4
JH
570 test '' = "$LAST_SIGNED_OFF_BY" && echo
571 echo "$SIGNOFF"
4bfb6b62
JH
572 }`
573 else
d1c5f2a4 574 ADD_SIGNOFF=
4bfb6b62
JH
575 fi
576 {
d1c5f2a4
JH
577 if test -s "$dotest/msg-clean"
578 then
d1c5f2a4
JH
579 cat "$dotest/msg-clean"
580 fi
581 if test '' != "$ADD_SIGNOFF"
582 then
583 echo "$ADD_SIGNOFF"
584 fi
4bfb6b62
JH
585 } >"$dotest/final-commit"
586 ;;
0c15cc92 587 *)
6d28644d 588 case "$resolved$interactive" in
0c15cc92
JH
589 tt)
590 # This is used only for interactive view option.
38762c47 591 git diff-index -p --cached HEAD -- >"$dotest/patch"
0c15cc92
JH
592 ;;
593 esac
4bfb6b62 594 esac
d1c5f2a4 595
4bfb6b62 596 resume=
d1c5f2a4
JH
597 if test "$interactive" = t
598 then
a1451104
JH
599 test -t 0 ||
600 die "cannot be interactive without stdin connected to a terminal."
d1c5f2a4
JH
601 action=again
602 while test "$action" = again
603 do
604 echo "Commit Body is:"
605 echo "--------------------------"
606 cat "$dotest/final-commit"
607 echo "--------------------------"
9754563c 608 printf "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
d1c5f2a4
JH
609 read reply
610 case "$reply" in
f89ad67f
JH
611 [yY]*) action=yes ;;
612 [aA]*) action=yes interactive= ;;
613 [nN]*) action=skip ;;
ef0c2abf 614 [eE]*) git_editor "$dotest/final-commit"
d1c5f2a4 615 action=again ;;
f89ad67f
JH
616 [vV]*) action=again
617 LESS=-S ${PAGER:-less} "$dotest/patch" ;;
618 *) action=again ;;
d1c5f2a4
JH
619 esac
620 done
621 else
622 action=yes
623 fi
1d9b2656 624 FIRSTLINE=$(sed 1q "$dotest/final-commit")
d1c5f2a4
JH
625
626 if test $action = skip
627 then
628 go_next
629 continue
630 fi
631
632 if test -x "$GIT_DIR"/hooks/applypatch-msg
633 then
634 "$GIT_DIR"/hooks/applypatch-msg "$dotest/final-commit" ||
635 stop_here $this
636 fi
637
0e987a12 638 say "Applying: $FIRSTLINE"
d1c5f2a4 639
0c15cc92
JH
640 case "$resolved" in
641 '')
3ddd1703
SB
642 # When we are allowed to fall back to 3-way later, don't give
643 # false errors during the initial attempt.
644 squelch=
645 if test "$threeway" = t
646 then
647 squelch='>/dev/null 2>&1 '
648 fi
649 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
0c15cc92
JH
650 apply_status=$?
651 ;;
652 t)
653 # Resolved means the user did all the hard work, and
654 # we do not have to do any patch application. Just
655 # trust what the user has in the index file and the
656 # working tree.
657 resolved=
38762c47 658 git diff-index --quiet --cached HEAD -- && {
64646d11 659 echo "No changes - did you forget to use 'git add'?"
ced9456a 660 stop_here_user_resolve $this
06aff47b 661 }
5be60078 662 unmerged=$(git ls-files -u)
c1d1128b
JH
663 if test -n "$unmerged"
664 then
665 echo "You still have unmerged paths in your index"
64646d11 666 echo "did you forget to use 'git add'?"
ced9456a 667 stop_here_user_resolve $this
c1d1128b 668 fi
0c15cc92 669 apply_status=0
b4372ef1 670 git rerere
0c15cc92
JH
671 ;;
672 esac
673
d1c5f2a4
JH
674 if test $apply_status = 1 && test "$threeway" = t
675 then
73319032 676 if (fall_back_3way)
d1c5f2a4 677 then
73319032
JH
678 # Applying the patch to an earlier tree and merging the
679 # result may have produced the same tree as ours.
38762c47 680 git diff-index --quiet --cached HEAD -- && {
0e987a12 681 say No changes -- Patch already applied.
06aff47b
AR
682 go_next
683 continue
684 }
73319032
JH
685 # clear apply_status -- we have successfully merged.
686 apply_status=0
d1c5f2a4
JH
687 fi
688 fi
689 if test $apply_status != 0
690 then
4d2e283a 691 printf 'Patch failed at %s %s\n' "$msgnum" "$FIRSTLINE"
ced9456a 692 stop_here_user_resolve $this
d1c5f2a4
JH
693 fi
694
695 if test -x "$GIT_DIR"/hooks/pre-applypatch
696 then
697 "$GIT_DIR"/hooks/pre-applypatch || stop_here $this
698 fi
699
5be60078 700 tree=$(git write-tree) &&
3f01ad66 701 commit=$(
a79ec62d
NS
702 if test -n "$ignore_date"
703 then
704 GIT_AUTHOR_DATE=
705 fi
f79d4c8a 706 parent=$(git rev-parse --verify -q HEAD) ||
0e987a12 707 say >&2 "applying to an empty history"
f79d4c8a 708
3f01ad66
JH
709 if test -n "$committer_date_is_author_date"
710 then
711 GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
712 export GIT_COMMITTER_DATE
713 fi &&
ea10b60c 714 git commit-tree $tree ${parent:+-p} $parent <"$dotest/final-commit"
3f01ad66 715 ) &&
2e6e3e82 716 git update-ref -m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD $commit $parent ||
d1c5f2a4
JH
717 stop_here $this
718
719 if test -x "$GIT_DIR"/hooks/post-applypatch
720 then
721 "$GIT_DIR"/hooks/post-applypatch
722 fi
723
724 go_next
725done
726
e0cd252e
MS
727git gc --auto
728
d1c5f2a4 729rm -fr "$dotest"