blob: 463c741dfc259927b4429f19972ced21d87c215e [file] [log] [blame]
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -07001#!/bin/sh
2#
Junio C Hamanod64e6b02006-02-18 20:51:26 -08003# Copyright (c) 2005, 2006 Junio C Hamano
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -07004
Jeff Kingc1491842008-03-01 01:22:55 -05005SUBDIRECTORY_OK=Yes
Pierre Habouzit78443d92007-11-04 11:30:57 +01006OPTIONS_KEEPDASHDASH=
7OPTIONS_SPEC="\
Štěpán Němec0adda932010-10-08 19:31:17 +02008git am [options] [(<mbox>|<Maildir>)...]
Stephan Beyer09f8d052008-07-25 20:22:23 +02009git am [options] (--resolved | --skip | --abort)
Pierre Habouzit78443d92007-11-04 11:30:57 +010010--
Junio C Hamano66006c62007-11-08 23:04:31 -080011i,interactive run interactively
Jay Soffian98ef23b2009-01-28 10:03:10 -050012b,binary* (historical option -- no-op)
Pierre Habouzit78443d92007-11-04 11:30:57 +0100133,3way allow fall back on 3way merging if needed
Stephen Boyd0e987a12009-06-16 15:33:01 -070014q,quiet be quiet
Pierre Habouzit78443d92007-11-04 11:30:57 +010015s,signoff add a Signed-off-by line to the commit message
16u,utf8 recode into utf8 (default)
Jörg Sommerfe1fa942008-02-03 00:58:06 +010017k,keep pass -k flag to git-mailinfo
Stefan-W. Hahnad2c9282010-02-27 15:20:26 +010018keep-cr pass --keep-cr flag to git-mailsplit for mbox format
Stefan-W. Hahne80d4cb2010-02-27 15:20:27 +010019no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr
Junio C Hamano017678b2009-08-26 21:36:05 -070020c,scissors strip everything before a scissors line
Pierre Habouzit78443d92007-11-04 11:30:57 +010021whitespace= pass it through git-apply
Giuseppe Bilotta86c91f92009-08-04 13:16:49 +020022ignore-space-change pass it through git-apply
23ignore-whitespace pass it through git-apply
Junio C Hamanob47dfe92009-01-11 22:21:48 -080024directory= pass it through git-apply
Pierre Habouzit78443d92007-11-04 11:30:57 +010025C= pass it through git-apply
26p= pass it through git-apply
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +020027patch-format= format the patch(es) are in
martin f. krafftb80da422009-01-23 11:31:21 +110028reject pass it through git-apply
Pierre Habouzit78443d92007-11-04 11:30:57 +010029resolvemsg= override error message when patch failure occurs
Jeff Kingc8089af2010-02-11 17:27:14 -050030continue continue applying patches after resolving a conflict
31r,resolved synonyms for --continue
Junio C Hamano3041c322008-03-04 00:25:06 -080032skip skip the current patch
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090033abort restore the original branch and abort the patching operation.
Junio C Hamano3f01ad62009-01-22 16:14:58 -080034committer-date-is-author-date lie about committer date
Nanako Shiraishia79ec622009-01-24 10:18:02 +090035ignore-date use current timestamp for author date
Junio C Hamanocb6020b2009-12-04 00:20:48 -080036rerere-autoupdate update the index with reused conflict resolution if possible
Jay Soffian98ef23b2009-01-28 10:03:10 -050037rebasing* (internal use for git-rebase)"
Pierre Habouzit78443d92007-11-04 11:30:57 +010038
freku045@student.liu.secf1fe882005-12-13 23:30:31 +010039. git-sh-setup
Ævar Arnfjörð Bjarmasonb9a97262011-05-21 18:43:42 +000040. git-sh-i18n
Junio C Hamanobb034f82008-03-04 00:25:04 -080041prefix=$(git rev-parse --show-prefix)
Shawn O. Pearcef9474132006-12-28 02:34:48 -050042set_reflog_action am
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -050043require_work_tree
Jeff Kingc1491842008-03-01 01:22:55 -050044cd_to_toplevel
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -070045
Stephan Beyer460abee2008-07-12 17:46:59 +020046git var GIT_COMMITTER_IDENT >/dev/null ||
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +000047 die "$(gettext "You need to set your committer info first")"
Junio C Hamanod64e6b02006-02-18 20:51:26 -080048
Nanako Shiraishif79d4c82009-04-10 09:34:42 +090049if git rev-parse --verify -q HEAD >/dev/null
50then
51 HAS_HEAD=yes
52else
53 HAS_HEAD=
54fi
55
Ramkumar Ramachandrad2c46312010-06-02 10:33:35 +020056cmdline="git am"
57if test '' != "$interactive"
58then
59 cmdline="$cmdline -i"
60fi
61if test '' != "$threeway"
62then
63 cmdline="$cmdline -3"
64fi
65
Junio C Hamanob47dfe92009-01-11 22:21:48 -080066sq () {
Christian Couder47c97392009-04-24 08:29:01 +020067 git rev-parse --sq-quote "$@"
Junio C Hamanob47dfe92009-01-11 22:21:48 -080068}
69
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -070070stop_here () {
71 echo "$1" >"$dotest/next"
Junio C Hamano7b3b7e32010-12-21 10:35:53 -080072 git rev-parse --verify -q HEAD >"$dotest/abort-safety"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -070073 exit 1
74}
75
Junio C Hamano7b3b7e32010-12-21 10:35:53 -080076safe_to_abort () {
77 if test -f "$dotest/dirtyindex"
78 then
79 return 1
80 fi
81
82 if ! test -s "$dotest/abort-safety"
83 then
84 return 0
85 fi
86
87 abort_safety=$(cat "$dotest/abort-safety")
88 if test "z$(git rev-parse --verify -q HEAD)" = "z$abort_safety"
89 then
90 return 0
91 fi
Ævar Arnfjörð Bjarmason22fdd112011-05-21 18:43:46 +000092 (
93 gettext "You seem to have moved HEAD since the last 'am' failure.
94Not rewinding to ORIG_HEAD" &&
95 echo
96 ) >&2
Junio C Hamano7b3b7e32010-12-21 10:35:53 -080097 return 1
98}
99
Robert Shearmanced94562006-05-02 13:32:43 +0100100stop_here_user_resolve () {
Seancc120052006-05-13 23:34:08 -0400101 if [ -n "$resolvemsg" ]; then
Jeff Kinga23bfae2007-05-26 00:33:03 -0700102 printf '%s\n' "$resolvemsg"
Seancc120052006-05-13 23:34:08 -0400103 stop_here $1
104 fi
Ævar Arnfjörð Bjarmasona4372c32011-05-21 18:43:45 +0000105 eval_gettext "When you have resolved this problem run \"\$cmdline --resolved\".
106If you would prefer to skip this patch, instead run \"\$cmdline --skip\".
107To restore the original branch and stop patching run \"\$cmdline --abort\"."; echo
Robert Shearmanced94562006-05-02 13:32:43 +0100108
109 stop_here $1
110}
111
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700112go_next () {
113 rm -f "$dotest/$msgnum" "$dotest/msg" "$dotest/msg-clean" \
114 "$dotest/patch" "$dotest/info"
115 echo "$next" >"$dotest/next"
116 this=$next
117}
118
Junio C Hamanofd7bcfb2006-08-12 16:16:47 -0700119cannot_fallback () {
120 echo "$1"
Ævar Arnfjörð Bjarmason81dd2fe2011-05-21 18:43:43 +0000121 gettext "Cannot fall back to three-way merge."; echo
Junio C Hamanofd7bcfb2006-08-12 16:16:47 -0700122 exit 1
123}
124
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700125fall_back_3way () {
126 O_OBJECT=`cd "$GIT_OBJECT_DIRECTORY" && pwd`
127
128 rm -fr "$dotest"/patch-merge-*
129 mkdir "$dotest/patch-merge-tmp-dir"
130
131 # First see if the patch records the index info that we can use.
Johannes Schindelin7a988692007-09-17 23:34:06 +0100132 git apply --build-fake-ancestor "$dotest/patch-merge-tmp-index" \
133 "$dotest/patch" &&
Junio C Hamanofd7bcfb2006-08-12 16:16:47 -0700134 GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \
Junio C Hamano5be60072007-07-02 22:52:14 -0700135 git write-tree >"$dotest/patch-merge-base+" ||
Ævar Arnfjörð Bjarmasona424ca12011-05-21 18:43:48 +0000136 cannot_fallback "$(gettext "Repository lacks necessary blobs to fall back on 3-way merge.")"
Junio C Hamanofd7bcfb2006-08-12 16:16:47 -0700137
Stephen Boyd0e987a12009-06-16 15:33:01 -0700138 say Using index info to reconstruct a base tree...
Junio C Hamanofd7bcfb2006-08-12 16:16:47 -0700139 if GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \
Stephan Beyercb3a1602008-08-09 01:28:54 +0200140 git apply --cached <"$dotest/patch"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700141 then
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700142 mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base"
143 mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"
Junio C Hamanofd7bcfb2006-08-12 16:16:47 -0700144 else
Ævar Arnfjörð Bjarmasona424ca12011-05-21 18:43:48 +0000145 cannot_fallback "$(gettext "Did you hand edit your patch?
146It does not apply to blobs recorded in its index.")"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700147 fi
148
149 test -f "$dotest/patch-merge-index" &&
Junio C Hamano5be60072007-07-02 22:52:14 -0700150 his_tree=$(GIT_INDEX_FILE="$dotest/patch-merge-index" git write-tree) &&
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700151 orig_tree=$(cat "$dotest/patch-merge-base") &&
152 rm -fr "$dotest"/patch-merge-* || exit 1
153
Ævar Arnfjörð Bjarmason865207a2011-05-21 18:43:51 +0000154 say "$(gettext "Falling back to patching base and 3-way merge...")"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700155
156 # This is not so wrong. Depending on which base we picked,
157 # orig_tree may be wildly different from ours, but his_tree
158 # has the same set of wildly different changes in parts the
Shawn O. Pearce579c9bb2006-12-28 02:35:27 -0500159 # patch did not touch, so recursive ends up canceling them,
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700160 # saying that we reverted all those changes.
161
Linus Torvalds2e6e3e8292008-04-15 12:56:50 -0700162 eval GITHEAD_$his_tree='"$FIRSTLINE"'
Shawn O. Pearce579c9bb2006-12-28 02:35:27 -0500163 export GITHEAD_$his_tree
Stephen Boyd0e987a12009-06-16 15:33:01 -0700164 if test -n "$GIT_QUIET"
165 then
Junio C Hamano69ae92b2010-10-13 11:36:36 -0700166 GIT_MERGE_VERBOSITY=0 && export GIT_MERGE_VERBOSITY
Stephen Boyd0e987a12009-06-16 15:33:01 -0700167 fi
Shawn O. Pearce579c9bb2006-12-28 02:35:27 -0500168 git-merge-recursive $orig_tree -- HEAD $his_tree || {
Junio C Hamanocb6020b2009-12-04 00:20:48 -0800169 git rerere $allow_rerere_autoupdate
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700170 echo Failed to merge in the changes.
171 exit 1
172 }
Shawn O. Pearce579c9bb2006-12-28 02:35:27 -0500173 unset GITHEAD_$his_tree
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700174}
175
Giuseppe Bilotta0cd29a02009-05-27 11:25:19 +0200176clean_abort () {
177 test $# = 0 || echo >&2 "$@"
178 rm -fr "$dotest"
179 exit 1
180}
181
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200182patch_format=
183
184check_patch_format () {
185 # early return if patch_format was set from the command line
186 if test -n "$patch_format"
187 then
188 return 0
189 fi
Giuseppe Bilotta15ced752009-05-27 23:20:12 +0200190
191 # we default to mbox format if input is from stdin and for
192 # directories
193 if test $# = 0 || test "x$1" = "x-" || test -d "$1"
194 then
195 patch_format=mbox
196 return 0
197 fi
198
199 # otherwise, check the first few lines of the first patch to try
200 # to detect its format
201 {
202 read l1
203 read l2
204 read l3
205 case "$l1" in
206 "From "* | "From: "*)
207 patch_format=mbox
208 ;;
209 '# This series applies on GIT commit'*)
210 patch_format=stgit-series
211 ;;
212 "# HG changeset patch")
213 patch_format=hg
214 ;;
215 *)
216 # if the second line is empty and the third is
217 # a From, Author or Date entry, this is very
218 # likely an StGIT patch
219 case "$l2,$l3" in
220 ,"From: "* | ,"Author: "* | ,"Date: "*)
221 patch_format=stgit
222 ;;
223 *)
224 ;;
225 esac
226 ;;
227 esac
Junio C Hamano0fcb2ca2009-08-06 20:08:12 -0500228 if test -z "$patch_format" &&
229 test -n "$l1" &&
230 test -n "$l2" &&
231 test -n "$l3"
232 then
233 # This begins with three non-empty lines. Is this a
234 # piece of e-mail a-la RFC2822? Grab all the headers,
235 # discarding the indented remainder of folded lines,
236 # and see if it looks like that they all begin with the
237 # header field names...
Stephen Boyde3f67d32010-01-25 16:33:59 -0800238 tr -d '\015' <"$1" |
239 sed -n -e '/^$/q' -e '/^[ ]/d' -e p |
Junio C Hamanoe1622bf2009-11-23 15:56:32 -0800240 sane_egrep -v '^[!-9;-~]+:' >/dev/null ||
Junio C Hamano0fcb2ca2009-08-06 20:08:12 -0500241 patch_format=mbox
242 fi
Giuseppe Bilotta0cd29a02009-05-27 11:25:19 +0200243 } < "$1" || clean_abort
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200244}
245
246split_patches () {
247 case "$patch_format" in
248 mbox)
Stefan-W. Hahne80d4cb2010-02-27 15:20:27 +0100249 if test -n "$rebasing" || test t = "$keepcr"
Stefan-W. Hahnad2c9282010-02-27 15:20:26 +0100250 then
251 keep_cr=--keep-cr
252 else
253 keep_cr=
254 fi
Junio C Hamanoc2ca1d72009-08-04 22:31:59 -0500255 git mailsplit -d"$prec" -o"$dotest" -b $keep_cr -- "$@" > "$dotest/last" ||
Giuseppe Bilotta0cd29a02009-05-27 11:25:19 +0200256 clean_abort
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200257 ;;
Giuseppe Bilottac574e682009-05-27 11:25:18 +0200258 stgit-series)
259 if test $# -ne 1
260 then
Ævar Arnfjörð Bjarmasond62a1462011-05-21 18:43:49 +0000261 clean_abort "$(gettext "Only one StGIT patch series can be applied at once")"
Giuseppe Bilottac574e682009-05-27 11:25:18 +0200262 fi
263 series_dir=`dirname "$1"`
264 series_file="$1"
265 shift
266 {
267 set x
268 while read filename
269 do
270 set "$@" "$series_dir/$filename"
271 done
272 # remove the safety x
273 shift
274 # remove the arg coming from the first-line comment
275 shift
Giuseppe Bilotta0cd29a02009-05-27 11:25:19 +0200276 } < "$series_file" || clean_abort
Giuseppe Bilottac574e682009-05-27 11:25:18 +0200277 # set the patch format appropriately
278 patch_format=stgit
279 # now handle the actual StGIT patches
280 split_patches "$@"
281 ;;
282 stgit)
283 this=0
284 for stgit in "$@"
285 do
286 this=`expr "$this" + 1`
287 msgnum=`printf "%0${prec}d" $this`
288 # Perl version of StGIT parse_patch. The first nonemptyline
289 # not starting with Author, From or Date is the
290 # subject, and the body starts with the next nonempty
291 # line not starting with Author, From or Date
292 perl -ne 'BEGIN { $subject = 0 }
293 if ($subject > 1) { print ; }
294 elsif (/^\s+$/) { next ; }
295 elsif (/^Author:/) { print s/Author/From/ ; }
296 elsif (/^(From|Date)/) { print ; }
297 elsif ($subject) {
298 $subject = 2 ;
299 print "\n" ;
300 print ;
301 } else {
302 print "Subject: ", $_ ;
303 $subject = 1;
304 }
Giuseppe Bilotta0cd29a02009-05-27 11:25:19 +0200305 ' < "$stgit" > "$dotest/$msgnum" || clean_abort
Giuseppe Bilottac574e682009-05-27 11:25:18 +0200306 done
307 echo "$this" > "$dotest/last"
308 this=
309 msgnum=
310 ;;
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200311 *)
Nicolas Sebrecht46caf502009-08-06 20:08:13 -0500312 if test -n "$parse_patch" ; then
Ævar Arnfjörð Bjarmasond62a1462011-05-21 18:43:49 +0000313 clean_abort "$(eval_gettext "Patch format \$patch_format is not supported.")"
Nicolas Sebrecht46caf502009-08-06 20:08:13 -0500314 else
Ævar Arnfjörð Bjarmasond62a1462011-05-21 18:43:49 +0000315 clean_abort "$(gettext "Patch format detection failed.")"
Nicolas Sebrecht46caf502009-08-06 20:08:13 -0500316 fi
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200317 ;;
318 esac
319}
320
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700321prec=4
Johannes Schindelin51ef1da2008-07-21 12:51:02 +0200322dotest="$GIT_DIR/rebase-apply"
Stefan-W. Hahnad2c9282010-02-27 15:20:26 +0100323sign= utf8=t keep= keepcr= skip= interactive= resolved= rebasing= abort=
Lukas Sandströmd25e5152009-11-20 17:12:47 +0100324resolvemsg= resume= scissors= no_inbody_headers=
Michael S. Tsirkin67dad682007-02-08 15:57:08 +0200325git_apply_opt=
Junio C Hamano3f01ad62009-01-22 16:14:58 -0800326committer_date_is_author_date=
Nanako Shiraishia79ec622009-01-24 10:18:02 +0900327ignore_date=
Junio C Hamanocb6020b2009-12-04 00:20:48 -0800328allow_rerere_autoupdate=
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700329
Stefan-W. Hahne80d4cb2010-02-27 15:20:27 +0100330if test "$(git config --bool --get am.keepcr)" = true
331then
332 keepcr=t
333fi
334
David Kastrup822f7c72007-09-23 22:42:08 +0200335while test $# != 0
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700336do
337 case "$1" in
Pierre Habouzit78443d92007-11-04 11:30:57 +0100338 -i|--interactive)
339 interactive=t ;;
340 -b|--binary)
Stephan Beyercb3a1602008-08-09 01:28:54 +0200341 : ;;
Pierre Habouzit78443d92007-11-04 11:30:57 +0100342 -3|--3way)
343 threeway=t ;;
Johannes Sixtdfdd7e62007-11-06 21:33:58 +0100344 -s|--signoff)
Pierre Habouzit78443d92007-11-04 11:30:57 +0100345 sign=t ;;
346 -u|--utf8)
347 utf8=t ;; # this is now default
348 --no-utf8)
349 utf8= ;;
350 -k|--keep)
351 keep=t ;;
Junio C Hamano017678b2009-08-26 21:36:05 -0700352 -c|--scissors)
353 scissors=t ;;
354 --no-scissors)
355 scissors=f ;;
Jeff Kingc8089af2010-02-11 17:27:14 -0500356 -r|--resolved|--continue)
Pierre Habouzit78443d92007-11-04 11:30:57 +0100357 resolved=t ;;
358 --skip)
359 skip=t ;;
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900360 --abort)
361 abort=t ;;
Junio C Hamano3041c322008-03-04 00:25:06 -0800362 --rebasing)
Lukas Sandströmd25e5152009-11-20 17:12:47 +0100363 rebasing=t threeway=t keep=t scissors=f no_inbody_headers=t ;;
Pierre Habouzit78443d92007-11-04 11:30:57 +0100364 -d|--dotest)
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +0000365 die "$(gettext "-d option is no longer supported. Do not use.")"
Junio C Hamanoe72c7402008-03-04 00:25:05 -0800366 ;;
Pierre Habouzit78443d92007-11-04 11:30:57 +0100367 --resolvemsg)
368 shift; resolvemsg=$1 ;;
Junio C Hamanob47dfe92009-01-11 22:21:48 -0800369 --whitespace|--directory)
370 git_apply_opt="$git_apply_opt $(sq "$1=$2")"; shift ;;
Pierre Habouzit78443d92007-11-04 11:30:57 +0100371 -C|-p)
Junio C Hamanob47dfe92009-01-11 22:21:48 -0800372 git_apply_opt="$git_apply_opt $(sq "$1$2")"; shift ;;
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200373 --patch-format)
374 shift ; patch_format="$1" ;;
Giuseppe Bilotta86c91f92009-08-04 13:16:49 +0200375 --reject|--ignore-whitespace|--ignore-space-change)
martin f. krafftb80da422009-01-23 11:31:21 +1100376 git_apply_opt="$git_apply_opt $1" ;;
Junio C Hamano3f01ad62009-01-22 16:14:58 -0800377 --committer-date-is-author-date)
378 committer_date_is_author_date=t ;;
Nanako Shiraishia79ec622009-01-24 10:18:02 +0900379 --ignore-date)
380 ignore_date=t ;;
Junio C Hamanocb6020b2009-12-04 00:20:48 -0800381 --rerere-autoupdate|--no-rerere-autoupdate)
382 allow_rerere_autoupdate="$1" ;;
Stephen Boyd0e987a12009-06-16 15:33:01 -0700383 -q|--quiet)
384 GIT_QUIET=t ;;
Stefan-W. Hahnad2c9282010-02-27 15:20:26 +0100385 --keep-cr)
386 keepcr=t ;;
Stefan-W. Hahne80d4cb2010-02-27 15:20:27 +0100387 --no-keep-cr)
388 keepcr=f ;;
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700389 --)
Pierre Habouzit78443d92007-11-04 11:30:57 +0100390 shift; break ;;
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700391 *)
Pierre Habouzit78443d92007-11-04 11:30:57 +0100392 usage ;;
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700393 esac
Pierre Habouzit78443d92007-11-04 11:30:57 +0100394 shift
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700395done
396
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800397# If the dotest directory exists, but we have finished applying all the
398# patches in them, clear it out.
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700399if test -d "$dotest" &&
400 last=$(cat "$dotest/last") &&
401 next=$(cat "$dotest/next") &&
402 test $# != 0 &&
403 test "$next" -gt "$last"
404then
405 rm -fr "$dotest"
406fi
407
408if test -d "$dotest"
409then
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900410 case "$#,$skip$resolved$abort" in
Junio C Hamanoc95b1382006-09-15 23:19:02 -0700411 0,*t*)
412 # Explicit resume command and we do not have file, so
413 # we are happy.
414 : ;;
415 0,)
416 # No file input but without resume parameters; catch
417 # user error to feed us a patch from standard input
Junio C Hamanoe72c7402008-03-04 00:25:05 -0800418 # when there is already $dotest. This is somewhat
Junio C Hamanoc95b1382006-09-15 23:19:02 -0700419 # unreliable -- stdin could be /dev/null for example
420 # and the caller did not intend to feed us a patch but
421 # wanted to continue unattended.
Jay Soffian98ef23b2009-01-28 10:03:10 -0500422 test -t 0
Junio C Hamanoc95b1382006-09-15 23:19:02 -0700423 ;;
424 *)
425 false
426 ;;
427 esac ||
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +0000428 die "$(eval_gettext "previous rebase directory \$dotest still exists but mbox given.")"
Junio C Hamano271440e2005-10-25 23:35:37 -0700429 resume=yes
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900430
Olivier Marin95f8ebb2008-07-21 15:39:06 +0200431 case "$skip,$abort" in
Junio C Hamano2d56a132009-02-26 11:24:29 -0800432 t,t)
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +0000433 die "$(gettext "Please make up your mind. --skip or --abort?")"
Junio C Hamano2d56a132009-02-26 11:24:29 -0800434 ;;
Olivier Marin95f8ebb2008-07-21 15:39:06 +0200435 t,)
436 git rerere clear
437 git read-tree --reset -u HEAD HEAD
438 orig_head=$(cat "$GIT_DIR/ORIG_HEAD")
439 git reset HEAD
440 git update-ref ORIG_HEAD $orig_head
441 ;;
442 ,t)
Junio C Hamano2d56a132009-02-26 11:24:29 -0800443 if test -f "$dotest/rebasing"
444 then
445 exec git rebase --abort
446 fi
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900447 git rerere clear
Junio C Hamano7b3b7e32010-12-21 10:35:53 -0800448 if safe_to_abort
449 then
Michael J Gruberc7671842009-02-26 10:52:53 +0100450 git read-tree --reset -u HEAD ORIG_HEAD
451 git reset ORIG_HEAD
Junio C Hamano7b3b7e32010-12-21 10:35:53 -0800452 fi
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900453 rm -fr "$dotest"
454 exit ;;
455 esac
Michael J Gruberc7671842009-02-26 10:52:53 +0100456 rm -f "$dotest/dirtyindex"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700457else
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900458 # Make sure we are not given --skip, --resolved, nor --abort
459 test "$skip$resolved$abort" = "" ||
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +0000460 die "$(gettext "Resolve operation not in progress, we are not resuming.")"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700461
462 # Start afresh.
463 mkdir -p "$dotest" || exit
464
Junio C Hamanobb034f82008-03-04 00:25:04 -0800465 if test -n "$prefix" && test $# != 0
466 then
467 first=t
468 for arg
469 do
470 test -n "$first" && {
471 set x
472 first=
473 }
Pat Thoyts5e9677c2010-09-30 14:24:07 +0100474 if is_absolute_path "$arg"
475 then
476 set "$@" "$arg"
477 else
478 set "$@" "$prefix$arg"
479 fi
Junio C Hamanobb034f82008-03-04 00:25:04 -0800480 done
481 shift
482 fi
Giuseppe Bilottaa5a67552009-05-27 11:25:16 +0200483
484 check_patch_format "$@"
485
486 split_patches "$@"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700487
Junio C Hamano017678b2009-08-26 21:36:05 -0700488 # -i can and must be given when resuming; everything
489 # else is kept
Junio C Hamano9b9f5a22008-12-05 11:19:43 -0800490 echo " $git_apply_opt" >"$dotest/apply-opt"
Junio C Hamano22db2402008-12-04 15:38:27 -0800491 echo "$threeway" >"$dotest/threeway"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700492 echo "$sign" >"$dotest/sign"
493 echo "$utf8" >"$dotest/utf8"
494 echo "$keep" >"$dotest/keep"
Stefan-W. Hahnad2c9282010-02-27 15:20:26 +0100495 echo "$keepcr" >"$dotest/keepcr"
Junio C Hamano017678b2009-08-26 21:36:05 -0700496 echo "$scissors" >"$dotest/scissors"
Lukas Sandströmd25e5152009-11-20 17:12:47 +0100497 echo "$no_inbody_headers" >"$dotest/no_inbody_headers"
Stephen Boyd0e987a12009-06-16 15:33:01 -0700498 echo "$GIT_QUIET" >"$dotest/quiet"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700499 echo 1 >"$dotest/next"
Junio C Hamano3041c322008-03-04 00:25:06 -0800500 if test -n "$rebasing"
501 then
502 : >"$dotest/rebasing"
503 else
504 : >"$dotest/applying"
Nanako Shiraishif79d4c82009-04-10 09:34:42 +0900505 if test -n "$HAS_HEAD"
506 then
507 git update-ref ORIG_HEAD HEAD
508 else
509 git update-ref -d ORIG_HEAD >/dev/null 2>&1
510 fi
Junio C Hamano3041c322008-03-04 00:25:06 -0800511 fi
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700512fi
513
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800514case "$resolved" in
515'')
Nanako Shiraishif79d4c82009-04-10 09:34:42 +0900516 case "$HAS_HEAD" in
517 '')
518 files=$(git ls-files) ;;
519 ?*)
520 files=$(git diff-index --cached --name-only HEAD --) ;;
521 esac || exit
Michael J Gruberc7671842009-02-26 10:52:53 +0100522 if test "$files"
523 then
Nanako Shiraishif79d4c82009-04-10 09:34:42 +0900524 test -n "$HAS_HEAD" && : >"$dotest/dirtyindex"
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +0000525 die "$(eval_gettext "Dirty index: cannot apply patches (dirty: \$files)")"
Michael J Gruberc7671842009-02-26 10:52:53 +0100526 fi
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800527esac
528
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700529if test "$(cat "$dotest/utf8")" = t
530then
531 utf8=-u
Junio C Hamanobb1091a2007-01-09 21:31:36 -0800532else
533 utf8=-n
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700534fi
535if test "$(cat "$dotest/keep")" = t
536then
537 keep=-k
538fi
Stefan-W. Hahne80d4cb2010-02-27 15:20:27 +0100539case "$(cat "$dotest/keepcr")" in
540t)
541 keepcr=--keep-cr ;;
542f)
543 keepcr=--no-keep-cr ;;
544esac
Junio C Hamano017678b2009-08-26 21:36:05 -0700545case "$(cat "$dotest/scissors")" in
546t)
547 scissors=--scissors ;;
548f)
549 scissors=--no-scissors ;;
550esac
Lukas Sandströmd25e5152009-11-20 17:12:47 +0100551if test "$(cat "$dotest/no_inbody_headers")" = t
552then
553 no_inbody_headers=--no-inbody-headers
554else
555 no_inbody_headers=
556fi
Stephen Boyd0e987a12009-06-16 15:33:01 -0700557if test "$(cat "$dotest/quiet")" = t
558then
559 GIT_QUIET=t
560fi
Junio C Hamano22db2402008-12-04 15:38:27 -0800561if test "$(cat "$dotest/threeway")" = t
562then
563 threeway=t
564fi
Junio C Hamano9b9f5a22008-12-05 11:19:43 -0800565git_apply_opt=$(cat "$dotest/apply-opt")
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700566if test "$(cat "$dotest/sign")" = t
567then
Todd Zullinger5354a562008-07-30 13:48:33 -0400568 SIGNOFF=`git var GIT_COMMITTER_IDENT | sed -e '
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700569 s/>.*/>/
570 s/^/Signed-off-by: /'
571 `
572else
573 SIGNOFF=
574fi
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700575
576last=`cat "$dotest/last"`
577this=`cat "$dotest/next"`
578if test "$skip" = t
579then
580 this=`expr "$this" + 1`
Jan Harkes69224712005-12-17 01:01:06 -0500581 resume=
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700582fi
583
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700584while test "$this" -le "$last"
585do
586 msgnum=`printf "%0${prec}d" $this`
587 next=`expr "$this" + 1`
588 test -f "$dotest/$msgnum" || {
Jan Harkes69224712005-12-17 01:01:06 -0500589 resume=
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700590 go_next
591 continue
592 }
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800593
594 # If we are not resuming, parse and extract the patch information
595 # into separate files:
596 # - info records the authorship and title
597 # - msg is the rest of commit log message
598 # - patch is the patch body.
599 #
600 # When we are resuming, these files are either already prepared
601 # by the user, or the user can tell us to do so by --resolved flag.
Junio C Hamano271440e2005-10-25 23:35:37 -0700602 case "$resume" in
603 '')
Lukas Sandströmd25e5152009-11-20 17:12:47 +0100604 git mailinfo $keep $no_inbody_headers $scissors $utf8 "$dotest/msg" "$dotest/patch" \
Junio C Hamano271440e2005-10-25 23:35:37 -0700605 <"$dotest/$msgnum" >"$dotest/info" ||
606 stop_here $this
Johannes Schindelinca193cf2007-07-24 01:02:25 +0100607
608 # skip pine's internal folder data
Junio C Hamanoe1622bf2009-11-23 15:56:32 -0800609 sane_grep '^Author: Mail System Internal Data$' \
Johannes Schindelinca193cf2007-07-24 01:02:25 +0100610 <"$dotest"/info >/dev/null &&
611 go_next && continue
612
Johannes Schindelin28ed6e72008-07-16 03:33:44 +0200613 test -s "$dotest/patch" || {
Ævar Arnfjörð Bjarmasona4372c32011-05-21 18:43:45 +0000614 eval_gettext "Patch is empty. Was it split wrong?
615If you would prefer to skip this patch, instead run \"\$cmdline --skip\".
616To restore the original branch and stop patching run \"\$cmdline --abort\"."; echo
Don Zickus87ab7992007-03-12 15:52:04 -0400617 stop_here $this
618 }
Jay Soffian43c23252010-06-16 03:12:40 -0400619 rm -f "$dotest/original-commit" "$dotest/author-script"
Junio C Hamano5e835ca2008-04-16 12:50:48 -0700620 if test -f "$dotest/rebasing" &&
621 commit=$(sed -e 's/^From \([0-9a-f]*\) .*/\1/' \
622 -e q "$dotest/$msgnum") &&
623 test "$(git cat-file -t "$commit")" = commit
624 then
625 git cat-file commit "$commit" |
626 sed -e '1,/^$/d' >"$dotest/msg-clean"
Thomas Rast96e19482010-03-12 18:04:29 +0100627 echo "$commit" > "$dotest/original-commit"
Jay Soffian43c23252010-06-16 03:12:40 -0400628 get_author_ident_from_commit "$commit" > "$dotest/author-script"
Junio C Hamano5e835ca2008-04-16 12:50:48 -0700629 else
Junio C Hamanoc970a6f2009-11-27 15:06:37 -0800630 {
631 sed -n '/^Subject/ s/Subject: //p' "$dotest/info"
632 echo
633 cat "$dotest/msg"
634 } |
635 git stripspace > "$dotest/msg-clean"
Junio C Hamano5e835ca2008-04-16 12:50:48 -0700636 fi
Junio C Hamano271440e2005-10-25 23:35:37 -0700637 ;;
638 esac
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700639
Jay Soffian43c23252010-06-16 03:12:40 -0400640 if test -f "$dotest/author-script"
641 then
642 eval $(cat "$dotest/author-script")
643 else
644 GIT_AUTHOR_NAME="$(sed -n '/^Author/ s/Author: //p' "$dotest/info")"
645 GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' "$dotest/info")"
646 GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' "$dotest/info")"
647 fi
Junio C Hamanoe0e3ba22005-12-14 16:31:06 -0800648
Junio C Hamano3b789592007-12-05 13:16:35 -0800649 if test -z "$GIT_AUTHOR_EMAIL"
Junio C Hamanoe0e3ba22005-12-14 16:31:06 -0800650 then
Ævar Arnfjörð Bjarmason81dd2fe2011-05-21 18:43:43 +0000651 gettext "Patch does not have a valid e-mail address."; echo
Junio C Hamanoe0e3ba22005-12-14 16:31:06 -0800652 stop_here $this
653 fi
654
Junio C Hamano2c674192005-10-20 22:31:56 -0700655 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700656
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800657 case "$resume" in
658 '')
659 if test '' != "$SIGNOFF"
660 then
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700661 LAST_SIGNED_OFF_BY=`
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800662 sed -ne '/^Signed-off-by: /p' \
663 "$dotest/msg-clean" |
Jeff Kingb4ce54f2008-03-12 17:34:34 -0400664 sed -ne '$p'
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700665 `
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800666 ADD_SIGNOFF=`
667 test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || {
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700668 test '' = "$LAST_SIGNED_OFF_BY" && echo
669 echo "$SIGNOFF"
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800670 }`
671 else
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700672 ADD_SIGNOFF=
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800673 fi
674 {
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700675 if test -s "$dotest/msg-clean"
676 then
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700677 cat "$dotest/msg-clean"
678 fi
679 if test '' != "$ADD_SIGNOFF"
680 then
681 echo "$ADD_SIGNOFF"
682 fi
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800683 } >"$dotest/final-commit"
684 ;;
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800685 *)
Junio C Hamano6d286442006-02-23 22:14:47 -0800686 case "$resolved$interactive" in
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800687 tt)
688 # This is used only for interactive view option.
Junio C Hamano38762c42007-11-28 16:15:04 -0800689 git diff-index -p --cached HEAD -- >"$dotest/patch"
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800690 ;;
691 esac
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800692 esac
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700693
Junio C Hamano4bfb6b62005-11-08 00:41:37 -0800694 resume=
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700695 if test "$interactive" = t
696 then
Junio C Hamanoa1451102005-10-12 18:31:41 -0700697 test -t 0 ||
Ævar Arnfjörð Bjarmason79087252011-05-21 18:43:47 +0000698 die "$(gettext "cannot be interactive without stdin connected to a terminal.")"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700699 action=again
700 while test "$action" = again
701 do
Ævar Arnfjörð Bjarmason81dd2fe2011-05-21 18:43:43 +0000702 gettext "Commit Body is:"; echo
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700703 echo "--------------------------"
704 cat "$dotest/final-commit"
705 echo "--------------------------"
Ævar Arnfjörð Bjarmason7a74d042011-05-21 18:43:50 +0000706 # TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
707 # in your translation. The program will only accept English
708 # input at this point.
709 gettext "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700710 read reply
711 case "$reply" in
Junio C Hamanof89ad672005-10-25 23:43:59 -0700712 [yY]*) action=yes ;;
713 [aA]*) action=yes interactive= ;;
714 [nN]*) action=skip ;;
Adam Robenef0c2ab2007-07-19 22:09:35 -0700715 [eE]*) git_editor "$dotest/final-commit"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700716 action=again ;;
Junio C Hamanof89ad672005-10-25 23:43:59 -0700717 [vV]*) action=again
Jonathan Niederf6dff112010-02-14 23:04:13 -0600718 git_pager "$dotest/patch" ;;
Junio C Hamanof89ad672005-10-25 23:43:59 -0700719 *) action=again ;;
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700720 esac
721 done
722 else
723 action=yes
724 fi
Ramkumar Ramachandra92f65e62010-06-02 10:33:37 +0200725
726 if test -f "$dotest/final-commit"
727 then
728 FIRSTLINE=$(sed 1q "$dotest/final-commit")
729 else
730 FIRSTLINE=""
731 fi
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700732
733 if test $action = skip
734 then
735 go_next
736 continue
737 fi
738
739 if test -x "$GIT_DIR"/hooks/applypatch-msg
740 then
741 "$GIT_DIR"/hooks/applypatch-msg "$dotest/final-commit" ||
742 stop_here $this
743 fi
744
Ævar Arnfjörð Bjarmasondff1a982011-05-21 18:43:52 +0000745 say "$(eval_gettext "Applying: \$FIRSTLINE")"
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700746
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800747 case "$resolved" in
748 '')
Stephen Boyd3ddd1702009-06-16 15:32:58 -0700749 # When we are allowed to fall back to 3-way later, don't give
750 # false errors during the initial attempt.
751 squelch=
752 if test "$threeway" = t
753 then
754 squelch='>/dev/null 2>&1 '
755 fi
756 eval "git apply $squelch$git_apply_opt"' --index "$dotest/patch"'
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800757 apply_status=$?
758 ;;
759 t)
760 # Resolved means the user did all the hard work, and
761 # we do not have to do any patch application. Just
762 # trust what the user has in the index file and the
763 # working tree.
764 resolved=
Junio C Hamano38762c42007-11-28 16:15:04 -0800765 git diff-index --quiet --cached HEAD -- && {
Ævar Arnfjörð Bjarmasonbd8643a2011-05-21 18:43:44 +0000766 gettext "No changes - did you forget to use 'git add'?
767If there is nothing left to stage, chances are that something else
768already introduced the same changes; you might want to skip this patch."; echo
Robert Shearmanced94562006-05-02 13:32:43 +0100769 stop_here_user_resolve $this
Alex Riesen06aff472007-03-25 01:56:13 +0100770 }
Junio C Hamano5be60072007-07-02 22:52:14 -0700771 unmerged=$(git ls-files -u)
Junio C Hamanoc1d11282006-04-28 02:32:44 -0700772 if test -n "$unmerged"
773 then
Ævar Arnfjörð Bjarmasonbd8643a2011-05-21 18:43:44 +0000774 gettext "You still have unmerged paths in your index
775did you forget to use 'git add'?"; echo
Robert Shearmanced94562006-05-02 13:32:43 +0100776 stop_here_user_resolve $this
Junio C Hamanoc1d11282006-04-28 02:32:44 -0700777 fi
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800778 apply_status=0
Johannes Schindelinb4372ef2007-07-06 13:05:59 +0100779 git rerere
Junio C Hamano0c15cc92005-11-16 00:19:32 -0800780 ;;
781 esac
782
Junio C Hamano0ba17dd2010-04-09 16:58:28 -0700783 if test $apply_status != 0 && test "$threeway" = t
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700784 then
Junio C Hamano73319032005-10-13 11:46:43 -0700785 if (fall_back_3way)
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700786 then
Junio C Hamano73319032005-10-13 11:46:43 -0700787 # Applying the patch to an earlier tree and merging the
788 # result may have produced the same tree as ours.
Junio C Hamano38762c42007-11-28 16:15:04 -0800789 git diff-index --quiet --cached HEAD -- && {
Ævar Arnfjörð Bjarmasondff1a982011-05-21 18:43:52 +0000790 say "$(gettext "No changes -- Patch already applied.")"
Alex Riesen06aff472007-03-25 01:56:13 +0100791 go_next
792 continue
793 }
Junio C Hamano73319032005-10-13 11:46:43 -0700794 # clear apply_status -- we have successfully merged.
795 apply_status=0
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700796 fi
797 fi
798 if test $apply_status != 0
799 then
Ævar Arnfjörð Bjarmason39dc30d2011-05-21 18:43:53 +0000800 eval_gettext 'Patch failed at $msgnum $FIRSTLINE'; echo
Robert Shearmanced94562006-05-02 13:32:43 +0100801 stop_here_user_resolve $this
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700802 fi
803
804 if test -x "$GIT_DIR"/hooks/pre-applypatch
805 then
806 "$GIT_DIR"/hooks/pre-applypatch || stop_here $this
807 fi
808
Junio C Hamano5be60072007-07-02 22:52:14 -0700809 tree=$(git write-tree) &&
Junio C Hamano3f01ad62009-01-22 16:14:58 -0800810 commit=$(
Nanako Shiraishia79ec622009-01-24 10:18:02 +0900811 if test -n "$ignore_date"
812 then
813 GIT_AUTHOR_DATE=
814 fi
Nanako Shiraishif79d4c82009-04-10 09:34:42 +0900815 parent=$(git rev-parse --verify -q HEAD) ||
Ævar Arnfjörð Bjarmasondff1a982011-05-21 18:43:52 +0000816 say >&2 "$(gettext "applying to an empty history")"
Nanako Shiraishif79d4c82009-04-10 09:34:42 +0900817
Junio C Hamano3f01ad62009-01-22 16:14:58 -0800818 if test -n "$committer_date_is_author_date"
819 then
820 GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
821 export GIT_COMMITTER_DATE
822 fi &&
Ben Jacksonea10b602009-04-18 20:42:07 -0700823 git commit-tree $tree ${parent:+-p} $parent <"$dotest/final-commit"
Junio C Hamano3f01ad62009-01-22 16:14:58 -0800824 ) &&
Linus Torvalds2e6e3e8292008-04-15 12:56:50 -0700825 git update-ref -m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD $commit $parent ||
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700826 stop_here $this
827
Thomas Rast96e19482010-03-12 18:04:29 +0100828 if test -f "$dotest/original-commit"; then
829 echo "$(cat "$dotest/original-commit") $commit" >> "$dotest/rewritten"
830 fi
831
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700832 if test -x "$GIT_DIR"/hooks/post-applypatch
833 then
834 "$GIT_DIR"/hooks/post-applypatch
835 fi
836
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700837 go_next
838done
839
Thomas Rasteb2151b2010-03-12 18:04:33 +0100840if test -s "$dotest"/rewritten; then
841 git notes copy --for-rewrite=rebase < "$dotest"/rewritten
842 if test -x "$GIT_DIR"/hooks/post-rewrite; then
Thomas Rast96e19482010-03-12 18:04:29 +0100843 "$GIT_DIR"/hooks/post-rewrite rebase < "$dotest"/rewritten
Thomas Rasteb2151b2010-03-12 18:04:33 +0100844 fi
Thomas Rast96e19482010-03-12 18:04:29 +0100845fi
846
Junio C Hamanod1c5f2a2005-10-07 03:44:18 -0700847rm -fr "$dotest"
Jonathan Nieder29b67542010-02-22 08:35:46 -0600848git gc --auto