Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
Junio C Hamano | d64e6b0 | 2006-02-18 20:51:26 -0800 | [diff] [blame] | 3 | # Copyright (c) 2005, 2006 Junio C Hamano |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 4 | |
Jeff King | c149184 | 2008-03-01 01:22:55 -0500 | [diff] [blame] | 5 | SUBDIRECTORY_OK=Yes |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 6 | OPTIONS_KEEPDASHDASH= |
| 7 | OPTIONS_SPEC="\ |
Štěpán Němec | 0adda93 | 2010-10-08 19:31:17 +0200 | [diff] [blame] | 8 | git am [options] [(<mbox>|<Maildir>)...] |
Stephan Beyer | 09f8d05 | 2008-07-25 20:22:23 +0200 | [diff] [blame] | 9 | git am [options] (--resolved | --skip | --abort) |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 10 | -- |
Junio C Hamano | 66006c6 | 2007-11-08 23:04:31 -0800 | [diff] [blame] | 11 | i,interactive run interactively |
Jay Soffian | 98ef23b | 2009-01-28 10:03:10 -0500 | [diff] [blame] | 12 | b,binary* (historical option -- no-op) |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 13 | 3,3way allow fall back on 3way merging if needed |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 14 | q,quiet be quiet |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 15 | s,signoff add a Signed-off-by line to the commit message |
| 16 | u,utf8 recode into utf8 (default) |
Jörg Sommer | fe1fa94 | 2008-02-03 00:58:06 +0100 | [diff] [blame] | 17 | k,keep pass -k flag to git-mailinfo |
Stefan-W. Hahn | ad2c928 | 2010-02-27 15:20:26 +0100 | [diff] [blame] | 18 | keep-cr pass --keep-cr flag to git-mailsplit for mbox format |
Stefan-W. Hahn | e80d4cb | 2010-02-27 15:20:27 +0100 | [diff] [blame] | 19 | no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 20 | c,scissors strip everything before a scissors line |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 21 | whitespace= pass it through git-apply |
Giuseppe Bilotta | 86c91f9 | 2009-08-04 13:16:49 +0200 | [diff] [blame] | 22 | ignore-space-change pass it through git-apply |
| 23 | ignore-whitespace pass it through git-apply |
Junio C Hamano | b47dfe9 | 2009-01-11 22:21:48 -0800 | [diff] [blame] | 24 | directory= pass it through git-apply |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 25 | C= pass it through git-apply |
| 26 | p= pass it through git-apply |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 27 | patch-format= format the patch(es) are in |
martin f. krafft | b80da42 | 2009-01-23 11:31:21 +1100 | [diff] [blame] | 28 | reject pass it through git-apply |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 29 | resolvemsg= override error message when patch failure occurs |
Jeff King | c8089af | 2010-02-11 17:27:14 -0500 | [diff] [blame] | 30 | continue continue applying patches after resolving a conflict |
| 31 | r,resolved synonyms for --continue |
Junio C Hamano | 3041c32 | 2008-03-04 00:25:06 -0800 | [diff] [blame] | 32 | skip skip the current patch |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 33 | abort restore the original branch and abort the patching operation. |
Junio C Hamano | 3f01ad6 | 2009-01-22 16:14:58 -0800 | [diff] [blame] | 34 | committer-date-is-author-date lie about committer date |
Nanako Shiraishi | a79ec62 | 2009-01-24 10:18:02 +0900 | [diff] [blame] | 35 | ignore-date use current timestamp for author date |
Junio C Hamano | cb6020b | 2009-12-04 00:20:48 -0800 | [diff] [blame] | 36 | rerere-autoupdate update the index with reused conflict resolution if possible |
Jay Soffian | 98ef23b | 2009-01-28 10:03:10 -0500 | [diff] [blame] | 37 | rebasing* (internal use for git-rebase)" |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 38 | |
freku045@student.liu.se | cf1fe88 | 2005-12-13 23:30:31 +0100 | [diff] [blame] | 39 | . git-sh-setup |
Ævar Arnfjörð Bjarmason | b9a9726 | 2011-05-21 18:43:42 +0000 | [diff] [blame] | 40 | . git-sh-i18n |
Junio C Hamano | bb034f8 | 2008-03-04 00:25:04 -0800 | [diff] [blame] | 41 | prefix=$(git rev-parse --show-prefix) |
Shawn O. Pearce | f947413 | 2006-12-28 02:34:48 -0500 | [diff] [blame] | 42 | set_reflog_action am |
Shawn O. Pearce | 7eff28a | 2006-12-30 23:32:38 -0500 | [diff] [blame] | 43 | require_work_tree |
Jeff King | c149184 | 2008-03-01 01:22:55 -0500 | [diff] [blame] | 44 | cd_to_toplevel |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 45 | |
Stephan Beyer | 460abee | 2008-07-12 17:46:59 +0200 | [diff] [blame] | 46 | git var GIT_COMMITTER_IDENT >/dev/null || |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 47 | die "$(gettext "You need to set your committer info first")" |
Junio C Hamano | d64e6b0 | 2006-02-18 20:51:26 -0800 | [diff] [blame] | 48 | |
Nanako Shiraishi | f79d4c8 | 2009-04-10 09:34:42 +0900 | [diff] [blame] | 49 | if git rev-parse --verify -q HEAD >/dev/null |
| 50 | then |
| 51 | HAS_HEAD=yes |
| 52 | else |
| 53 | HAS_HEAD= |
| 54 | fi |
| 55 | |
Ramkumar Ramachandra | d2c4631 | 2010-06-02 10:33:35 +0200 | [diff] [blame] | 56 | cmdline="git am" |
| 57 | if test '' != "$interactive" |
| 58 | then |
| 59 | cmdline="$cmdline -i" |
| 60 | fi |
| 61 | if test '' != "$threeway" |
| 62 | then |
| 63 | cmdline="$cmdline -3" |
| 64 | fi |
| 65 | |
Junio C Hamano | b47dfe9 | 2009-01-11 22:21:48 -0800 | [diff] [blame] | 66 | sq () { |
Christian Couder | 47c9739 | 2009-04-24 08:29:01 +0200 | [diff] [blame] | 67 | git rev-parse --sq-quote "$@" |
Junio C Hamano | b47dfe9 | 2009-01-11 22:21:48 -0800 | [diff] [blame] | 68 | } |
| 69 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 70 | stop_here () { |
| 71 | echo "$1" >"$dotest/next" |
Junio C Hamano | 7b3b7e3 | 2010-12-21 10:35:53 -0800 | [diff] [blame] | 72 | git rev-parse --verify -q HEAD >"$dotest/abort-safety" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 73 | exit 1 |
| 74 | } |
| 75 | |
Junio C Hamano | 7b3b7e3 | 2010-12-21 10:35:53 -0800 | [diff] [blame] | 76 | safe_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ð Bjarmason | 22fdd11 | 2011-05-21 18:43:46 +0000 | [diff] [blame] | 92 | ( |
| 93 | gettext "You seem to have moved HEAD since the last 'am' failure. |
| 94 | Not rewinding to ORIG_HEAD" && |
| 95 | echo |
| 96 | ) >&2 |
Junio C Hamano | 7b3b7e3 | 2010-12-21 10:35:53 -0800 | [diff] [blame] | 97 | return 1 |
| 98 | } |
| 99 | |
Robert Shearman | ced9456 | 2006-05-02 13:32:43 +0100 | [diff] [blame] | 100 | stop_here_user_resolve () { |
Sean | cc12005 | 2006-05-13 23:34:08 -0400 | [diff] [blame] | 101 | if [ -n "$resolvemsg" ]; then |
Jeff King | a23bfae | 2007-05-26 00:33:03 -0700 | [diff] [blame] | 102 | printf '%s\n' "$resolvemsg" |
Sean | cc12005 | 2006-05-13 23:34:08 -0400 | [diff] [blame] | 103 | stop_here $1 |
| 104 | fi |
Ævar Arnfjörð Bjarmason | a4372c3 | 2011-05-21 18:43:45 +0000 | [diff] [blame] | 105 | eval_gettext "When you have resolved this problem run \"\$cmdline --resolved\". |
| 106 | If you would prefer to skip this patch, instead run \"\$cmdline --skip\". |
| 107 | To restore the original branch and stop patching run \"\$cmdline --abort\"."; echo |
Robert Shearman | ced9456 | 2006-05-02 13:32:43 +0100 | [diff] [blame] | 108 | |
| 109 | stop_here $1 |
| 110 | } |
| 111 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 112 | go_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 Hamano | fd7bcfb | 2006-08-12 16:16:47 -0700 | [diff] [blame] | 119 | cannot_fallback () { |
| 120 | echo "$1" |
Ævar Arnfjörð Bjarmason | 81dd2fe | 2011-05-21 18:43:43 +0000 | [diff] [blame] | 121 | gettext "Cannot fall back to three-way merge."; echo |
Junio C Hamano | fd7bcfb | 2006-08-12 16:16:47 -0700 | [diff] [blame] | 122 | exit 1 |
| 123 | } |
| 124 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 125 | fall_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 Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 132 | git apply --build-fake-ancestor "$dotest/patch-merge-tmp-index" \ |
| 133 | "$dotest/patch" && |
Junio C Hamano | fd7bcfb | 2006-08-12 16:16:47 -0700 | [diff] [blame] | 134 | GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 135 | git write-tree >"$dotest/patch-merge-base+" || |
Ævar Arnfjörð Bjarmason | a424ca1 | 2011-05-21 18:43:48 +0000 | [diff] [blame] | 136 | cannot_fallback "$(gettext "Repository lacks necessary blobs to fall back on 3-way merge.")" |
Junio C Hamano | fd7bcfb | 2006-08-12 16:16:47 -0700 | [diff] [blame] | 137 | |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 138 | say Using index info to reconstruct a base tree... |
Junio C Hamano | fd7bcfb | 2006-08-12 16:16:47 -0700 | [diff] [blame] | 139 | if GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ |
Stephan Beyer | cb3a160 | 2008-08-09 01:28:54 +0200 | [diff] [blame] | 140 | git apply --cached <"$dotest/patch" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 141 | then |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 142 | mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base" |
| 143 | mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index" |
Junio C Hamano | fd7bcfb | 2006-08-12 16:16:47 -0700 | [diff] [blame] | 144 | else |
Ævar Arnfjörð Bjarmason | a424ca1 | 2011-05-21 18:43:48 +0000 | [diff] [blame] | 145 | cannot_fallback "$(gettext "Did you hand edit your patch? |
| 146 | It does not apply to blobs recorded in its index.")" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 147 | fi |
| 148 | |
| 149 | test -f "$dotest/patch-merge-index" && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 150 | his_tree=$(GIT_INDEX_FILE="$dotest/patch-merge-index" git write-tree) && |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 151 | orig_tree=$(cat "$dotest/patch-merge-base") && |
| 152 | rm -fr "$dotest"/patch-merge-* || exit 1 |
| 153 | |
Ævar Arnfjörð Bjarmason | 865207a | 2011-05-21 18:43:51 +0000 | [diff] [blame] | 154 | say "$(gettext "Falling back to patching base and 3-way merge...")" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 155 | |
| 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. Pearce | 579c9bb | 2006-12-28 02:35:27 -0500 | [diff] [blame] | 159 | # patch did not touch, so recursive ends up canceling them, |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 160 | # saying that we reverted all those changes. |
| 161 | |
Linus Torvalds | 2e6e3e829 | 2008-04-15 12:56:50 -0700 | [diff] [blame] | 162 | eval GITHEAD_$his_tree='"$FIRSTLINE"' |
Shawn O. Pearce | 579c9bb | 2006-12-28 02:35:27 -0500 | [diff] [blame] | 163 | export GITHEAD_$his_tree |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 164 | if test -n "$GIT_QUIET" |
| 165 | then |
Junio C Hamano | 69ae92b | 2010-10-13 11:36:36 -0700 | [diff] [blame] | 166 | GIT_MERGE_VERBOSITY=0 && export GIT_MERGE_VERBOSITY |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 167 | fi |
Shawn O. Pearce | 579c9bb | 2006-12-28 02:35:27 -0500 | [diff] [blame] | 168 | git-merge-recursive $orig_tree -- HEAD $his_tree || { |
Junio C Hamano | cb6020b | 2009-12-04 00:20:48 -0800 | [diff] [blame] | 169 | git rerere $allow_rerere_autoupdate |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 170 | echo Failed to merge in the changes. |
| 171 | exit 1 |
| 172 | } |
Shawn O. Pearce | 579c9bb | 2006-12-28 02:35:27 -0500 | [diff] [blame] | 173 | unset GITHEAD_$his_tree |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Giuseppe Bilotta | 0cd29a0 | 2009-05-27 11:25:19 +0200 | [diff] [blame] | 176 | clean_abort () { |
| 177 | test $# = 0 || echo >&2 "$@" |
| 178 | rm -fr "$dotest" |
| 179 | exit 1 |
| 180 | } |
| 181 | |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 182 | patch_format= |
| 183 | |
| 184 | check_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 Bilotta | 15ced75 | 2009-05-27 23:20:12 +0200 | [diff] [blame] | 190 | |
| 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 Hamano | 0fcb2ca | 2009-08-06 20:08:12 -0500 | [diff] [blame] | 228 | 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 Boyd | e3f67d3 | 2010-01-25 16:33:59 -0800 | [diff] [blame] | 238 | tr -d '\015' <"$1" | |
| 239 | sed -n -e '/^$/q' -e '/^[ ]/d' -e p | |
Junio C Hamano | e1622bf | 2009-11-23 15:56:32 -0800 | [diff] [blame] | 240 | sane_egrep -v '^[!-9;-~]+:' >/dev/null || |
Junio C Hamano | 0fcb2ca | 2009-08-06 20:08:12 -0500 | [diff] [blame] | 241 | patch_format=mbox |
| 242 | fi |
Giuseppe Bilotta | 0cd29a0 | 2009-05-27 11:25:19 +0200 | [diff] [blame] | 243 | } < "$1" || clean_abort |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | split_patches () { |
| 247 | case "$patch_format" in |
| 248 | mbox) |
Stefan-W. Hahn | e80d4cb | 2010-02-27 15:20:27 +0100 | [diff] [blame] | 249 | if test -n "$rebasing" || test t = "$keepcr" |
Stefan-W. Hahn | ad2c928 | 2010-02-27 15:20:26 +0100 | [diff] [blame] | 250 | then |
| 251 | keep_cr=--keep-cr |
| 252 | else |
| 253 | keep_cr= |
| 254 | fi |
Junio C Hamano | c2ca1d7 | 2009-08-04 22:31:59 -0500 | [diff] [blame] | 255 | git mailsplit -d"$prec" -o"$dotest" -b $keep_cr -- "$@" > "$dotest/last" || |
Giuseppe Bilotta | 0cd29a0 | 2009-05-27 11:25:19 +0200 | [diff] [blame] | 256 | clean_abort |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 257 | ;; |
Giuseppe Bilotta | c574e68 | 2009-05-27 11:25:18 +0200 | [diff] [blame] | 258 | stgit-series) |
| 259 | if test $# -ne 1 |
| 260 | then |
Ævar Arnfjörð Bjarmason | d62a146 | 2011-05-21 18:43:49 +0000 | [diff] [blame] | 261 | clean_abort "$(gettext "Only one StGIT patch series can be applied at once")" |
Giuseppe Bilotta | c574e68 | 2009-05-27 11:25:18 +0200 | [diff] [blame] | 262 | 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 Bilotta | 0cd29a0 | 2009-05-27 11:25:19 +0200 | [diff] [blame] | 276 | } < "$series_file" || clean_abort |
Giuseppe Bilotta | c574e68 | 2009-05-27 11:25:18 +0200 | [diff] [blame] | 277 | # 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 Bilotta | 0cd29a0 | 2009-05-27 11:25:19 +0200 | [diff] [blame] | 305 | ' < "$stgit" > "$dotest/$msgnum" || clean_abort |
Giuseppe Bilotta | c574e68 | 2009-05-27 11:25:18 +0200 | [diff] [blame] | 306 | done |
| 307 | echo "$this" > "$dotest/last" |
| 308 | this= |
| 309 | msgnum= |
| 310 | ;; |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 311 | *) |
Nicolas Sebrecht | 46caf50 | 2009-08-06 20:08:13 -0500 | [diff] [blame] | 312 | if test -n "$parse_patch" ; then |
Ævar Arnfjörð Bjarmason | d62a146 | 2011-05-21 18:43:49 +0000 | [diff] [blame] | 313 | clean_abort "$(eval_gettext "Patch format \$patch_format is not supported.")" |
Nicolas Sebrecht | 46caf50 | 2009-08-06 20:08:13 -0500 | [diff] [blame] | 314 | else |
Ævar Arnfjörð Bjarmason | d62a146 | 2011-05-21 18:43:49 +0000 | [diff] [blame] | 315 | clean_abort "$(gettext "Patch format detection failed.")" |
Nicolas Sebrecht | 46caf50 | 2009-08-06 20:08:13 -0500 | [diff] [blame] | 316 | fi |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 317 | ;; |
| 318 | esac |
| 319 | } |
| 320 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 321 | prec=4 |
Johannes Schindelin | 51ef1da | 2008-07-21 12:51:02 +0200 | [diff] [blame] | 322 | dotest="$GIT_DIR/rebase-apply" |
Stefan-W. Hahn | ad2c928 | 2010-02-27 15:20:26 +0100 | [diff] [blame] | 323 | sign= utf8=t keep= keepcr= skip= interactive= resolved= rebasing= abort= |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 324 | resolvemsg= resume= scissors= no_inbody_headers= |
Michael S. Tsirkin | 67dad68 | 2007-02-08 15:57:08 +0200 | [diff] [blame] | 325 | git_apply_opt= |
Junio C Hamano | 3f01ad6 | 2009-01-22 16:14:58 -0800 | [diff] [blame] | 326 | committer_date_is_author_date= |
Nanako Shiraishi | a79ec62 | 2009-01-24 10:18:02 +0900 | [diff] [blame] | 327 | ignore_date= |
Junio C Hamano | cb6020b | 2009-12-04 00:20:48 -0800 | [diff] [blame] | 328 | allow_rerere_autoupdate= |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 329 | |
Stefan-W. Hahn | e80d4cb | 2010-02-27 15:20:27 +0100 | [diff] [blame] | 330 | if test "$(git config --bool --get am.keepcr)" = true |
| 331 | then |
| 332 | keepcr=t |
| 333 | fi |
| 334 | |
David Kastrup | 822f7c7 | 2007-09-23 22:42:08 +0200 | [diff] [blame] | 335 | while test $# != 0 |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 336 | do |
| 337 | case "$1" in |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 338 | -i|--interactive) |
| 339 | interactive=t ;; |
| 340 | -b|--binary) |
Stephan Beyer | cb3a160 | 2008-08-09 01:28:54 +0200 | [diff] [blame] | 341 | : ;; |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 342 | -3|--3way) |
| 343 | threeway=t ;; |
Johannes Sixt | dfdd7e6 | 2007-11-06 21:33:58 +0100 | [diff] [blame] | 344 | -s|--signoff) |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 345 | 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 Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 352 | -c|--scissors) |
| 353 | scissors=t ;; |
| 354 | --no-scissors) |
| 355 | scissors=f ;; |
Jeff King | c8089af | 2010-02-11 17:27:14 -0500 | [diff] [blame] | 356 | -r|--resolved|--continue) |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 357 | resolved=t ;; |
| 358 | --skip) |
| 359 | skip=t ;; |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 360 | --abort) |
| 361 | abort=t ;; |
Junio C Hamano | 3041c32 | 2008-03-04 00:25:06 -0800 | [diff] [blame] | 362 | --rebasing) |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 363 | rebasing=t threeway=t keep=t scissors=f no_inbody_headers=t ;; |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 364 | -d|--dotest) |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 365 | die "$(gettext "-d option is no longer supported. Do not use.")" |
Junio C Hamano | e72c740 | 2008-03-04 00:25:05 -0800 | [diff] [blame] | 366 | ;; |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 367 | --resolvemsg) |
| 368 | shift; resolvemsg=$1 ;; |
Junio C Hamano | b47dfe9 | 2009-01-11 22:21:48 -0800 | [diff] [blame] | 369 | --whitespace|--directory) |
| 370 | git_apply_opt="$git_apply_opt $(sq "$1=$2")"; shift ;; |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 371 | -C|-p) |
Junio C Hamano | b47dfe9 | 2009-01-11 22:21:48 -0800 | [diff] [blame] | 372 | git_apply_opt="$git_apply_opt $(sq "$1$2")"; shift ;; |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 373 | --patch-format) |
| 374 | shift ; patch_format="$1" ;; |
Giuseppe Bilotta | 86c91f9 | 2009-08-04 13:16:49 +0200 | [diff] [blame] | 375 | --reject|--ignore-whitespace|--ignore-space-change) |
martin f. krafft | b80da42 | 2009-01-23 11:31:21 +1100 | [diff] [blame] | 376 | git_apply_opt="$git_apply_opt $1" ;; |
Junio C Hamano | 3f01ad6 | 2009-01-22 16:14:58 -0800 | [diff] [blame] | 377 | --committer-date-is-author-date) |
| 378 | committer_date_is_author_date=t ;; |
Nanako Shiraishi | a79ec62 | 2009-01-24 10:18:02 +0900 | [diff] [blame] | 379 | --ignore-date) |
| 380 | ignore_date=t ;; |
Junio C Hamano | cb6020b | 2009-12-04 00:20:48 -0800 | [diff] [blame] | 381 | --rerere-autoupdate|--no-rerere-autoupdate) |
| 382 | allow_rerere_autoupdate="$1" ;; |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 383 | -q|--quiet) |
| 384 | GIT_QUIET=t ;; |
Stefan-W. Hahn | ad2c928 | 2010-02-27 15:20:26 +0100 | [diff] [blame] | 385 | --keep-cr) |
| 386 | keepcr=t ;; |
Stefan-W. Hahn | e80d4cb | 2010-02-27 15:20:27 +0100 | [diff] [blame] | 387 | --no-keep-cr) |
| 388 | keepcr=f ;; |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 389 | --) |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 390 | shift; break ;; |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 391 | *) |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 392 | usage ;; |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 393 | esac |
Pierre Habouzit | 78443d9 | 2007-11-04 11:30:57 +0100 | [diff] [blame] | 394 | shift |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 395 | done |
| 396 | |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 397 | # If the dotest directory exists, but we have finished applying all the |
| 398 | # patches in them, clear it out. |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 399 | if test -d "$dotest" && |
| 400 | last=$(cat "$dotest/last") && |
| 401 | next=$(cat "$dotest/next") && |
| 402 | test $# != 0 && |
| 403 | test "$next" -gt "$last" |
| 404 | then |
| 405 | rm -fr "$dotest" |
| 406 | fi |
| 407 | |
| 408 | if test -d "$dotest" |
| 409 | then |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 410 | case "$#,$skip$resolved$abort" in |
Junio C Hamano | c95b138 | 2006-09-15 23:19:02 -0700 | [diff] [blame] | 411 | 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 Hamano | e72c740 | 2008-03-04 00:25:05 -0800 | [diff] [blame] | 418 | # when there is already $dotest. This is somewhat |
Junio C Hamano | c95b138 | 2006-09-15 23:19:02 -0700 | [diff] [blame] | 419 | # 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 Soffian | 98ef23b | 2009-01-28 10:03:10 -0500 | [diff] [blame] | 422 | test -t 0 |
Junio C Hamano | c95b138 | 2006-09-15 23:19:02 -0700 | [diff] [blame] | 423 | ;; |
| 424 | *) |
| 425 | false |
| 426 | ;; |
| 427 | esac || |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 428 | die "$(eval_gettext "previous rebase directory \$dotest still exists but mbox given.")" |
Junio C Hamano | 271440e | 2005-10-25 23:35:37 -0700 | [diff] [blame] | 429 | resume=yes |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 430 | |
Olivier Marin | 95f8ebb | 2008-07-21 15:39:06 +0200 | [diff] [blame] | 431 | case "$skip,$abort" in |
Junio C Hamano | 2d56a13 | 2009-02-26 11:24:29 -0800 | [diff] [blame] | 432 | t,t) |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 433 | die "$(gettext "Please make up your mind. --skip or --abort?")" |
Junio C Hamano | 2d56a13 | 2009-02-26 11:24:29 -0800 | [diff] [blame] | 434 | ;; |
Olivier Marin | 95f8ebb | 2008-07-21 15:39:06 +0200 | [diff] [blame] | 435 | 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 Hamano | 2d56a13 | 2009-02-26 11:24:29 -0800 | [diff] [blame] | 443 | if test -f "$dotest/rebasing" |
| 444 | then |
| 445 | exec git rebase --abort |
| 446 | fi |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 447 | git rerere clear |
Junio C Hamano | 7b3b7e3 | 2010-12-21 10:35:53 -0800 | [diff] [blame] | 448 | if safe_to_abort |
| 449 | then |
Michael J Gruber | c767184 | 2009-02-26 10:52:53 +0100 | [diff] [blame] | 450 | git read-tree --reset -u HEAD ORIG_HEAD |
| 451 | git reset ORIG_HEAD |
Junio C Hamano | 7b3b7e3 | 2010-12-21 10:35:53 -0800 | [diff] [blame] | 452 | fi |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 453 | rm -fr "$dotest" |
| 454 | exit ;; |
| 455 | esac |
Michael J Gruber | c767184 | 2009-02-26 10:52:53 +0100 | [diff] [blame] | 456 | rm -f "$dotest/dirtyindex" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 457 | else |
Nanako Shiraishi | 3e5057a | 2008-07-16 19:39:10 +0900 | [diff] [blame] | 458 | # Make sure we are not given --skip, --resolved, nor --abort |
| 459 | test "$skip$resolved$abort" = "" || |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 460 | die "$(gettext "Resolve operation not in progress, we are not resuming.")" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 461 | |
| 462 | # Start afresh. |
| 463 | mkdir -p "$dotest" || exit |
| 464 | |
Junio C Hamano | bb034f8 | 2008-03-04 00:25:04 -0800 | [diff] [blame] | 465 | 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 Thoyts | 5e9677c | 2010-09-30 14:24:07 +0100 | [diff] [blame] | 474 | if is_absolute_path "$arg" |
| 475 | then |
| 476 | set "$@" "$arg" |
| 477 | else |
| 478 | set "$@" "$prefix$arg" |
| 479 | fi |
Junio C Hamano | bb034f8 | 2008-03-04 00:25:04 -0800 | [diff] [blame] | 480 | done |
| 481 | shift |
| 482 | fi |
Giuseppe Bilotta | a5a6755 | 2009-05-27 11:25:16 +0200 | [diff] [blame] | 483 | |
| 484 | check_patch_format "$@" |
| 485 | |
| 486 | split_patches "$@" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 487 | |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 488 | # -i can and must be given when resuming; everything |
| 489 | # else is kept |
Junio C Hamano | 9b9f5a2 | 2008-12-05 11:19:43 -0800 | [diff] [blame] | 490 | echo " $git_apply_opt" >"$dotest/apply-opt" |
Junio C Hamano | 22db240 | 2008-12-04 15:38:27 -0800 | [diff] [blame] | 491 | echo "$threeway" >"$dotest/threeway" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 492 | echo "$sign" >"$dotest/sign" |
| 493 | echo "$utf8" >"$dotest/utf8" |
| 494 | echo "$keep" >"$dotest/keep" |
Stefan-W. Hahn | ad2c928 | 2010-02-27 15:20:26 +0100 | [diff] [blame] | 495 | echo "$keepcr" >"$dotest/keepcr" |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 496 | echo "$scissors" >"$dotest/scissors" |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 497 | echo "$no_inbody_headers" >"$dotest/no_inbody_headers" |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 498 | echo "$GIT_QUIET" >"$dotest/quiet" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 499 | echo 1 >"$dotest/next" |
Junio C Hamano | 3041c32 | 2008-03-04 00:25:06 -0800 | [diff] [blame] | 500 | if test -n "$rebasing" |
| 501 | then |
| 502 | : >"$dotest/rebasing" |
| 503 | else |
| 504 | : >"$dotest/applying" |
Nanako Shiraishi | f79d4c8 | 2009-04-10 09:34:42 +0900 | [diff] [blame] | 505 | 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 Hamano | 3041c32 | 2008-03-04 00:25:06 -0800 | [diff] [blame] | 511 | fi |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 512 | fi |
| 513 | |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 514 | case "$resolved" in |
| 515 | '') |
Nanako Shiraishi | f79d4c8 | 2009-04-10 09:34:42 +0900 | [diff] [blame] | 516 | 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 Gruber | c767184 | 2009-02-26 10:52:53 +0100 | [diff] [blame] | 522 | if test "$files" |
| 523 | then |
Nanako Shiraishi | f79d4c8 | 2009-04-10 09:34:42 +0900 | [diff] [blame] | 524 | test -n "$HAS_HEAD" && : >"$dotest/dirtyindex" |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 525 | die "$(eval_gettext "Dirty index: cannot apply patches (dirty: \$files)")" |
Michael J Gruber | c767184 | 2009-02-26 10:52:53 +0100 | [diff] [blame] | 526 | fi |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 527 | esac |
| 528 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 529 | if test "$(cat "$dotest/utf8")" = t |
| 530 | then |
| 531 | utf8=-u |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 532 | else |
| 533 | utf8=-n |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 534 | fi |
| 535 | if test "$(cat "$dotest/keep")" = t |
| 536 | then |
| 537 | keep=-k |
| 538 | fi |
Stefan-W. Hahn | e80d4cb | 2010-02-27 15:20:27 +0100 | [diff] [blame] | 539 | case "$(cat "$dotest/keepcr")" in |
| 540 | t) |
| 541 | keepcr=--keep-cr ;; |
| 542 | f) |
| 543 | keepcr=--no-keep-cr ;; |
| 544 | esac |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 545 | case "$(cat "$dotest/scissors")" in |
| 546 | t) |
| 547 | scissors=--scissors ;; |
| 548 | f) |
| 549 | scissors=--no-scissors ;; |
| 550 | esac |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 551 | if test "$(cat "$dotest/no_inbody_headers")" = t |
| 552 | then |
| 553 | no_inbody_headers=--no-inbody-headers |
| 554 | else |
| 555 | no_inbody_headers= |
| 556 | fi |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 557 | if test "$(cat "$dotest/quiet")" = t |
| 558 | then |
| 559 | GIT_QUIET=t |
| 560 | fi |
Junio C Hamano | 22db240 | 2008-12-04 15:38:27 -0800 | [diff] [blame] | 561 | if test "$(cat "$dotest/threeway")" = t |
| 562 | then |
| 563 | threeway=t |
| 564 | fi |
Junio C Hamano | 9b9f5a2 | 2008-12-05 11:19:43 -0800 | [diff] [blame] | 565 | git_apply_opt=$(cat "$dotest/apply-opt") |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 566 | if test "$(cat "$dotest/sign")" = t |
| 567 | then |
Todd Zullinger | 5354a56 | 2008-07-30 13:48:33 -0400 | [diff] [blame] | 568 | SIGNOFF=`git var GIT_COMMITTER_IDENT | sed -e ' |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 569 | s/>.*/>/ |
| 570 | s/^/Signed-off-by: /' |
| 571 | ` |
| 572 | else |
| 573 | SIGNOFF= |
| 574 | fi |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 575 | |
| 576 | last=`cat "$dotest/last"` |
| 577 | this=`cat "$dotest/next"` |
| 578 | if test "$skip" = t |
| 579 | then |
| 580 | this=`expr "$this" + 1` |
Jan Harkes | 6922471 | 2005-12-17 01:01:06 -0500 | [diff] [blame] | 581 | resume= |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 582 | fi |
| 583 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 584 | while test "$this" -le "$last" |
| 585 | do |
| 586 | msgnum=`printf "%0${prec}d" $this` |
| 587 | next=`expr "$this" + 1` |
| 588 | test -f "$dotest/$msgnum" || { |
Jan Harkes | 6922471 | 2005-12-17 01:01:06 -0500 | [diff] [blame] | 589 | resume= |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 590 | go_next |
| 591 | continue |
| 592 | } |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 593 | |
| 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 Hamano | 271440e | 2005-10-25 23:35:37 -0700 | [diff] [blame] | 602 | case "$resume" in |
| 603 | '') |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 604 | git mailinfo $keep $no_inbody_headers $scissors $utf8 "$dotest/msg" "$dotest/patch" \ |
Junio C Hamano | 271440e | 2005-10-25 23:35:37 -0700 | [diff] [blame] | 605 | <"$dotest/$msgnum" >"$dotest/info" || |
| 606 | stop_here $this |
Johannes Schindelin | ca193cf | 2007-07-24 01:02:25 +0100 | [diff] [blame] | 607 | |
| 608 | # skip pine's internal folder data |
Junio C Hamano | e1622bf | 2009-11-23 15:56:32 -0800 | [diff] [blame] | 609 | sane_grep '^Author: Mail System Internal Data$' \ |
Johannes Schindelin | ca193cf | 2007-07-24 01:02:25 +0100 | [diff] [blame] | 610 | <"$dotest"/info >/dev/null && |
| 611 | go_next && continue |
| 612 | |
Johannes Schindelin | 28ed6e7 | 2008-07-16 03:33:44 +0200 | [diff] [blame] | 613 | test -s "$dotest/patch" || { |
Ævar Arnfjörð Bjarmason | a4372c3 | 2011-05-21 18:43:45 +0000 | [diff] [blame] | 614 | eval_gettext "Patch is empty. Was it split wrong? |
| 615 | If you would prefer to skip this patch, instead run \"\$cmdline --skip\". |
| 616 | To restore the original branch and stop patching run \"\$cmdline --abort\"."; echo |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 617 | stop_here $this |
| 618 | } |
Jay Soffian | 43c2325 | 2010-06-16 03:12:40 -0400 | [diff] [blame] | 619 | rm -f "$dotest/original-commit" "$dotest/author-script" |
Junio C Hamano | 5e835ca | 2008-04-16 12:50:48 -0700 | [diff] [blame] | 620 | 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 Rast | 96e1948 | 2010-03-12 18:04:29 +0100 | [diff] [blame] | 627 | echo "$commit" > "$dotest/original-commit" |
Jay Soffian | 43c2325 | 2010-06-16 03:12:40 -0400 | [diff] [blame] | 628 | get_author_ident_from_commit "$commit" > "$dotest/author-script" |
Junio C Hamano | 5e835ca | 2008-04-16 12:50:48 -0700 | [diff] [blame] | 629 | else |
Junio C Hamano | c970a6f | 2009-11-27 15:06:37 -0800 | [diff] [blame] | 630 | { |
| 631 | sed -n '/^Subject/ s/Subject: //p' "$dotest/info" |
| 632 | echo |
| 633 | cat "$dotest/msg" |
| 634 | } | |
| 635 | git stripspace > "$dotest/msg-clean" |
Junio C Hamano | 5e835ca | 2008-04-16 12:50:48 -0700 | [diff] [blame] | 636 | fi |
Junio C Hamano | 271440e | 2005-10-25 23:35:37 -0700 | [diff] [blame] | 637 | ;; |
| 638 | esac |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 639 | |
Jay Soffian | 43c2325 | 2010-06-16 03:12:40 -0400 | [diff] [blame] | 640 | 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 Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 648 | |
Junio C Hamano | 3b78959 | 2007-12-05 13:16:35 -0800 | [diff] [blame] | 649 | if test -z "$GIT_AUTHOR_EMAIL" |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 650 | then |
Ævar Arnfjörð Bjarmason | 81dd2fe | 2011-05-21 18:43:43 +0000 | [diff] [blame] | 651 | gettext "Patch does not have a valid e-mail address."; echo |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 652 | stop_here $this |
| 653 | fi |
| 654 | |
Junio C Hamano | 2c67419 | 2005-10-20 22:31:56 -0700 | [diff] [blame] | 655 | export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 656 | |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 657 | case "$resume" in |
| 658 | '') |
| 659 | if test '' != "$SIGNOFF" |
| 660 | then |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 661 | LAST_SIGNED_OFF_BY=` |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 662 | sed -ne '/^Signed-off-by: /p' \ |
| 663 | "$dotest/msg-clean" | |
Jeff King | b4ce54f | 2008-03-12 17:34:34 -0400 | [diff] [blame] | 664 | sed -ne '$p' |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 665 | ` |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 666 | ADD_SIGNOFF=` |
| 667 | test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" || { |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 668 | test '' = "$LAST_SIGNED_OFF_BY" && echo |
| 669 | echo "$SIGNOFF" |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 670 | }` |
| 671 | else |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 672 | ADD_SIGNOFF= |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 673 | fi |
| 674 | { |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 675 | if test -s "$dotest/msg-clean" |
| 676 | then |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 677 | cat "$dotest/msg-clean" |
| 678 | fi |
| 679 | if test '' != "$ADD_SIGNOFF" |
| 680 | then |
| 681 | echo "$ADD_SIGNOFF" |
| 682 | fi |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 683 | } >"$dotest/final-commit" |
| 684 | ;; |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 685 | *) |
Junio C Hamano | 6d28644 | 2006-02-23 22:14:47 -0800 | [diff] [blame] | 686 | case "$resolved$interactive" in |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 687 | tt) |
| 688 | # This is used only for interactive view option. |
Junio C Hamano | 38762c4 | 2007-11-28 16:15:04 -0800 | [diff] [blame] | 689 | git diff-index -p --cached HEAD -- >"$dotest/patch" |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 690 | ;; |
| 691 | esac |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 692 | esac |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 693 | |
Junio C Hamano | 4bfb6b6 | 2005-11-08 00:41:37 -0800 | [diff] [blame] | 694 | resume= |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 695 | if test "$interactive" = t |
| 696 | then |
Junio C Hamano | a145110 | 2005-10-12 18:31:41 -0700 | [diff] [blame] | 697 | test -t 0 || |
Ævar Arnfjörð Bjarmason | 7908725 | 2011-05-21 18:43:47 +0000 | [diff] [blame] | 698 | die "$(gettext "cannot be interactive without stdin connected to a terminal.")" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 699 | action=again |
| 700 | while test "$action" = again |
| 701 | do |
Ævar Arnfjörð Bjarmason | 81dd2fe | 2011-05-21 18:43:43 +0000 | [diff] [blame] | 702 | gettext "Commit Body is:"; echo |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 703 | echo "--------------------------" |
| 704 | cat "$dotest/final-commit" |
| 705 | echo "--------------------------" |
Ævar Arnfjörð Bjarmason | 7a74d04 | 2011-05-21 18:43:50 +0000 | [diff] [blame] | 706 | # 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 Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 710 | read reply |
| 711 | case "$reply" in |
Junio C Hamano | f89ad67 | 2005-10-25 23:43:59 -0700 | [diff] [blame] | 712 | [yY]*) action=yes ;; |
| 713 | [aA]*) action=yes interactive= ;; |
| 714 | [nN]*) action=skip ;; |
Adam Roben | ef0c2ab | 2007-07-19 22:09:35 -0700 | [diff] [blame] | 715 | [eE]*) git_editor "$dotest/final-commit" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 716 | action=again ;; |
Junio C Hamano | f89ad67 | 2005-10-25 23:43:59 -0700 | [diff] [blame] | 717 | [vV]*) action=again |
Jonathan Nieder | f6dff11 | 2010-02-14 23:04:13 -0600 | [diff] [blame] | 718 | git_pager "$dotest/patch" ;; |
Junio C Hamano | f89ad67 | 2005-10-25 23:43:59 -0700 | [diff] [blame] | 719 | *) action=again ;; |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 720 | esac |
| 721 | done |
| 722 | else |
| 723 | action=yes |
| 724 | fi |
Ramkumar Ramachandra | 92f65e6 | 2010-06-02 10:33:37 +0200 | [diff] [blame] | 725 | |
| 726 | if test -f "$dotest/final-commit" |
| 727 | then |
| 728 | FIRSTLINE=$(sed 1q "$dotest/final-commit") |
| 729 | else |
| 730 | FIRSTLINE="" |
| 731 | fi |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 732 | |
| 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ð Bjarmason | dff1a98 | 2011-05-21 18:43:52 +0000 | [diff] [blame] | 745 | say "$(eval_gettext "Applying: \$FIRSTLINE")" |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 746 | |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 747 | case "$resolved" in |
| 748 | '') |
Stephen Boyd | 3ddd170 | 2009-06-16 15:32:58 -0700 | [diff] [blame] | 749 | # 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 Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 757 | 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 Hamano | 38762c4 | 2007-11-28 16:15:04 -0800 | [diff] [blame] | 765 | git diff-index --quiet --cached HEAD -- && { |
Ævar Arnfjörð Bjarmason | bd8643a | 2011-05-21 18:43:44 +0000 | [diff] [blame] | 766 | gettext "No changes - did you forget to use 'git add'? |
| 767 | If there is nothing left to stage, chances are that something else |
| 768 | already introduced the same changes; you might want to skip this patch."; echo |
Robert Shearman | ced9456 | 2006-05-02 13:32:43 +0100 | [diff] [blame] | 769 | stop_here_user_resolve $this |
Alex Riesen | 06aff47 | 2007-03-25 01:56:13 +0100 | [diff] [blame] | 770 | } |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 771 | unmerged=$(git ls-files -u) |
Junio C Hamano | c1d1128 | 2006-04-28 02:32:44 -0700 | [diff] [blame] | 772 | if test -n "$unmerged" |
| 773 | then |
Ævar Arnfjörð Bjarmason | bd8643a | 2011-05-21 18:43:44 +0000 | [diff] [blame] | 774 | gettext "You still have unmerged paths in your index |
| 775 | did you forget to use 'git add'?"; echo |
Robert Shearman | ced9456 | 2006-05-02 13:32:43 +0100 | [diff] [blame] | 776 | stop_here_user_resolve $this |
Junio C Hamano | c1d1128 | 2006-04-28 02:32:44 -0700 | [diff] [blame] | 777 | fi |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 778 | apply_status=0 |
Johannes Schindelin | b4372ef | 2007-07-06 13:05:59 +0100 | [diff] [blame] | 779 | git rerere |
Junio C Hamano | 0c15cc9 | 2005-11-16 00:19:32 -0800 | [diff] [blame] | 780 | ;; |
| 781 | esac |
| 782 | |
Junio C Hamano | 0ba17dd | 2010-04-09 16:58:28 -0700 | [diff] [blame] | 783 | if test $apply_status != 0 && test "$threeway" = t |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 784 | then |
Junio C Hamano | 7331903 | 2005-10-13 11:46:43 -0700 | [diff] [blame] | 785 | if (fall_back_3way) |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 786 | then |
Junio C Hamano | 7331903 | 2005-10-13 11:46:43 -0700 | [diff] [blame] | 787 | # Applying the patch to an earlier tree and merging the |
| 788 | # result may have produced the same tree as ours. |
Junio C Hamano | 38762c4 | 2007-11-28 16:15:04 -0800 | [diff] [blame] | 789 | git diff-index --quiet --cached HEAD -- && { |
Ævar Arnfjörð Bjarmason | dff1a98 | 2011-05-21 18:43:52 +0000 | [diff] [blame] | 790 | say "$(gettext "No changes -- Patch already applied.")" |
Alex Riesen | 06aff47 | 2007-03-25 01:56:13 +0100 | [diff] [blame] | 791 | go_next |
| 792 | continue |
| 793 | } |
Junio C Hamano | 7331903 | 2005-10-13 11:46:43 -0700 | [diff] [blame] | 794 | # clear apply_status -- we have successfully merged. |
| 795 | apply_status=0 |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 796 | fi |
| 797 | fi |
| 798 | if test $apply_status != 0 |
| 799 | then |
Ævar Arnfjörð Bjarmason | 39dc30d | 2011-05-21 18:43:53 +0000 | [diff] [blame] | 800 | eval_gettext 'Patch failed at $msgnum $FIRSTLINE'; echo |
Robert Shearman | ced9456 | 2006-05-02 13:32:43 +0100 | [diff] [blame] | 801 | stop_here_user_resolve $this |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 802 | 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 Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 809 | tree=$(git write-tree) && |
Junio C Hamano | 3f01ad6 | 2009-01-22 16:14:58 -0800 | [diff] [blame] | 810 | commit=$( |
Nanako Shiraishi | a79ec62 | 2009-01-24 10:18:02 +0900 | [diff] [blame] | 811 | if test -n "$ignore_date" |
| 812 | then |
| 813 | GIT_AUTHOR_DATE= |
| 814 | fi |
Nanako Shiraishi | f79d4c8 | 2009-04-10 09:34:42 +0900 | [diff] [blame] | 815 | parent=$(git rev-parse --verify -q HEAD) || |
Ævar Arnfjörð Bjarmason | dff1a98 | 2011-05-21 18:43:52 +0000 | [diff] [blame] | 816 | say >&2 "$(gettext "applying to an empty history")" |
Nanako Shiraishi | f79d4c8 | 2009-04-10 09:34:42 +0900 | [diff] [blame] | 817 | |
Junio C Hamano | 3f01ad6 | 2009-01-22 16:14:58 -0800 | [diff] [blame] | 818 | 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 Jackson | ea10b60 | 2009-04-18 20:42:07 -0700 | [diff] [blame] | 823 | git commit-tree $tree ${parent:+-p} $parent <"$dotest/final-commit" |
Junio C Hamano | 3f01ad6 | 2009-01-22 16:14:58 -0800 | [diff] [blame] | 824 | ) && |
Linus Torvalds | 2e6e3e829 | 2008-04-15 12:56:50 -0700 | [diff] [blame] | 825 | git update-ref -m "$GIT_REFLOG_ACTION: $FIRSTLINE" HEAD $commit $parent || |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 826 | stop_here $this |
| 827 | |
Thomas Rast | 96e1948 | 2010-03-12 18:04:29 +0100 | [diff] [blame] | 828 | if test -f "$dotest/original-commit"; then |
| 829 | echo "$(cat "$dotest/original-commit") $commit" >> "$dotest/rewritten" |
| 830 | fi |
| 831 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 832 | if test -x "$GIT_DIR"/hooks/post-applypatch |
| 833 | then |
| 834 | "$GIT_DIR"/hooks/post-applypatch |
| 835 | fi |
| 836 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 837 | go_next |
| 838 | done |
| 839 | |
Thomas Rast | eb2151b | 2010-03-12 18:04:33 +0100 | [diff] [blame] | 840 | if 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 Rast | 96e1948 | 2010-03-12 18:04:29 +0100 | [diff] [blame] | 843 | "$GIT_DIR"/hooks/post-rewrite rebase < "$dotest"/rewritten |
Thomas Rast | eb2151b | 2010-03-12 18:04:33 +0100 | [diff] [blame] | 844 | fi |
Thomas Rast | 96e1948 | 2010-03-12 18:04:29 +0100 | [diff] [blame] | 845 | fi |
| 846 | |
Junio C Hamano | d1c5f2a | 2005-10-07 03:44:18 -0700 | [diff] [blame] | 847 | rm -fr "$dotest" |
Jonathan Nieder | 29b6754 | 2010-02-22 08:35:46 -0600 | [diff] [blame] | 848 | git gc --auto |