4 * Based on git-am.sh by Junio C Hamano.
6 #define USE_THE_INDEX_VARIABLE
11 #include "parse-options.h"
13 #include "run-command.h"
18 #include "cache-tree.h"
23 #include "unpack-trees.h"
25 #include "sequencer.h"
27 #include "merge-recursive.h"
29 #include "notes-utils.h"
34 #include "string-list.h"
36 #include "repository.h"
40 * Returns the length of the first line of msg.
42 static int linelen(const char *msg
)
44 return strchrnul(msg
, '\n') - msg
;
48 * Returns true if `str` consists of only whitespace, false otherwise.
50 static int str_isspace(const char *str
)
60 PATCH_FORMAT_UNKNOWN
= 0,
63 PATCH_FORMAT_STGIT_SERIES
,
70 KEEP_TRUE
, /* pass -k flag to git-mailinfo */
71 KEEP_NON_PATCH
/* pass -b flag to git-mailinfo */
76 SCISSORS_FALSE
= 0, /* pass --no-scissors to git-mailinfo */
77 SCISSORS_TRUE
/* pass --scissors to git-mailinfo */
83 SIGNOFF_EXPLICIT
/* --signoff was set on the command-line */
86 enum show_patch_type
{
92 STOP_ON_EMPTY_COMMIT
= 0, /* output errors and stop in the middle of an am session */
93 DROP_EMPTY_COMMIT
, /* skip with a notice message, unless "--quiet" has been passed */
94 KEEP_EMPTY_COMMIT
, /* keep recording as empty commits */
98 /* state directory path */
101 /* current and last patch numbers, 1-indexed */
105 /* commit metadata and message */
112 /* when --rebasing, records the original commit the patch came from */
113 struct object_id orig_commit
;
115 /* number of digits in patch filename */
118 /* various operating modes and command line options */
123 int signoff
; /* enum signoff_type */
125 int keep
; /* enum keep_type */
127 int scissors
; /* enum scissors_type */
128 int quoted_cr
; /* enum quoted_cr_action */
129 int empty_type
; /* enum empty_action */
130 struct strvec git_apply_opts
;
131 const char *resolvemsg
;
132 int committer_date_is_author_date
;
134 int allow_rerere_autoupdate
;
135 const char *sign_commit
;
140 * Initializes am_state with the default values.
142 static void am_state_init(struct am_state
*state
)
146 memset(state
, 0, sizeof(*state
));
148 state
->dir
= git_pathdup("rebase-apply");
152 git_config_get_bool("am.threeway", &state
->threeway
);
156 git_config_get_bool("am.messageid", &state
->message_id
);
158 state
->scissors
= SCISSORS_UNSET
;
159 state
->quoted_cr
= quoted_cr_unset
;
161 strvec_init(&state
->git_apply_opts
);
163 if (!git_config_get_bool("commit.gpgsign", &gpgsign
))
164 state
->sign_commit
= gpgsign
? "" : NULL
;
168 * Releases memory allocated by an am_state.
170 static void am_state_release(struct am_state
*state
)
173 free(state
->author_name
);
174 free(state
->author_email
);
175 free(state
->author_date
);
177 strvec_clear(&state
->git_apply_opts
);
180 static int am_option_parse_quoted_cr(const struct option
*opt
,
181 const char *arg
, int unset
)
183 BUG_ON_OPT_NEG(unset
);
185 if (mailinfo_parse_quoted_cr_action(arg
, opt
->value
) != 0)
186 return error(_("bad action '%s' for '%s'"), arg
, "--quoted-cr");
190 static int am_option_parse_empty(const struct option
*opt
,
191 const char *arg
, int unset
)
193 int *opt_value
= opt
->value
;
195 BUG_ON_OPT_NEG(unset
);
197 if (!strcmp(arg
, "stop"))
198 *opt_value
= STOP_ON_EMPTY_COMMIT
;
199 else if (!strcmp(arg
, "drop"))
200 *opt_value
= DROP_EMPTY_COMMIT
;
201 else if (!strcmp(arg
, "keep"))
202 *opt_value
= KEEP_EMPTY_COMMIT
;
204 return error(_("invalid value for '%s': '%s'"), "--empty", arg
);
210 * Returns path relative to the am_state directory.
212 static inline const char *am_path(const struct am_state
*state
, const char *path
)
214 return mkpath("%s/%s", state
->dir
, path
);
218 * For convenience to call write_file()
220 static void write_state_text(const struct am_state
*state
,
221 const char *name
, const char *string
)
223 write_file(am_path(state
, name
), "%s", string
);
226 static void write_state_count(const struct am_state
*state
,
227 const char *name
, int value
)
229 write_file(am_path(state
, name
), "%d", value
);
232 static void write_state_bool(const struct am_state
*state
,
233 const char *name
, int value
)
235 write_state_text(state
, name
, value
? "t" : "f");
239 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline
242 __attribute__((format (printf
, 3, 4)))
243 static void say(const struct am_state
*state
, FILE *fp
, const char *fmt
, ...)
249 vfprintf(fp
, fmt
, ap
);
256 * Returns 1 if there is an am session in progress, 0 otherwise.
258 static int am_in_progress(const struct am_state
*state
)
262 if (lstat(state
->dir
, &st
) < 0 || !S_ISDIR(st
.st_mode
))
264 if (lstat(am_path(state
, "last"), &st
) || !S_ISREG(st
.st_mode
))
266 if (lstat(am_path(state
, "next"), &st
) || !S_ISREG(st
.st_mode
))
272 * Reads the contents of `file` in the `state` directory into `sb`. Returns the
273 * number of bytes read on success, -1 if the file does not exist. If `trim` is
274 * set, trailing whitespace will be removed.
276 static int read_state_file(struct strbuf
*sb
, const struct am_state
*state
,
277 const char *file
, int trim
)
281 if (strbuf_read_file(sb
, am_path(state
, file
), 0) >= 0) {
291 die_errno(_("could not read '%s'"), am_path(state
, file
));
295 * Reads and parses the state directory's "author-script" file, and sets
296 * state->author_name, state->author_email and state->author_date accordingly.
297 * Returns 0 on success, -1 if the file could not be parsed.
299 * The author script is of the format:
301 * GIT_AUTHOR_NAME='$author_name'
302 * GIT_AUTHOR_EMAIL='$author_email'
303 * GIT_AUTHOR_DATE='$author_date'
305 * where $author_name, $author_email and $author_date are quoted. We are strict
306 * with our parsing, as the file was meant to be eval'd in the old git-am.sh
307 * script, and thus if the file differs from what this function expects, it is
308 * better to bail out than to do something that the user does not expect.
310 static int read_am_author_script(struct am_state
*state
)
312 const char *filename
= am_path(state
, "author-script");
314 assert(!state
->author_name
);
315 assert(!state
->author_email
);
316 assert(!state
->author_date
);
318 return read_author_script(filename
, &state
->author_name
,
319 &state
->author_email
, &state
->author_date
, 1);
323 * Saves state->author_name, state->author_email and state->author_date in the
324 * state directory's "author-script" file.
326 static void write_author_script(const struct am_state
*state
)
328 struct strbuf sb
= STRBUF_INIT
;
330 strbuf_addstr(&sb
, "GIT_AUTHOR_NAME=");
331 sq_quote_buf(&sb
, state
->author_name
);
332 strbuf_addch(&sb
, '\n');
334 strbuf_addstr(&sb
, "GIT_AUTHOR_EMAIL=");
335 sq_quote_buf(&sb
, state
->author_email
);
336 strbuf_addch(&sb
, '\n');
338 strbuf_addstr(&sb
, "GIT_AUTHOR_DATE=");
339 sq_quote_buf(&sb
, state
->author_date
);
340 strbuf_addch(&sb
, '\n');
342 write_state_text(state
, "author-script", sb
.buf
);
348 * Reads the commit message from the state directory's "final-commit" file,
349 * setting state->msg to its contents and state->msg_len to the length of its
352 * Returns 0 on success, -1 if the file does not exist.
354 static int read_commit_msg(struct am_state
*state
)
356 struct strbuf sb
= STRBUF_INIT
;
360 if (read_state_file(&sb
, state
, "final-commit", 0) < 0) {
365 state
->msg
= strbuf_detach(&sb
, &state
->msg_len
);
370 * Saves state->msg in the state directory's "final-commit" file.
372 static void write_commit_msg(const struct am_state
*state
)
374 const char *filename
= am_path(state
, "final-commit");
375 write_file_buf(filename
, state
->msg
, state
->msg_len
);
379 * Loads state from disk.
381 static void am_load(struct am_state
*state
)
383 struct strbuf sb
= STRBUF_INIT
;
385 if (read_state_file(&sb
, state
, "next", 1) < 0)
386 BUG("state file 'next' does not exist");
387 state
->cur
= strtol(sb
.buf
, NULL
, 10);
389 if (read_state_file(&sb
, state
, "last", 1) < 0)
390 BUG("state file 'last' does not exist");
391 state
->last
= strtol(sb
.buf
, NULL
, 10);
393 if (read_am_author_script(state
) < 0)
394 die(_("could not parse author script"));
396 read_commit_msg(state
);
398 if (read_state_file(&sb
, state
, "original-commit", 1) < 0)
399 oidclr(&state
->orig_commit
);
400 else if (get_oid_hex(sb
.buf
, &state
->orig_commit
) < 0)
401 die(_("could not parse %s"), am_path(state
, "original-commit"));
403 read_state_file(&sb
, state
, "threeway", 1);
404 state
->threeway
= !strcmp(sb
.buf
, "t");
406 read_state_file(&sb
, state
, "quiet", 1);
407 state
->quiet
= !strcmp(sb
.buf
, "t");
409 read_state_file(&sb
, state
, "sign", 1);
410 state
->signoff
= !strcmp(sb
.buf
, "t");
412 read_state_file(&sb
, state
, "utf8", 1);
413 state
->utf8
= !strcmp(sb
.buf
, "t");
415 if (file_exists(am_path(state
, "rerere-autoupdate"))) {
416 read_state_file(&sb
, state
, "rerere-autoupdate", 1);
417 state
->allow_rerere_autoupdate
= strcmp(sb
.buf
, "t") ?
418 RERERE_NOAUTOUPDATE
: RERERE_AUTOUPDATE
;
420 state
->allow_rerere_autoupdate
= 0;
423 read_state_file(&sb
, state
, "keep", 1);
424 if (!strcmp(sb
.buf
, "t"))
425 state
->keep
= KEEP_TRUE
;
426 else if (!strcmp(sb
.buf
, "b"))
427 state
->keep
= KEEP_NON_PATCH
;
429 state
->keep
= KEEP_FALSE
;
431 read_state_file(&sb
, state
, "messageid", 1);
432 state
->message_id
= !strcmp(sb
.buf
, "t");
434 read_state_file(&sb
, state
, "scissors", 1);
435 if (!strcmp(sb
.buf
, "t"))
436 state
->scissors
= SCISSORS_TRUE
;
437 else if (!strcmp(sb
.buf
, "f"))
438 state
->scissors
= SCISSORS_FALSE
;
440 state
->scissors
= SCISSORS_UNSET
;
442 read_state_file(&sb
, state
, "quoted-cr", 1);
444 state
->quoted_cr
= quoted_cr_unset
;
445 else if (mailinfo_parse_quoted_cr_action(sb
.buf
, &state
->quoted_cr
) != 0)
446 die(_("could not parse %s"), am_path(state
, "quoted-cr"));
448 read_state_file(&sb
, state
, "apply-opt", 1);
449 strvec_clear(&state
->git_apply_opts
);
450 if (sq_dequote_to_strvec(sb
.buf
, &state
->git_apply_opts
) < 0)
451 die(_("could not parse %s"), am_path(state
, "apply-opt"));
453 state
->rebasing
= !!file_exists(am_path(state
, "rebasing"));
459 * Removes the am_state directory, forcefully terminating the current am
462 static void am_destroy(const struct am_state
*state
)
464 struct strbuf sb
= STRBUF_INIT
;
466 strbuf_addstr(&sb
, state
->dir
);
467 remove_dir_recursively(&sb
, 0);
472 * Runs applypatch-msg hook. Returns its exit code.
474 static int run_applypatch_msg_hook(struct am_state
*state
)
480 if (!state
->no_verify
)
481 ret
= run_hooks_l("applypatch-msg", am_path(state
, "final-commit"), NULL
);
484 FREE_AND_NULL(state
->msg
);
485 if (read_commit_msg(state
) < 0)
486 die(_("'%s' was deleted by the applypatch-msg hook"),
487 am_path(state
, "final-commit"));
494 * Runs post-rewrite hook. Returns it exit code.
496 static int run_post_rewrite_hook(const struct am_state
*state
)
498 struct run_hooks_opt opt
= RUN_HOOKS_OPT_INIT
;
500 strvec_push(&opt
.args
, "rebase");
501 opt
.path_to_stdin
= am_path(state
, "rewritten");
503 return run_hooks_opt("post-rewrite", &opt
);
507 * Reads the state directory's "rewritten" file, and copies notes from the old
508 * commits listed in the file to their rewritten commits.
510 * Returns 0 on success, -1 on failure.
512 static int copy_notes_for_rebase(const struct am_state
*state
)
514 struct notes_rewrite_cfg
*c
;
515 struct strbuf sb
= STRBUF_INIT
;
516 const char *invalid_line
= _("Malformed input line: '%s'.");
517 const char *msg
= "Notes added by 'git rebase'";
521 assert(state
->rebasing
);
523 c
= init_copy_notes_for_rewrite("rebase");
527 fp
= xfopen(am_path(state
, "rewritten"), "r");
529 while (!strbuf_getline_lf(&sb
, fp
)) {
530 struct object_id from_obj
, to_obj
;
533 if (sb
.len
!= the_hash_algo
->hexsz
* 2 + 1) {
534 ret
= error(invalid_line
, sb
.buf
);
538 if (parse_oid_hex(sb
.buf
, &from_obj
, &p
)) {
539 ret
= error(invalid_line
, sb
.buf
);
544 ret
= error(invalid_line
, sb
.buf
);
548 if (get_oid_hex(p
+ 1, &to_obj
)) {
549 ret
= error(invalid_line
, sb
.buf
);
553 if (copy_note_for_rewrite(c
, &from_obj
, &to_obj
))
554 ret
= error(_("Failed to copy notes from '%s' to '%s'"),
555 oid_to_hex(&from_obj
), oid_to_hex(&to_obj
));
559 finish_copy_notes_for_rewrite(the_repository
, c
, msg
);
566 * Determines if the file looks like a piece of RFC2822 mail by grabbing all
567 * non-indented lines and checking if they look like they begin with valid
568 * header field names.
570 * Returns 1 if the file looks like a piece of mail, 0 otherwise.
572 static int is_mail(FILE *fp
)
574 const char *header_regex
= "^[!-9;-~]+:";
575 struct strbuf sb
= STRBUF_INIT
;
579 if (fseek(fp
, 0L, SEEK_SET
))
580 die_errno(_("fseek failed"));
582 if (regcomp(®ex
, header_regex
, REG_NOSUB
| REG_EXTENDED
))
583 die("invalid pattern: %s", header_regex
);
585 while (!strbuf_getline(&sb
, fp
)) {
587 break; /* End of header */
589 /* Ignore indented folded lines */
590 if (*sb
.buf
== '\t' || *sb
.buf
== ' ')
593 /* It's a header if it matches header_regex */
594 if (regexec(®ex
, sb
.buf
, 0, NULL
, 0)) {
607 * Attempts to detect the patch_format of the patches contained in `paths`,
608 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if
611 static int detect_patch_format(const char **paths
)
613 enum patch_format ret
= PATCH_FORMAT_UNKNOWN
;
614 struct strbuf l1
= STRBUF_INIT
;
615 struct strbuf l2
= STRBUF_INIT
;
616 struct strbuf l3
= STRBUF_INIT
;
620 * We default to mbox format if input is from stdin and for directories
622 if (!*paths
|| !strcmp(*paths
, "-") || is_directory(*paths
))
623 return PATCH_FORMAT_MBOX
;
626 * Otherwise, check the first few lines of the first patch, starting
627 * from the first non-blank line, to try to detect its format.
630 fp
= xfopen(*paths
, "r");
632 while (!strbuf_getline(&l1
, fp
)) {
637 if (starts_with(l1
.buf
, "From ") || starts_with(l1
.buf
, "From: ")) {
638 ret
= PATCH_FORMAT_MBOX
;
642 if (starts_with(l1
.buf
, "# This series applies on GIT commit")) {
643 ret
= PATCH_FORMAT_STGIT_SERIES
;
647 if (!strcmp(l1
.buf
, "# HG changeset patch")) {
648 ret
= PATCH_FORMAT_HG
;
652 strbuf_getline(&l2
, fp
);
653 strbuf_getline(&l3
, fp
);
656 * If the second line is empty and the third is a From, Author or Date
657 * entry, this is likely an StGit patch.
659 if (l1
.len
&& !l2
.len
&&
660 (starts_with(l3
.buf
, "From:") ||
661 starts_with(l3
.buf
, "Author:") ||
662 starts_with(l3
.buf
, "Date:"))) {
663 ret
= PATCH_FORMAT_STGIT
;
667 if (l1
.len
&& is_mail(fp
)) {
668 ret
= PATCH_FORMAT_MBOX
;
681 * Splits out individual email patches from `paths`, where each path is either
682 * a mbox file or a Maildir. Returns 0 on success, -1 on failure.
684 static int split_mail_mbox(struct am_state
*state
, const char **paths
,
685 int keep_cr
, int mboxrd
)
687 struct child_process cp
= CHILD_PROCESS_INIT
;
688 struct strbuf last
= STRBUF_INIT
;
692 strvec_push(&cp
.args
, "mailsplit");
693 strvec_pushf(&cp
.args
, "-d%d", state
->prec
);
694 strvec_pushf(&cp
.args
, "-o%s", state
->dir
);
695 strvec_push(&cp
.args
, "-b");
697 strvec_push(&cp
.args
, "--keep-cr");
699 strvec_push(&cp
.args
, "--mboxrd");
700 strvec_push(&cp
.args
, "--");
701 strvec_pushv(&cp
.args
, paths
);
703 ret
= capture_command(&cp
, &last
, 8);
708 state
->last
= strtol(last
.buf
, NULL
, 10);
711 strbuf_release(&last
);
716 * Callback signature for split_mail_conv(). The foreign patch should be
717 * read from `in`, and the converted patch (in RFC2822 mail format) should be
718 * written to `out`. Return 0 on success, or -1 on failure.
720 typedef int (*mail_conv_fn
)(FILE *out
, FILE *in
, int keep_cr
);
723 * Calls `fn` for each file in `paths` to convert the foreign patch to the
724 * RFC2822 mail format suitable for parsing with git-mailinfo.
726 * Returns 0 on success, -1 on failure.
728 static int split_mail_conv(mail_conv_fn fn
, struct am_state
*state
,
729 const char **paths
, int keep_cr
)
731 static const char *stdin_only
[] = {"-", NULL
};
737 for (i
= 0; *paths
; paths
++, i
++) {
742 if (!strcmp(*paths
, "-"))
745 in
= fopen(*paths
, "r");
748 return error_errno(_("could not open '%s' for reading"),
751 mail
= mkpath("%s/%0*d", state
->dir
, state
->prec
, i
+ 1);
753 out
= fopen(mail
, "w");
757 return error_errno(_("could not open '%s' for writing"),
761 ret
= fn(out
, in
, keep_cr
);
768 return error(_("could not parse patch '%s'"), *paths
);
777 * A split_mail_conv() callback that converts an StGit patch to an RFC2822
778 * message suitable for parsing with git-mailinfo.
780 static int stgit_patch_to_mail(FILE *out
, FILE *in
, int keep_cr
)
782 struct strbuf sb
= STRBUF_INIT
;
783 int subject_printed
= 0;
785 while (!strbuf_getline_lf(&sb
, in
)) {
788 if (str_isspace(sb
.buf
))
790 else if (skip_prefix(sb
.buf
, "Author:", &str
))
791 fprintf(out
, "From:%s\n", str
);
792 else if (starts_with(sb
.buf
, "From") || starts_with(sb
.buf
, "Date"))
793 fprintf(out
, "%s\n", sb
.buf
);
794 else if (!subject_printed
) {
795 fprintf(out
, "Subject: %s\n", sb
.buf
);
798 fprintf(out
, "\n%s\n", sb
.buf
);
804 while (strbuf_fread(&sb
, 8192, in
) > 0) {
805 fwrite(sb
.buf
, 1, sb
.len
, out
);
814 * This function only supports a single StGit series file in `paths`.
816 * Given an StGit series file, converts the StGit patches in the series into
817 * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in
818 * the state directory.
820 * Returns 0 on success, -1 on failure.
822 static int split_mail_stgit_series(struct am_state
*state
, const char **paths
,
825 const char *series_dir
;
826 char *series_dir_buf
;
828 struct strvec patches
= STRVEC_INIT
;
829 struct strbuf sb
= STRBUF_INIT
;
832 if (!paths
[0] || paths
[1])
833 return error(_("Only one StGIT patch series can be applied at once"));
835 series_dir_buf
= xstrdup(*paths
);
836 series_dir
= dirname(series_dir_buf
);
838 fp
= fopen(*paths
, "r");
840 return error_errno(_("could not open '%s' for reading"), *paths
);
842 while (!strbuf_getline_lf(&sb
, fp
)) {
844 continue; /* skip comment lines */
846 strvec_push(&patches
, mkpath("%s/%s", series_dir
, sb
.buf
));
851 free(series_dir_buf
);
853 ret
= split_mail_conv(stgit_patch_to_mail
, state
, patches
.v
, keep_cr
);
855 strvec_clear(&patches
);
860 * A split_patches_conv() callback that converts a mercurial patch to a RFC2822
861 * message suitable for parsing with git-mailinfo.
863 static int hg_patch_to_mail(FILE *out
, FILE *in
, int keep_cr
)
865 struct strbuf sb
= STRBUF_INIT
;
868 while (!strbuf_getline_lf(&sb
, in
)) {
871 if (skip_prefix(sb
.buf
, "# User ", &str
))
872 fprintf(out
, "From: %s\n", str
);
873 else if (skip_prefix(sb
.buf
, "# Date ", &str
)) {
874 timestamp_t timestamp
;
879 timestamp
= parse_timestamp(str
, &end
, 10);
881 rc
= error(_("invalid timestamp"));
885 if (!skip_prefix(end
, " ", &str
)) {
886 rc
= error(_("invalid Date line"));
891 tz
= strtol(str
, &end
, 10);
893 rc
= error(_("invalid timezone offset"));
898 rc
= error(_("invalid Date line"));
903 * mercurial's timezone is in seconds west of UTC,
904 * however git's timezone is in hours + minutes east of
907 tz2
= labs(tz
) / 3600 * 100 + labs(tz
) % 3600 / 60;
911 fprintf(out
, "Date: %s\n", show_date(timestamp
, tz2
, DATE_MODE(RFC2822
)));
912 } else if (starts_with(sb
.buf
, "# ")) {
915 fprintf(out
, "\n%s\n", sb
.buf
);
921 while (strbuf_fread(&sb
, 8192, in
) > 0) {
922 fwrite(sb
.buf
, 1, sb
.len
, out
);
931 * Splits a list of files/directories into individual email patches. Each path
932 * in `paths` must be a file/directory that is formatted according to
935 * Once split out, the individual email patches will be stored in the state
936 * directory, with each patch's filename being its index, padded to state->prec
939 * state->cur will be set to the index of the first mail, and state->last will
940 * be set to the index of the last mail.
942 * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1
943 * to disable this behavior, -1 to use the default configured setting.
945 * Returns 0 on success, -1 on failure.
947 static int split_mail(struct am_state
*state
, enum patch_format patch_format
,
948 const char **paths
, int keep_cr
)
952 git_config_get_bool("am.keepcr", &keep_cr
);
955 switch (patch_format
) {
956 case PATCH_FORMAT_MBOX
:
957 return split_mail_mbox(state
, paths
, keep_cr
, 0);
958 case PATCH_FORMAT_STGIT
:
959 return split_mail_conv(stgit_patch_to_mail
, state
, paths
, keep_cr
);
960 case PATCH_FORMAT_STGIT_SERIES
:
961 return split_mail_stgit_series(state
, paths
, keep_cr
);
962 case PATCH_FORMAT_HG
:
963 return split_mail_conv(hg_patch_to_mail
, state
, paths
, keep_cr
);
964 case PATCH_FORMAT_MBOXRD
:
965 return split_mail_mbox(state
, paths
, keep_cr
, 1);
967 BUG("invalid patch_format");
973 * Setup a new am session for applying patches
975 static void am_setup(struct am_state
*state
, enum patch_format patch_format
,
976 const char **paths
, int keep_cr
)
978 struct object_id curr_head
;
980 struct strbuf sb
= STRBUF_INIT
;
983 patch_format
= detect_patch_format(paths
);
986 fprintf_ln(stderr
, _("Patch format detection failed."));
990 if (mkdir(state
->dir
, 0777) < 0 && errno
!= EEXIST
)
991 die_errno(_("failed to create directory '%s'"), state
->dir
);
992 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
994 if (split_mail(state
, patch_format
, paths
, keep_cr
) < 0) {
996 die(_("Failed to split patches."));
1000 state
->threeway
= 1;
1002 write_state_bool(state
, "threeway", state
->threeway
);
1003 write_state_bool(state
, "quiet", state
->quiet
);
1004 write_state_bool(state
, "sign", state
->signoff
);
1005 write_state_bool(state
, "utf8", state
->utf8
);
1007 if (state
->allow_rerere_autoupdate
)
1008 write_state_bool(state
, "rerere-autoupdate",
1009 state
->allow_rerere_autoupdate
== RERERE_AUTOUPDATE
);
1011 switch (state
->keep
) {
1018 case KEEP_NON_PATCH
:
1022 BUG("invalid value for state->keep");
1025 write_state_text(state
, "keep", str
);
1026 write_state_bool(state
, "messageid", state
->message_id
);
1028 switch (state
->scissors
) {
1029 case SCISSORS_UNSET
:
1032 case SCISSORS_FALSE
:
1039 BUG("invalid value for state->scissors");
1041 write_state_text(state
, "scissors", str
);
1043 switch (state
->quoted_cr
) {
1044 case quoted_cr_unset
:
1047 case quoted_cr_nowarn
:
1050 case quoted_cr_warn
:
1053 case quoted_cr_strip
:
1057 BUG("invalid value for state->quoted_cr");
1059 write_state_text(state
, "quoted-cr", str
);
1061 sq_quote_argv(&sb
, state
->git_apply_opts
.v
);
1062 write_state_text(state
, "apply-opt", sb
.buf
);
1064 if (state
->rebasing
)
1065 write_state_text(state
, "rebasing", "");
1067 write_state_text(state
, "applying", "");
1069 if (!get_oid("HEAD", &curr_head
)) {
1070 write_state_text(state
, "abort-safety", oid_to_hex(&curr_head
));
1071 if (!state
->rebasing
)
1072 update_ref("am", "ORIG_HEAD", &curr_head
, NULL
, 0,
1073 UPDATE_REFS_DIE_ON_ERR
);
1075 write_state_text(state
, "abort-safety", "");
1076 if (!state
->rebasing
)
1077 delete_ref(NULL
, "ORIG_HEAD", NULL
, 0);
1081 * NOTE: Since the "next" and "last" files determine if an am_state
1082 * session is in progress, they should be written last.
1085 write_state_count(state
, "next", state
->cur
);
1086 write_state_count(state
, "last", state
->last
);
1088 strbuf_release(&sb
);
1092 * Increments the patch pointer, and cleans am_state for the application of the
1095 static void am_next(struct am_state
*state
)
1097 struct object_id head
;
1099 FREE_AND_NULL(state
->author_name
);
1100 FREE_AND_NULL(state
->author_email
);
1101 FREE_AND_NULL(state
->author_date
);
1102 FREE_AND_NULL(state
->msg
);
1105 unlink(am_path(state
, "author-script"));
1106 unlink(am_path(state
, "final-commit"));
1108 oidclr(&state
->orig_commit
);
1109 unlink(am_path(state
, "original-commit"));
1110 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
1112 if (!get_oid("HEAD", &head
))
1113 write_state_text(state
, "abort-safety", oid_to_hex(&head
));
1115 write_state_text(state
, "abort-safety", "");
1118 write_state_count(state
, "next", state
->cur
);
1122 * Returns the filename of the current patch email.
1124 static const char *msgnum(const struct am_state
*state
)
1126 static struct strbuf sb
= STRBUF_INIT
;
1129 strbuf_addf(&sb
, "%0*d", state
->prec
, state
->cur
);
1135 * Dies with a user-friendly message on how to proceed after resolving the
1136 * problem. This message can be overridden with state->resolvemsg.
1138 static void NORETURN
die_user_resolve(const struct am_state
*state
)
1140 if (state
->resolvemsg
) {
1141 printf_ln("%s", state
->resolvemsg
);
1143 const char *cmdline
= state
->interactive
? "git am -i" : "git am";
1145 printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline
);
1146 printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline
);
1148 if (advice_enabled(ADVICE_AM_WORK_DIR
) &&
1149 is_empty_or_missing_file(am_path(state
, "patch")) &&
1150 !repo_index_has_changes(the_repository
, NULL
, NULL
))
1151 printf_ln(_("To record the empty patch as an empty commit, run \"%s --allow-empty\"."), cmdline
);
1153 printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline
);
1160 * Appends signoff to the "msg" field of the am_state.
1162 static void am_append_signoff(struct am_state
*state
)
1164 struct strbuf sb
= STRBUF_INIT
;
1166 strbuf_attach(&sb
, state
->msg
, state
->msg_len
, state
->msg_len
);
1167 append_signoff(&sb
, 0, 0);
1168 state
->msg
= strbuf_detach(&sb
, &state
->msg_len
);
1172 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.
1173 * state->msg will be set to the patch message. state->author_name,
1174 * state->author_email and state->author_date will be set to the patch author's
1175 * name, email and date respectively. The patch body will be written to the
1176 * state directory's "patch" file.
1178 * Returns 1 if the patch should be skipped, 0 otherwise.
1180 static int parse_mail(struct am_state
*state
, const char *mail
)
1183 struct strbuf sb
= STRBUF_INIT
;
1184 struct strbuf msg
= STRBUF_INIT
;
1185 struct strbuf author_name
= STRBUF_INIT
;
1186 struct strbuf author_date
= STRBUF_INIT
;
1187 struct strbuf author_email
= STRBUF_INIT
;
1191 setup_mailinfo(&mi
);
1194 mi
.metainfo_charset
= get_commit_output_encoding();
1196 mi
.metainfo_charset
= NULL
;
1198 switch (state
->keep
) {
1202 mi
.keep_subject
= 1;
1204 case KEEP_NON_PATCH
:
1205 mi
.keep_non_patch_brackets_in_subject
= 1;
1208 BUG("invalid value for state->keep");
1211 if (state
->message_id
)
1212 mi
.add_message_id
= 1;
1214 switch (state
->scissors
) {
1215 case SCISSORS_UNSET
:
1217 case SCISSORS_FALSE
:
1218 mi
.use_scissors
= 0;
1221 mi
.use_scissors
= 1;
1224 BUG("invalid value for state->scissors");
1227 switch (state
->quoted_cr
) {
1228 case quoted_cr_unset
:
1230 case quoted_cr_nowarn
:
1231 case quoted_cr_warn
:
1232 case quoted_cr_strip
:
1233 mi
.quoted_cr
= state
->quoted_cr
;
1236 BUG("invalid value for state->quoted_cr");
1239 mi
.input
= xfopen(mail
, "r");
1240 mi
.output
= xfopen(am_path(state
, "info"), "w");
1241 if (mailinfo(&mi
, am_path(state
, "msg"), am_path(state
, "patch")))
1242 die("could not parse patch");
1247 if (mi
.format_flowed
)
1248 warning(_("Patch sent with format=flowed; "
1249 "space at the end of lines might be lost."));
1251 /* Extract message and author information */
1252 fp
= xfopen(am_path(state
, "info"), "r");
1253 while (!strbuf_getline_lf(&sb
, fp
)) {
1256 if (skip_prefix(sb
.buf
, "Subject: ", &x
)) {
1258 strbuf_addch(&msg
, '\n');
1259 strbuf_addstr(&msg
, x
);
1260 } else if (skip_prefix(sb
.buf
, "Author: ", &x
))
1261 strbuf_addstr(&author_name
, x
);
1262 else if (skip_prefix(sb
.buf
, "Email: ", &x
))
1263 strbuf_addstr(&author_email
, x
);
1264 else if (skip_prefix(sb
.buf
, "Date: ", &x
))
1265 strbuf_addstr(&author_date
, x
);
1269 /* Skip pine's internal folder data */
1270 if (!strcmp(author_name
.buf
, "Mail System Internal Data")) {
1275 strbuf_addstr(&msg
, "\n\n");
1276 strbuf_addbuf(&msg
, &mi
.log_message
);
1277 strbuf_stripspace(&msg
, 0);
1279 assert(!state
->author_name
);
1280 state
->author_name
= strbuf_detach(&author_name
, NULL
);
1282 assert(!state
->author_email
);
1283 state
->author_email
= strbuf_detach(&author_email
, NULL
);
1285 assert(!state
->author_date
);
1286 state
->author_date
= strbuf_detach(&author_date
, NULL
);
1288 assert(!state
->msg
);
1289 state
->msg
= strbuf_detach(&msg
, &state
->msg_len
);
1292 strbuf_release(&msg
);
1293 strbuf_release(&author_date
);
1294 strbuf_release(&author_email
);
1295 strbuf_release(&author_name
);
1296 strbuf_release(&sb
);
1297 clear_mailinfo(&mi
);
1302 * Sets commit_id to the commit hash where the mail was generated from.
1303 * Returns 0 on success, -1 on failure.
1305 static int get_mail_commit_oid(struct object_id
*commit_id
, const char *mail
)
1307 struct strbuf sb
= STRBUF_INIT
;
1308 FILE *fp
= xfopen(mail
, "r");
1312 if (strbuf_getline_lf(&sb
, fp
) ||
1313 !skip_prefix(sb
.buf
, "From ", &x
) ||
1314 get_oid_hex(x
, commit_id
) < 0)
1317 strbuf_release(&sb
);
1323 * Sets state->msg, state->author_name, state->author_email, state->author_date
1324 * to the commit's respective info.
1326 static void get_commit_info(struct am_state
*state
, struct commit
*commit
)
1328 const char *buffer
, *ident_line
, *msg
;
1330 struct ident_split id
;
1332 buffer
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
1334 ident_line
= find_commit_header(buffer
, "author", &ident_len
);
1336 die(_("missing author line in commit %s"),
1337 oid_to_hex(&commit
->object
.oid
));
1338 if (split_ident_line(&id
, ident_line
, ident_len
) < 0)
1339 die(_("invalid ident line: %.*s"), (int)ident_len
, ident_line
);
1341 assert(!state
->author_name
);
1343 state
->author_name
=
1344 xmemdupz(id
.name_begin
, id
.name_end
- id
.name_begin
);
1346 state
->author_name
= xstrdup("");
1348 assert(!state
->author_email
);
1350 state
->author_email
=
1351 xmemdupz(id
.mail_begin
, id
.mail_end
- id
.mail_begin
);
1353 state
->author_email
= xstrdup("");
1355 assert(!state
->author_date
);
1356 state
->author_date
= xstrdup(show_ident_date(&id
, DATE_MODE(NORMAL
)));
1358 assert(!state
->msg
);
1359 msg
= strstr(buffer
, "\n\n");
1361 die(_("unable to parse commit %s"), oid_to_hex(&commit
->object
.oid
));
1362 state
->msg
= xstrdup(msg
+ 2);
1363 state
->msg_len
= strlen(state
->msg
);
1364 unuse_commit_buffer(commit
, buffer
);
1368 * Writes `commit` as a patch to the state directory's "patch" file.
1370 static void write_commit_patch(const struct am_state
*state
, struct commit
*commit
)
1372 struct rev_info rev_info
;
1375 fp
= xfopen(am_path(state
, "patch"), "w");
1376 repo_init_revisions(the_repository
, &rev_info
, NULL
);
1378 rev_info
.abbrev
= 0;
1379 rev_info
.disable_stdin
= 1;
1380 rev_info
.show_root_diff
= 1;
1381 rev_info
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1382 rev_info
.no_commit_id
= 1;
1383 rev_info
.diffopt
.flags
.binary
= 1;
1384 rev_info
.diffopt
.flags
.full_index
= 1;
1385 rev_info
.diffopt
.use_color
= 0;
1386 rev_info
.diffopt
.file
= fp
;
1387 rev_info
.diffopt
.close_file
= 1;
1388 add_pending_object(&rev_info
, &commit
->object
, "");
1389 diff_setup_done(&rev_info
.diffopt
);
1390 log_tree_commit(&rev_info
, commit
);
1391 release_revisions(&rev_info
);
1395 * Writes the diff of the index against HEAD as a patch to the state
1396 * directory's "patch" file.
1398 static void write_index_patch(const struct am_state
*state
)
1401 struct object_id head
;
1402 struct rev_info rev_info
;
1405 if (!get_oid("HEAD", &head
)) {
1406 struct commit
*commit
= lookup_commit_or_die(&head
, "HEAD");
1407 tree
= get_commit_tree(commit
);
1409 tree
= lookup_tree(the_repository
,
1410 the_repository
->hash_algo
->empty_tree
);
1412 fp
= xfopen(am_path(state
, "patch"), "w");
1413 repo_init_revisions(the_repository
, &rev_info
, NULL
);
1415 rev_info
.disable_stdin
= 1;
1416 rev_info
.no_commit_id
= 1;
1417 rev_info
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1418 rev_info
.diffopt
.use_color
= 0;
1419 rev_info
.diffopt
.file
= fp
;
1420 rev_info
.diffopt
.close_file
= 1;
1421 add_pending_object(&rev_info
, &tree
->object
, "");
1422 diff_setup_done(&rev_info
.diffopt
);
1423 run_diff_index(&rev_info
, 1);
1424 release_revisions(&rev_info
);
1428 * Like parse_mail(), but parses the mail by looking up its commit ID
1429 * directly. This is used in --rebasing mode to bypass git-mailinfo's munging
1432 * state->orig_commit will be set to the original commit ID.
1434 * Will always return 0 as the patch should never be skipped.
1436 static int parse_mail_rebase(struct am_state
*state
, const char *mail
)
1438 struct commit
*commit
;
1439 struct object_id commit_oid
;
1441 if (get_mail_commit_oid(&commit_oid
, mail
) < 0)
1442 die(_("could not parse %s"), mail
);
1444 commit
= lookup_commit_or_die(&commit_oid
, mail
);
1446 get_commit_info(state
, commit
);
1448 write_commit_patch(state
, commit
);
1450 oidcpy(&state
->orig_commit
, &commit_oid
);
1451 write_state_text(state
, "original-commit", oid_to_hex(&commit_oid
));
1452 update_ref("am", "REBASE_HEAD", &commit_oid
,
1453 NULL
, REF_NO_DEREF
, UPDATE_REFS_DIE_ON_ERR
);
1459 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If
1460 * `index_file` is not NULL, the patch will be applied to that index.
1462 static int run_apply(const struct am_state
*state
, const char *index_file
)
1464 struct strvec apply_paths
= STRVEC_INIT
;
1465 struct strvec apply_opts
= STRVEC_INIT
;
1466 struct apply_state apply_state
;
1468 int force_apply
= 0;
1470 const char **apply_argv
;
1472 if (init_apply_state(&apply_state
, the_repository
, NULL
))
1473 BUG("init_apply_state() failed");
1475 strvec_push(&apply_opts
, "apply");
1476 strvec_pushv(&apply_opts
, state
->git_apply_opts
.v
);
1479 * Build a copy that apply_parse_options() can rearrange.
1480 * apply_opts.v keeps referencing the allocated strings for
1481 * strvec_clear() to release.
1483 DUP_ARRAY(apply_argv
, apply_opts
.v
, apply_opts
.nr
);
1485 opts_left
= apply_parse_options(apply_opts
.nr
, apply_argv
,
1486 &apply_state
, &force_apply
, &options
,
1490 die("unknown option passed through to git apply");
1493 apply_state
.index_file
= index_file
;
1494 apply_state
.cached
= 1;
1496 apply_state
.check_index
= 1;
1499 * If we are allowed to fall back on 3-way merge, don't give false
1500 * errors during the initial attempt.
1502 if (state
->threeway
&& !index_file
)
1503 apply_state
.apply_verbosity
= verbosity_silent
;
1505 if (check_apply_state(&apply_state
, force_apply
))
1506 BUG("check_apply_state() failed");
1508 strvec_push(&apply_paths
, am_path(state
, "patch"));
1510 res
= apply_all_patches(&apply_state
, apply_paths
.nr
, apply_paths
.v
, options
);
1512 strvec_clear(&apply_paths
);
1513 strvec_clear(&apply_opts
);
1514 clear_apply_state(&apply_state
);
1521 /* Reload index as apply_all_patches() will have modified it. */
1522 discard_index(&the_index
);
1523 read_index_from(&the_index
, index_file
, get_git_dir());
1530 * Builds an index that contains just the blobs needed for a 3way merge.
1532 static int build_fake_ancestor(const struct am_state
*state
, const char *index_file
)
1534 struct child_process cp
= CHILD_PROCESS_INIT
;
1537 strvec_push(&cp
.args
, "apply");
1538 strvec_pushv(&cp
.args
, state
->git_apply_opts
.v
);
1539 strvec_pushf(&cp
.args
, "--build-fake-ancestor=%s", index_file
);
1540 strvec_push(&cp
.args
, am_path(state
, "patch"));
1542 if (run_command(&cp
))
1549 * Attempt a threeway merge, using index_path as the temporary index.
1551 static int fall_back_threeway(const struct am_state
*state
, const char *index_path
)
1553 struct object_id orig_tree
, their_tree
, our_tree
;
1554 const struct object_id
*bases
[1] = { &orig_tree
};
1555 struct merge_options o
;
1556 struct commit
*result
;
1557 char *their_tree_name
;
1559 if (get_oid("HEAD", &our_tree
) < 0)
1560 oidcpy(&our_tree
, the_hash_algo
->empty_tree
);
1562 if (build_fake_ancestor(state
, index_path
))
1563 return error("could not build fake ancestor");
1565 discard_index(&the_index
);
1566 read_index_from(&the_index
, index_path
, get_git_dir());
1568 if (write_index_as_tree(&orig_tree
, &the_index
, index_path
, 0, NULL
))
1569 return error(_("Repository lacks necessary blobs to fall back on 3-way merge."));
1571 say(state
, stdout
, _("Using index info to reconstruct a base tree..."));
1573 if (!state
->quiet
) {
1575 * List paths that needed 3-way fallback, so that the user can
1576 * review them with extra care to spot mismerges.
1578 struct rev_info rev_info
;
1580 repo_init_revisions(the_repository
, &rev_info
, NULL
);
1581 rev_info
.diffopt
.output_format
= DIFF_FORMAT_NAME_STATUS
;
1582 rev_info
.diffopt
.filter
|= diff_filter_bit('A');
1583 rev_info
.diffopt
.filter
|= diff_filter_bit('M');
1584 add_pending_oid(&rev_info
, "HEAD", &our_tree
, 0);
1585 diff_setup_done(&rev_info
.diffopt
);
1586 run_diff_index(&rev_info
, 1);
1587 release_revisions(&rev_info
);
1590 if (run_apply(state
, index_path
))
1591 return error(_("Did you hand edit your patch?\n"
1592 "It does not apply to blobs recorded in its index."));
1594 if (write_index_as_tree(&their_tree
, &the_index
, index_path
, 0, NULL
))
1595 return error("could not write tree");
1597 say(state
, stdout
, _("Falling back to patching base and 3-way merge..."));
1599 discard_index(&the_index
);
1600 repo_read_index(the_repository
);
1603 * This is not so wrong. Depending on which base we picked, orig_tree
1604 * may be wildly different from ours, but their_tree has the same set of
1605 * wildly different changes in parts the patch did not touch, so
1606 * recursive ends up canceling them, saying that we reverted all those
1610 init_merge_options(&o
, the_repository
);
1613 their_tree_name
= xstrfmt("%.*s", linelen(state
->msg
), state
->msg
);
1614 o
.branch2
= their_tree_name
;
1615 o
.detect_directory_renames
= MERGE_DIRECTORY_RENAMES_NONE
;
1620 if (merge_recursive_generic(&o
, &our_tree
, &their_tree
, 1, bases
, &result
)) {
1621 repo_rerere(the_repository
, state
->allow_rerere_autoupdate
);
1622 free(their_tree_name
);
1623 return error(_("Failed to merge in the changes."));
1626 free(their_tree_name
);
1631 * Commits the current index with state->msg as the commit message and
1632 * state->author_name, state->author_email and state->author_date as the author
1635 static void do_commit(const struct am_state
*state
)
1637 struct object_id tree
, parent
, commit
;
1638 const struct object_id
*old_oid
;
1639 struct commit_list
*parents
= NULL
;
1640 const char *reflog_msg
, *author
, *committer
= NULL
;
1641 struct strbuf sb
= STRBUF_INIT
;
1643 if (!state
->no_verify
&& run_hooks("pre-applypatch"))
1646 if (write_index_as_tree(&tree
, &the_index
, get_index_file(), 0, NULL
))
1647 die(_("git write-tree failed to write a tree"));
1649 if (!get_oid_commit("HEAD", &parent
)) {
1651 commit_list_insert(lookup_commit(the_repository
, &parent
),
1655 say(state
, stderr
, _("applying to an empty history"));
1658 author
= fmt_ident(state
->author_name
, state
->author_email
,
1660 state
->ignore_date
? NULL
: state
->author_date
,
1663 if (state
->committer_date_is_author_date
)
1664 committer
= fmt_ident(getenv("GIT_COMMITTER_NAME"),
1665 getenv("GIT_COMMITTER_EMAIL"),
1666 WANT_COMMITTER_IDENT
,
1667 state
->ignore_date
? NULL
1668 : state
->author_date
,
1671 if (commit_tree_extended(state
->msg
, state
->msg_len
, &tree
, parents
,
1672 &commit
, author
, committer
, state
->sign_commit
,
1674 die(_("failed to write commit object"));
1676 reflog_msg
= getenv("GIT_REFLOG_ACTION");
1680 strbuf_addf(&sb
, "%s: %.*s", reflog_msg
, linelen(state
->msg
),
1683 update_ref(sb
.buf
, "HEAD", &commit
, old_oid
, 0,
1684 UPDATE_REFS_DIE_ON_ERR
);
1686 if (state
->rebasing
) {
1687 FILE *fp
= xfopen(am_path(state
, "rewritten"), "a");
1689 assert(!is_null_oid(&state
->orig_commit
));
1690 fprintf(fp
, "%s ", oid_to_hex(&state
->orig_commit
));
1691 fprintf(fp
, "%s\n", oid_to_hex(&commit
));
1695 run_hooks("post-applypatch");
1697 strbuf_release(&sb
);
1701 * Validates the am_state for resuming -- the "msg" and authorship fields must
1704 static void validate_resume_state(const struct am_state
*state
)
1707 die(_("cannot resume: %s does not exist."),
1708 am_path(state
, "final-commit"));
1710 if (!state
->author_name
|| !state
->author_email
|| !state
->author_date
)
1711 die(_("cannot resume: %s does not exist."),
1712 am_path(state
, "author-script"));
1716 * Interactively prompt the user on whether the current patch should be
1719 * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to
1722 static int do_interactive(struct am_state
*state
)
1729 puts(_("Commit Body is:"));
1730 puts("--------------------------");
1731 printf("%s", state
->msg
);
1732 puts("--------------------------");
1735 * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
1736 * in your translation. The program will only accept English
1737 * input at this point.
1739 printf(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "));
1740 if (!fgets(reply
, sizeof(reply
), stdin
))
1741 die("unable to read from stdin; aborting");
1743 if (*reply
== 'y' || *reply
== 'Y') {
1745 } else if (*reply
== 'a' || *reply
== 'A') {
1746 state
->interactive
= 0;
1748 } else if (*reply
== 'n' || *reply
== 'N') {
1750 } else if (*reply
== 'e' || *reply
== 'E') {
1751 struct strbuf msg
= STRBUF_INIT
;
1753 if (!launch_editor(am_path(state
, "final-commit"), &msg
, NULL
)) {
1755 state
->msg
= strbuf_detach(&msg
, &state
->msg_len
);
1757 strbuf_release(&msg
);
1758 } else if (*reply
== 'v' || *reply
== 'V') {
1759 const char *pager
= git_pager(1);
1760 struct child_process cp
= CHILD_PROCESS_INIT
;
1764 prepare_pager_args(&cp
, pager
);
1765 strvec_push(&cp
.args
, am_path(state
, "patch"));
1772 * Applies all queued mail.
1774 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as
1775 * well as the state directory's "patch" file is used as-is for applying the
1776 * patch and committing it.
1778 static void am_run(struct am_state
*state
, int resume
)
1780 struct strbuf sb
= STRBUF_INIT
;
1782 unlink(am_path(state
, "dirtyindex"));
1784 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
, 0, 0,
1785 NULL
, NULL
, NULL
) < 0)
1786 die(_("unable to write index file"));
1788 if (repo_index_has_changes(the_repository
, NULL
, &sb
)) {
1789 write_state_bool(state
, "dirtyindex", 1);
1790 die(_("Dirty index: cannot apply patches (dirty: %s)"), sb
.buf
);
1793 strbuf_release(&sb
);
1795 while (state
->cur
<= state
->last
) {
1796 const char *mail
= am_path(state
, msgnum(state
));
1802 if (!file_exists(mail
))
1806 validate_resume_state(state
);
1810 if (state
->rebasing
)
1811 skip
= parse_mail_rebase(state
, mail
);
1813 skip
= parse_mail(state
, mail
);
1816 goto next
; /* mail should be skipped */
1819 am_append_signoff(state
);
1821 write_author_script(state
);
1822 write_commit_msg(state
);
1825 if (state
->interactive
&& do_interactive(state
))
1829 if (is_empty_or_missing_file(am_path(state
, "patch"))) {
1830 switch (state
->empty_type
) {
1831 case DROP_EMPTY_COMMIT
:
1832 say(state
, stdout
, _("Skipping: %.*s"), linelen(state
->msg
), state
->msg
);
1835 case KEEP_EMPTY_COMMIT
:
1837 say(state
, stdout
, _("Creating an empty commit: %.*s"),
1838 linelen(state
->msg
), state
->msg
);
1840 case STOP_ON_EMPTY_COMMIT
:
1841 printf_ln(_("Patch is empty."));
1842 die_user_resolve(state
);
1847 if (run_applypatch_msg_hook(state
))
1852 say(state
, stdout
, _("Applying: %.*s"), linelen(state
->msg
), state
->msg
);
1854 apply_status
= run_apply(state
, NULL
);
1856 if (apply_status
&& state
->threeway
) {
1857 struct strbuf sb
= STRBUF_INIT
;
1859 strbuf_addstr(&sb
, am_path(state
, "patch-merge-index"));
1860 apply_status
= fall_back_threeway(state
, sb
.buf
);
1861 strbuf_release(&sb
);
1864 * Applying the patch to an earlier tree and merging
1865 * the result may have produced the same tree as ours.
1867 if (!apply_status
&&
1868 !repo_index_has_changes(the_repository
, NULL
, NULL
)) {
1869 say(state
, stdout
, _("No changes -- Patch already applied."));
1875 printf_ln(_("Patch failed at %s %.*s"), msgnum(state
),
1876 linelen(state
->msg
), state
->msg
);
1878 if (advice_enabled(ADVICE_AM_WORK_DIR
))
1879 advise(_("Use 'git am --show-current-patch=diff' to see the failed patch"));
1881 die_user_resolve(state
);
1895 if (!is_empty_or_missing_file(am_path(state
, "rewritten"))) {
1896 assert(state
->rebasing
);
1897 copy_notes_for_rebase(state
);
1898 run_post_rewrite_hook(state
);
1902 * In rebasing mode, it's up to the caller to take care of
1905 if (!state
->rebasing
) {
1907 run_auto_maintenance(state
->quiet
);
1912 * Resume the current am session after patch application failure. The user did
1913 * all the hard work, and we do not have to do any patch application. Just
1914 * trust and commit what the user has in the index and working tree. If `allow_empty`
1915 * is true, commit as an empty commit when index has not changed and lacking a patch.
1917 static void am_resolve(struct am_state
*state
, int allow_empty
)
1919 validate_resume_state(state
);
1921 say(state
, stdout
, _("Applying: %.*s"), linelen(state
->msg
), state
->msg
);
1923 if (!repo_index_has_changes(the_repository
, NULL
, NULL
)) {
1924 if (allow_empty
&& is_empty_or_missing_file(am_path(state
, "patch"))) {
1925 printf_ln(_("No changes - recorded it as an empty commit."));
1927 printf_ln(_("No changes - did you forget to use 'git add'?\n"
1928 "If there is nothing left to stage, chances are that something else\n"
1929 "already introduced the same changes; you might want to skip this patch."));
1930 die_user_resolve(state
);
1934 if (unmerged_index(&the_index
)) {
1935 printf_ln(_("You still have unmerged paths in your index.\n"
1936 "You should 'git add' each file with resolved conflicts to mark them as such.\n"
1937 "You might run `git rm` on a file to accept \"deleted by them\" for it."));
1938 die_user_resolve(state
);
1941 if (state
->interactive
) {
1942 write_index_patch(state
);
1943 if (do_interactive(state
))
1947 repo_rerere(the_repository
, 0);
1958 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is
1959 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on
1962 static int fast_forward_to(struct tree
*head
, struct tree
*remote
, int reset
)
1964 struct lock_file lock_file
= LOCK_INIT
;
1965 struct unpack_trees_options opts
;
1966 struct tree_desc t
[2];
1968 if (parse_tree(head
) || parse_tree(remote
))
1971 repo_hold_locked_index(the_repository
, &lock_file
, LOCK_DIE_ON_ERROR
);
1973 refresh_index(&the_index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
1975 memset(&opts
, 0, sizeof(opts
));
1977 opts
.src_index
= &the_index
;
1978 opts
.dst_index
= &the_index
;
1981 opts
.reset
= reset
? UNPACK_RESET_PROTECT_UNTRACKED
: 0;
1982 opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
1983 opts
.fn
= twoway_merge
;
1984 init_tree_desc(&t
[0], head
->buffer
, head
->size
);
1985 init_tree_desc(&t
[1], remote
->buffer
, remote
->size
);
1987 if (unpack_trees(2, t
, &opts
)) {
1988 rollback_lock_file(&lock_file
);
1992 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
1993 die(_("unable to write new index file"));
1999 * Merges a tree into the index. The index's stat info will take precedence
2000 * over the merged tree's. Returns 0 on success, -1 on failure.
2002 static int merge_tree(struct tree
*tree
)
2004 struct lock_file lock_file
= LOCK_INIT
;
2005 struct unpack_trees_options opts
;
2006 struct tree_desc t
[1];
2008 if (parse_tree(tree
))
2011 repo_hold_locked_index(the_repository
, &lock_file
, LOCK_DIE_ON_ERROR
);
2013 memset(&opts
, 0, sizeof(opts
));
2015 opts
.src_index
= &the_index
;
2016 opts
.dst_index
= &the_index
;
2018 opts
.fn
= oneway_merge
;
2019 init_tree_desc(&t
[0], tree
->buffer
, tree
->size
);
2021 if (unpack_trees(1, t
, &opts
)) {
2022 rollback_lock_file(&lock_file
);
2026 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
2027 die(_("unable to write new index file"));
2033 * Clean the index without touching entries that are not modified between
2034 * `head` and `remote`.
2036 static int clean_index(const struct object_id
*head
, const struct object_id
*remote
)
2038 struct tree
*head_tree
, *remote_tree
, *index_tree
;
2039 struct object_id index
;
2041 head_tree
= parse_tree_indirect(head
);
2043 return error(_("Could not parse object '%s'."), oid_to_hex(head
));
2045 remote_tree
= parse_tree_indirect(remote
);
2047 return error(_("Could not parse object '%s'."), oid_to_hex(remote
));
2049 repo_read_index_unmerged(the_repository
);
2051 if (fast_forward_to(head_tree
, head_tree
, 1))
2054 if (write_index_as_tree(&index
, &the_index
, get_index_file(), 0, NULL
))
2057 index_tree
= parse_tree_indirect(&index
);
2059 return error(_("Could not parse object '%s'."), oid_to_hex(&index
));
2061 if (fast_forward_to(index_tree
, remote_tree
, 0))
2064 if (merge_tree(remote_tree
))
2067 remove_branch_state(the_repository
, 0);
2073 * Resets rerere's merge resolution metadata.
2075 static void am_rerere_clear(void)
2077 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
2078 rerere_clear(the_repository
, &merge_rr
);
2079 string_list_clear(&merge_rr
, 1);
2083 * Resume the current am session by skipping the current patch.
2085 static void am_skip(struct am_state
*state
)
2087 struct object_id head
;
2091 if (get_oid("HEAD", &head
))
2092 oidcpy(&head
, the_hash_algo
->empty_tree
);
2094 if (clean_index(&head
, &head
))
2095 die(_("failed to clean index"));
2097 if (state
->rebasing
) {
2098 FILE *fp
= xfopen(am_path(state
, "rewritten"), "a");
2100 assert(!is_null_oid(&state
->orig_commit
));
2101 fprintf(fp
, "%s ", oid_to_hex(&state
->orig_commit
));
2102 fprintf(fp
, "%s\n", oid_to_hex(&head
));
2112 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.
2114 * It is not safe to reset HEAD when:
2115 * 1. git-am previously failed because the index was dirty.
2116 * 2. HEAD has moved since git-am previously failed.
2118 static int safe_to_abort(const struct am_state
*state
)
2120 struct strbuf sb
= STRBUF_INIT
;
2121 struct object_id abort_safety
, head
;
2123 if (file_exists(am_path(state
, "dirtyindex")))
2126 if (read_state_file(&sb
, state
, "abort-safety", 1) > 0) {
2127 if (get_oid_hex(sb
.buf
, &abort_safety
))
2128 die(_("could not parse %s"), am_path(state
, "abort-safety"));
2130 oidclr(&abort_safety
);
2131 strbuf_release(&sb
);
2133 if (get_oid("HEAD", &head
))
2136 if (oideq(&head
, &abort_safety
))
2139 warning(_("You seem to have moved HEAD since the last 'am' failure.\n"
2140 "Not rewinding to ORIG_HEAD"));
2146 * Aborts the current am session if it is safe to do so.
2148 static void am_abort(struct am_state
*state
)
2150 struct object_id curr_head
, orig_head
;
2151 int has_curr_head
, has_orig_head
;
2154 if (!safe_to_abort(state
)) {
2161 curr_branch
= resolve_refdup("HEAD", 0, &curr_head
, NULL
);
2162 has_curr_head
= curr_branch
&& !is_null_oid(&curr_head
);
2164 oidcpy(&curr_head
, the_hash_algo
->empty_tree
);
2166 has_orig_head
= !get_oid("ORIG_HEAD", &orig_head
);
2168 oidcpy(&orig_head
, the_hash_algo
->empty_tree
);
2170 if (clean_index(&curr_head
, &orig_head
))
2171 die(_("failed to clean index"));
2174 update_ref("am --abort", "HEAD", &orig_head
,
2175 has_curr_head
? &curr_head
: NULL
, 0,
2176 UPDATE_REFS_DIE_ON_ERR
);
2177 else if (curr_branch
)
2178 delete_ref(NULL
, curr_branch
, NULL
, REF_NO_DEREF
);
2184 static int show_patch(struct am_state
*state
, enum show_patch_type sub_mode
)
2186 struct strbuf sb
= STRBUF_INIT
;
2187 const char *patch_path
;
2190 if (!is_null_oid(&state
->orig_commit
)) {
2191 struct child_process cmd
= CHILD_PROCESS_INIT
;
2193 strvec_pushl(&cmd
.args
, "show", oid_to_hex(&state
->orig_commit
),
2196 return run_command(&cmd
);
2200 case SHOW_PATCH_RAW
:
2201 patch_path
= am_path(state
, msgnum(state
));
2203 case SHOW_PATCH_DIFF
:
2204 patch_path
= am_path(state
, "patch");
2207 BUG("invalid mode for --show-current-patch");
2210 len
= strbuf_read_file(&sb
, patch_path
, 0);
2212 die_errno(_("failed to read '%s'"), patch_path
);
2215 write_in_full(1, sb
.buf
, sb
.len
);
2216 strbuf_release(&sb
);
2221 * parse_options() callback that validates and sets opt->value to the
2222 * PATCH_FORMAT_* enum value corresponding to `arg`.
2224 static int parse_opt_patchformat(const struct option
*opt
, const char *arg
, int unset
)
2226 int *opt_value
= opt
->value
;
2229 *opt_value
= PATCH_FORMAT_UNKNOWN
;
2230 else if (!strcmp(arg
, "mbox"))
2231 *opt_value
= PATCH_FORMAT_MBOX
;
2232 else if (!strcmp(arg
, "stgit"))
2233 *opt_value
= PATCH_FORMAT_STGIT
;
2234 else if (!strcmp(arg
, "stgit-series"))
2235 *opt_value
= PATCH_FORMAT_STGIT_SERIES
;
2236 else if (!strcmp(arg
, "hg"))
2237 *opt_value
= PATCH_FORMAT_HG
;
2238 else if (!strcmp(arg
, "mboxrd"))
2239 *opt_value
= PATCH_FORMAT_MBOXRD
;
2241 * Please update $__git_patchformat in git-completion.bash
2242 * when you add new options
2245 return error(_("invalid value for '%s': '%s'"),
2246 "--patch-format", arg
);
2261 struct resume_mode
{
2262 enum resume_type mode
;
2263 enum show_patch_type sub_mode
;
2266 static int parse_opt_show_current_patch(const struct option
*opt
, const char *arg
, int unset
)
2268 int *opt_value
= opt
->value
;
2269 struct resume_mode
*resume
= container_of(opt_value
, struct resume_mode
, mode
);
2272 * Please update $__git_showcurrentpatch in git-completion.bash
2273 * when you add new options
2275 const char *valid_modes
[] = {
2276 [SHOW_PATCH_DIFF
] = "diff",
2277 [SHOW_PATCH_RAW
] = "raw"
2279 int new_value
= SHOW_PATCH_RAW
;
2281 BUG_ON_OPT_NEG(unset
);
2284 for (new_value
= 0; new_value
< ARRAY_SIZE(valid_modes
); new_value
++) {
2285 if (!strcmp(arg
, valid_modes
[new_value
]))
2288 if (new_value
>= ARRAY_SIZE(valid_modes
))
2289 return error(_("invalid value for '%s': '%s'"),
2290 "--show-current-patch", arg
);
2293 if (resume
->mode
== RESUME_SHOW_PATCH
&& new_value
!= resume
->sub_mode
)
2294 return error(_("options '%s=%s' and '%s=%s' "
2295 "cannot be used together"),
2296 "--show-current-patch", "--show-current-patch", arg
, valid_modes
[resume
->sub_mode
]);
2298 resume
->mode
= RESUME_SHOW_PATCH
;
2299 resume
->sub_mode
= new_value
;
2303 static int git_am_config(const char *k
, const char *v
, void *cb UNUSED
)
2307 status
= git_gpg_config(k
, v
, NULL
);
2311 return git_default_config(k
, v
, NULL
);
2314 int cmd_am(int argc
, const char **argv
, const char *prefix
)
2316 struct am_state state
;
2319 int patch_format
= PATCH_FORMAT_UNKNOWN
;
2320 struct resume_mode resume
= { .mode
= RESUME_FALSE
};
2324 const char * const usage
[] = {
2325 N_("git am [<options>] [(<mbox> | <Maildir>)...]"),
2326 N_("git am [<options>] (--continue | --skip | --abort)"),
2330 struct option options
[] = {
2331 OPT_BOOL('i', "interactive", &state
.interactive
,
2332 N_("run interactively")),
2333 OPT_BOOL('n', "no-verify", &state
.no_verify
,
2334 N_("bypass pre-applypatch and applypatch-msg hooks")),
2335 OPT_HIDDEN_BOOL('b', "binary", &binary
,
2336 N_("historical option -- no-op")),
2337 OPT_BOOL('3', "3way", &state
.threeway
,
2338 N_("allow fall back on 3way merging if needed")),
2339 OPT__QUIET(&state
.quiet
, N_("be quiet")),
2340 OPT_SET_INT('s', "signoff", &state
.signoff
,
2341 N_("add a Signed-off-by trailer to the commit message"),
2343 OPT_BOOL('u', "utf8", &state
.utf8
,
2344 N_("recode into utf8 (default)")),
2345 OPT_SET_INT('k', "keep", &state
.keep
,
2346 N_("pass -k flag to git-mailinfo"), KEEP_TRUE
),
2347 OPT_SET_INT(0, "keep-non-patch", &state
.keep
,
2348 N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH
),
2349 OPT_BOOL('m', "message-id", &state
.message_id
,
2350 N_("pass -m flag to git-mailinfo")),
2351 OPT_SET_INT_F(0, "keep-cr", &keep_cr
,
2352 N_("pass --keep-cr flag to git-mailsplit for mbox format"),
2353 1, PARSE_OPT_NONEG
),
2354 OPT_SET_INT_F(0, "no-keep-cr", &keep_cr
,
2355 N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"),
2356 0, PARSE_OPT_NONEG
),
2357 OPT_BOOL('c', "scissors", &state
.scissors
,
2358 N_("strip everything before a scissors line")),
2359 OPT_CALLBACK_F(0, "quoted-cr", &state
.quoted_cr
, N_("action"),
2360 N_("pass it through git-mailinfo"),
2361 PARSE_OPT_NONEG
, am_option_parse_quoted_cr
),
2362 OPT_PASSTHRU_ARGV(0, "whitespace", &state
.git_apply_opts
, N_("action"),
2363 N_("pass it through git-apply"),
2365 OPT_PASSTHRU_ARGV(0, "ignore-space-change", &state
.git_apply_opts
, NULL
,
2366 N_("pass it through git-apply"),
2368 OPT_PASSTHRU_ARGV(0, "ignore-whitespace", &state
.git_apply_opts
, NULL
,
2369 N_("pass it through git-apply"),
2371 OPT_PASSTHRU_ARGV(0, "directory", &state
.git_apply_opts
, N_("root"),
2372 N_("pass it through git-apply"),
2374 OPT_PASSTHRU_ARGV(0, "exclude", &state
.git_apply_opts
, N_("path"),
2375 N_("pass it through git-apply"),
2377 OPT_PASSTHRU_ARGV(0, "include", &state
.git_apply_opts
, N_("path"),
2378 N_("pass it through git-apply"),
2380 OPT_PASSTHRU_ARGV('C', NULL
, &state
.git_apply_opts
, N_("n"),
2381 N_("pass it through git-apply"),
2383 OPT_PASSTHRU_ARGV('p', NULL
, &state
.git_apply_opts
, N_("num"),
2384 N_("pass it through git-apply"),
2386 OPT_CALLBACK(0, "patch-format", &patch_format
, N_("format"),
2387 N_("format the patch(es) are in"),
2388 parse_opt_patchformat
),
2389 OPT_PASSTHRU_ARGV(0, "reject", &state
.git_apply_opts
, NULL
,
2390 N_("pass it through git-apply"),
2392 OPT_STRING(0, "resolvemsg", &state
.resolvemsg
, NULL
,
2393 N_("override error message when patch failure occurs")),
2394 OPT_CMDMODE(0, "continue", &resume
.mode
,
2395 N_("continue applying patches after resolving a conflict"),
2397 OPT_CMDMODE('r', "resolved", &resume
.mode
,
2398 N_("synonyms for --continue"),
2400 OPT_CMDMODE(0, "skip", &resume
.mode
,
2401 N_("skip the current patch"),
2403 OPT_CMDMODE(0, "abort", &resume
.mode
,
2404 N_("restore the original branch and abort the patching operation"),
2406 OPT_CMDMODE(0, "quit", &resume
.mode
,
2407 N_("abort the patching operation but keep HEAD where it is"),
2409 { OPTION_CALLBACK
, 0, "show-current-patch", &resume
.mode
,
2411 N_("show the patch being applied"),
2412 PARSE_OPT_CMDMODE
| PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
| PARSE_OPT_LITERAL_ARGHELP
,
2413 parse_opt_show_current_patch
, RESUME_SHOW_PATCH
},
2414 OPT_CMDMODE(0, "allow-empty", &resume
.mode
,
2415 N_("record the empty patch as an empty commit"),
2416 RESUME_ALLOW_EMPTY
),
2417 OPT_BOOL(0, "committer-date-is-author-date",
2418 &state
.committer_date_is_author_date
,
2419 N_("lie about committer date")),
2420 OPT_BOOL(0, "ignore-date", &state
.ignore_date
,
2421 N_("use current timestamp for author date")),
2422 OPT_RERERE_AUTOUPDATE(&state
.allow_rerere_autoupdate
),
2423 { OPTION_STRING
, 'S', "gpg-sign", &state
.sign_commit
, N_("key-id"),
2424 N_("GPG-sign commits"),
2425 PARSE_OPT_OPTARG
, NULL
, (intptr_t) "" },
2426 OPT_CALLBACK_F(STOP_ON_EMPTY_COMMIT
, "empty", &state
.empty_type
, "{stop,drop,keep}",
2427 N_("how to handle empty patches"),
2428 PARSE_OPT_NONEG
, am_option_parse_empty
),
2429 OPT_HIDDEN_BOOL(0, "rebasing", &state
.rebasing
,
2430 N_("(internal use for git-rebase)")),
2434 if (argc
== 2 && !strcmp(argv
[1], "-h"))
2435 usage_with_options(usage
, options
);
2437 git_config(git_am_config
, NULL
);
2439 am_state_init(&state
);
2441 in_progress
= am_in_progress(&state
);
2445 argc
= parse_options(argc
, argv
, prefix
, options
, usage
, 0);
2448 fprintf_ln(stderr
, _("The -b/--binary option has been a no-op for long time, and\n"
2449 "it will be removed. Please do not use it anymore."));
2451 /* Ensure a valid committer ident can be constructed */
2452 git_committer_info(IDENT_STRICT
);
2454 if (repo_read_index_preload(the_repository
, NULL
, 0) < 0)
2455 die(_("failed to read the index"));
2459 * Catch user error to feed us patches when there is a session
2462 * 1. mbox path(s) are provided on the command-line.
2463 * 2. stdin is not a tty: the user is trying to feed us a patch
2464 * from standard input. This is somewhat unreliable -- stdin
2465 * could be /dev/null for example and the caller did not
2466 * intend to feed us a patch but wanted to continue
2469 if (argc
|| (resume
.mode
== RESUME_FALSE
&& !isatty(0)))
2470 die(_("previous rebase directory %s still exists but mbox given."),
2473 if (resume
.mode
== RESUME_FALSE
)
2474 resume
.mode
= RESUME_APPLY
;
2476 if (state
.signoff
== SIGNOFF_EXPLICIT
)
2477 am_append_signoff(&state
);
2479 struct strvec paths
= STRVEC_INIT
;
2483 * Handle stray state directory in the independent-run case. In
2484 * the --rebasing case, it is up to the caller to take care of
2485 * stray directories.
2487 if (file_exists(state
.dir
) && !state
.rebasing
) {
2488 if (resume
.mode
== RESUME_ABORT
|| resume
.mode
== RESUME_QUIT
) {
2490 am_state_release(&state
);
2494 die(_("Stray %s directory found.\n"
2495 "Use \"git am --abort\" to remove it."),
2500 die(_("Resolve operation not in progress, we are not resuming."));
2502 for (i
= 0; i
< argc
; i
++) {
2503 if (is_absolute_path(argv
[i
]) || !prefix
)
2504 strvec_push(&paths
, argv
[i
]);
2506 strvec_push(&paths
, mkpath("%s/%s", prefix
, argv
[i
]));
2509 if (state
.interactive
&& !paths
.nr
)
2510 die(_("interactive mode requires patches on the command line"));
2512 am_setup(&state
, patch_format
, paths
.v
, keep_cr
);
2514 strvec_clear(&paths
);
2517 switch (resume
.mode
) {
2524 case RESUME_RESOLVED
:
2525 case RESUME_ALLOW_EMPTY
:
2526 am_resolve(&state
, resume
.mode
== RESUME_ALLOW_EMPTY
? 1 : 0);
2538 case RESUME_SHOW_PATCH
:
2539 ret
= show_patch(&state
, resume
.sub_mode
);
2542 BUG("invalid resume value");
2545 am_state_release(&state
);