4 * Based on git-am.sh by Junio C Hamano.
9 #include "parse-options.h"
11 #include "run-command.h"
14 #include "cache-tree.h"
19 #include "unpack-trees.h"
21 #include "sequencer.h"
23 #include "merge-recursive.h"
26 * Returns 1 if the file is empty or does not exist, 0 otherwise.
28 static int is_empty_file(const char *filename)
32 if (stat(filename, &st) < 0) {
35 die_errno(_("could not stat %s"), filename);
42 * Like strbuf_getline(), but treats both '\n' and "\r\n" as line terminators.
44 static int strbuf_getline_crlf(struct strbuf *sb, FILE *fp)
46 if (strbuf_getwholeline(sb, fp, '\n'))
48 if (sb->buf[sb->len - 1] == '\n') {
49 strbuf_setlen(sb, sb->len - 1);
50 if (sb->len > 0 && sb->buf[sb->len - 1] == '\r')
51 strbuf_setlen(sb, sb->len - 1);
57 * Returns the length of the first line of msg.
59 static int linelen(const char *msg)
61 return strchrnul(msg, '\n') - msg;
65 PATCH_FORMAT_UNKNOWN = 0,
70 /* state directory path */
73 /* current and last patch numbers, 1-indexed */
77 /* commit metadata and message */
84 /* number of digits in patch filename */
87 /* various operating modes and command line options */
91 const char *resolvemsg;
95 * Initializes am_state with the default values. The state directory is set to
98 static void am_state_init(struct am_state *state, const char *dir)
100 memset(state, 0, sizeof(*state));
103 state->dir = xstrdup(dir);
109 * Releases memory allocated by an am_state.
111 static void am_state_release(struct am_state *state)
114 free(state->author_name);
115 free(state->author_email);
116 free(state->author_date);
121 * Returns path relative to the am_state directory.
123 static inline const char *am_path(const struct am_state *state, const char *path)
125 return mkpath("%s/%s", state->dir, path);
129 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline
132 static void say(const struct am_state *state, FILE *fp, const char *fmt, ...)
138 vfprintf(fp, fmt, ap);
145 * Returns 1 if there is an am session in progress, 0 otherwise.
147 static int am_in_progress(const struct am_state *state)
151 if (lstat(state->dir, &st) < 0 || !S_ISDIR(st.st_mode))
153 if (lstat(am_path(state, "last"), &st) || !S_ISREG(st.st_mode))
155 if (lstat(am_path(state, "next"), &st) || !S_ISREG(st.st_mode))
161 * Reads the contents of `file` in the `state` directory into `sb`. Returns the
162 * number of bytes read on success, -1 if the file does not exist. If `trim` is
163 * set, trailing whitespace will be removed.
165 static int read_state_file(struct strbuf *sb, const struct am_state *state,
166 const char *file, int trim)
170 if (strbuf_read_file(sb, am_path(state, file), 0) >= 0) {
180 die_errno(_("could not read '%s'"), am_path(state, file));
184 * Reads a KEY=VALUE shell variable assignment from `fp`, returning the VALUE
185 * as a newly-allocated string. VALUE must be a quoted string, and the KEY must
186 * match `key`. Returns NULL on failure.
188 * This is used by read_author_script() to read the GIT_AUTHOR_* variables from
191 static char *read_shell_var(FILE *fp, const char *key)
193 struct strbuf sb = STRBUF_INIT;
196 if (strbuf_getline(&sb, fp, '\n'))
199 if (!skip_prefix(sb.buf, key, &str))
202 if (!skip_prefix(str, "=", &str))
205 strbuf_remove(&sb, 0, str - sb.buf);
207 str = sq_dequote(sb.buf);
211 return strbuf_detach(&sb, NULL);
219 * Reads and parses the state directory's "author-script" file, and sets
220 * state->author_name, state->author_email and state->author_date accordingly.
221 * Returns 0 on success, -1 if the file could not be parsed.
223 * The author script is of the format:
225 * GIT_AUTHOR_NAME='$author_name'
226 * GIT_AUTHOR_EMAIL='$author_email'
227 * GIT_AUTHOR_DATE='$author_date'
229 * where $author_name, $author_email and $author_date are quoted. We are strict
230 * with our parsing, as the file was meant to be eval'd in the old git-am.sh
231 * script, and thus if the file differs from what this function expects, it is
232 * better to bail out than to do something that the user does not expect.
234 static int read_author_script(struct am_state *state)
236 const char *filename = am_path(state, "author-script");
239 assert(!state->author_name);
240 assert(!state->author_email);
241 assert(!state->author_date);
243 fp = fopen(filename, "r");
247 die_errno(_("could not open '%s' for reading"), filename);
250 state->author_name = read_shell_var(fp, "GIT_AUTHOR_NAME");
251 if (!state->author_name) {
256 state->author_email = read_shell_var(fp, "GIT_AUTHOR_EMAIL");
257 if (!state->author_email) {
262 state->author_date = read_shell_var(fp, "GIT_AUTHOR_DATE");
263 if (!state->author_date) {
268 if (fgetc(fp) != EOF) {
278 * Saves state->author_name, state->author_email and state->author_date in the
279 * state directory's "author-script" file.
281 static void write_author_script(const struct am_state *state)
283 struct strbuf sb = STRBUF_INIT;
285 strbuf_addstr(&sb, "GIT_AUTHOR_NAME=");
286 sq_quote_buf(&sb, state->author_name);
287 strbuf_addch(&sb, '\n');
289 strbuf_addstr(&sb, "GIT_AUTHOR_EMAIL=");
290 sq_quote_buf(&sb, state->author_email);
291 strbuf_addch(&sb, '\n');
293 strbuf_addstr(&sb, "GIT_AUTHOR_DATE=");
294 sq_quote_buf(&sb, state->author_date);
295 strbuf_addch(&sb, '\n');
297 write_file(am_path(state, "author-script"), 1, "%s", sb.buf);
303 * Reads the commit message from the state directory's "final-commit" file,
304 * setting state->msg to its contents and state->msg_len to the length of its
307 * Returns 0 on success, -1 if the file does not exist.
309 static int read_commit_msg(struct am_state *state)
311 struct strbuf sb = STRBUF_INIT;
315 if (read_state_file(&sb, state, "final-commit", 0) < 0) {
320 state->msg = strbuf_detach(&sb, &state->msg_len);
325 * Saves state->msg in the state directory's "final-commit" file.
327 static void write_commit_msg(const struct am_state *state)
330 const char *filename = am_path(state, "final-commit");
332 fd = xopen(filename, O_WRONLY | O_CREAT, 0666);
333 if (write_in_full(fd, state->msg, state->msg_len) < 0)
334 die_errno(_("could not write to %s"), filename);
339 * Loads state from disk.
341 static void am_load(struct am_state *state)
343 struct strbuf sb = STRBUF_INIT;
345 if (read_state_file(&sb, state, "next", 1) < 0)
346 die("BUG: state file 'next' does not exist");
347 state->cur = strtol(sb.buf, NULL, 10);
349 if (read_state_file(&sb, state, "last", 1) < 0)
350 die("BUG: state file 'last' does not exist");
351 state->last = strtol(sb.buf, NULL, 10);
353 if (read_author_script(state) < 0)
354 die(_("could not parse author script"));
356 read_commit_msg(state);
358 read_state_file(&sb, state, "threeway", 1);
359 state->threeway = !strcmp(sb.buf, "t");
361 read_state_file(&sb, state, "quiet", 1);
362 state->quiet = !strcmp(sb.buf, "t");
364 read_state_file(&sb, state, "sign", 1);
365 state->signoff = !strcmp(sb.buf, "t");
371 * Removes the am_state directory, forcefully terminating the current am
374 static void am_destroy(const struct am_state *state)
376 struct strbuf sb = STRBUF_INIT;
378 strbuf_addstr(&sb, state->dir);
379 remove_dir_recursively(&sb, 0);
384 * Determines if the file looks like a piece of RFC2822 mail by grabbing all
385 * non-indented lines and checking if they look like they begin with valid
386 * header field names.
388 * Returns 1 if the file looks like a piece of mail, 0 otherwise.
390 static int is_mail(FILE *fp)
392 const char *header_regex = "^[!-9;-~]+:";
393 struct strbuf sb = STRBUF_INIT;
397 if (fseek(fp, 0L, SEEK_SET))
398 die_errno(_("fseek failed"));
400 if (regcomp(®ex, header_regex, REG_NOSUB | REG_EXTENDED))
401 die("invalid pattern: %s", header_regex);
403 while (!strbuf_getline_crlf(&sb, fp)) {
405 break; /* End of header */
407 /* Ignore indented folded lines */
408 if (*sb.buf == '\t' || *sb.buf == ' ')
411 /* It's a header if it matches header_regex */
412 if (regexec(®ex, sb.buf, 0, NULL, 0)) {
425 * Attempts to detect the patch_format of the patches contained in `paths`,
426 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if
429 static int detect_patch_format(const char **paths)
431 enum patch_format ret = PATCH_FORMAT_UNKNOWN;
432 struct strbuf l1 = STRBUF_INIT;
436 * We default to mbox format if input is from stdin and for directories
438 if (!*paths || !strcmp(*paths, "-") || is_directory(*paths))
439 return PATCH_FORMAT_MBOX;
442 * Otherwise, check the first few lines of the first patch, starting
443 * from the first non-blank line, to try to detect its format.
446 fp = xfopen(*paths, "r");
448 while (!strbuf_getline_crlf(&l1, fp)) {
453 if (starts_with(l1.buf, "From ") || starts_with(l1.buf, "From: ")) {
454 ret = PATCH_FORMAT_MBOX;
458 if (l1.len && is_mail(fp)) {
459 ret = PATCH_FORMAT_MBOX;
470 * Splits out individual email patches from `paths`, where each path is either
471 * a mbox file or a Maildir. Returns 0 on success, -1 on failure.
473 static int split_mail_mbox(struct am_state *state, const char **paths)
475 struct child_process cp = CHILD_PROCESS_INIT;
476 struct strbuf last = STRBUF_INIT;
479 argv_array_push(&cp.args, "mailsplit");
480 argv_array_pushf(&cp.args, "-d%d", state->prec);
481 argv_array_pushf(&cp.args, "-o%s", state->dir);
482 argv_array_push(&cp.args, "-b");
483 argv_array_push(&cp.args, "--");
484 argv_array_pushv(&cp.args, paths);
486 if (capture_command(&cp, &last, 8))
490 state->last = strtol(last.buf, NULL, 10);
496 * Splits a list of files/directories into individual email patches. Each path
497 * in `paths` must be a file/directory that is formatted according to
500 * Once split out, the individual email patches will be stored in the state
501 * directory, with each patch's filename being its index, padded to state->prec
504 * state->cur will be set to the index of the first mail, and state->last will
505 * be set to the index of the last mail.
507 * Returns 0 on success, -1 on failure.
509 static int split_mail(struct am_state *state, enum patch_format patch_format,
512 switch (patch_format) {
513 case PATCH_FORMAT_MBOX:
514 return split_mail_mbox(state, paths);
516 die("BUG: invalid patch_format");
522 * Setup a new am session for applying patches
524 static void am_setup(struct am_state *state, enum patch_format patch_format,
527 unsigned char curr_head[GIT_SHA1_RAWSZ];
530 patch_format = detect_patch_format(paths);
533 fprintf_ln(stderr, _("Patch format detection failed."));
537 if (mkdir(state->dir, 0777) < 0 && errno != EEXIST)
538 die_errno(_("failed to create directory '%s'"), state->dir);
540 if (split_mail(state, patch_format, paths) < 0) {
542 die(_("Failed to split patches."));
545 write_file(am_path(state, "threeway"), 1, state->threeway ? "t" : "f");
547 write_file(am_path(state, "quiet"), 1, state->quiet ? "t" : "f");
549 write_file(am_path(state, "sign"), 1, state->signoff ? "t" : "f");
551 if (!get_sha1("HEAD", curr_head)) {
552 write_file(am_path(state, "abort-safety"), 1, "%s", sha1_to_hex(curr_head));
553 update_ref("am", "ORIG_HEAD", curr_head, NULL, 0, UPDATE_REFS_DIE_ON_ERR);
555 write_file(am_path(state, "abort-safety"), 1, "%s", "");
556 delete_ref("ORIG_HEAD", NULL, 0);
560 * NOTE: Since the "next" and "last" files determine if an am_state
561 * session is in progress, they should be written last.
564 write_file(am_path(state, "next"), 1, "%d", state->cur);
566 write_file(am_path(state, "last"), 1, "%d", state->last);
570 * Increments the patch pointer, and cleans am_state for the application of the
573 static void am_next(struct am_state *state)
575 unsigned char head[GIT_SHA1_RAWSZ];
577 free(state->author_name);
578 state->author_name = NULL;
580 free(state->author_email);
581 state->author_email = NULL;
583 free(state->author_date);
584 state->author_date = NULL;
590 unlink(am_path(state, "author-script"));
591 unlink(am_path(state, "final-commit"));
593 if (!get_sha1("HEAD", head))
594 write_file(am_path(state, "abort-safety"), 1, "%s", sha1_to_hex(head));
596 write_file(am_path(state, "abort-safety"), 1, "%s", "");
599 write_file(am_path(state, "next"), 1, "%d", state->cur);
603 * Returns the filename of the current patch email.
605 static const char *msgnum(const struct am_state *state)
607 static struct strbuf sb = STRBUF_INIT;
610 strbuf_addf(&sb, "%0*d", state->prec, state->cur);
616 * Refresh and write index.
618 static void refresh_and_write_cache(void)
620 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
622 hold_locked_index(lock_file, 1);
623 refresh_cache(REFRESH_QUIET);
624 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
625 die(_("unable to write index file"));
629 * Returns 1 if the index differs from HEAD, 0 otherwise. When on an unborn
630 * branch, returns 1 if there are entries in the index, 0 otherwise. If an
631 * strbuf is provided, the space-separated list of files that differ will be
634 static int index_has_changes(struct strbuf *sb)
636 unsigned char head[GIT_SHA1_RAWSZ];
639 if (!get_sha1_tree("HEAD", head)) {
640 struct diff_options opt;
643 DIFF_OPT_SET(&opt, EXIT_WITH_STATUS);
645 DIFF_OPT_SET(&opt, QUICK);
646 do_diff_cache(head, &opt);
648 for (i = 0; sb && i < diff_queued_diff.nr; i++) {
650 strbuf_addch(sb, ' ');
651 strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);
654 return DIFF_OPT_TST(&opt, HAS_CHANGES) != 0;
656 for (i = 0; sb && i < active_nr; i++) {
658 strbuf_addch(sb, ' ');
659 strbuf_addstr(sb, active_cache[i]->name);
666 * Dies with a user-friendly message on how to proceed after resolving the
667 * problem. This message can be overridden with state->resolvemsg.
669 static void NORETURN die_user_resolve(const struct am_state *state)
671 if (state->resolvemsg) {
672 printf_ln("%s", state->resolvemsg);
674 const char *cmdline = "git am";
676 printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline);
677 printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline);
678 printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline);
685 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.
686 * state->msg will be set to the patch message. state->author_name,
687 * state->author_email and state->author_date will be set to the patch author's
688 * name, email and date respectively. The patch body will be written to the
689 * state directory's "patch" file.
691 * Returns 1 if the patch should be skipped, 0 otherwise.
693 static int parse_mail(struct am_state *state, const char *mail)
696 struct child_process cp = CHILD_PROCESS_INIT;
697 struct strbuf sb = STRBUF_INIT;
698 struct strbuf msg = STRBUF_INIT;
699 struct strbuf author_name = STRBUF_INIT;
700 struct strbuf author_date = STRBUF_INIT;
701 struct strbuf author_email = STRBUF_INIT;
705 cp.in = xopen(mail, O_RDONLY, 0);
706 cp.out = xopen(am_path(state, "info"), O_WRONLY | O_CREAT, 0777);
708 argv_array_push(&cp.args, "mailinfo");
709 argv_array_push(&cp.args, am_path(state, "msg"));
710 argv_array_push(&cp.args, am_path(state, "patch"));
712 if (run_command(&cp) < 0)
713 die("could not parse patch");
718 /* Extract message and author information */
719 fp = xfopen(am_path(state, "info"), "r");
720 while (!strbuf_getline(&sb, fp, '\n')) {
723 if (skip_prefix(sb.buf, "Subject: ", &x)) {
725 strbuf_addch(&msg, '\n');
726 strbuf_addstr(&msg, x);
727 } else if (skip_prefix(sb.buf, "Author: ", &x))
728 strbuf_addstr(&author_name, x);
729 else if (skip_prefix(sb.buf, "Email: ", &x))
730 strbuf_addstr(&author_email, x);
731 else if (skip_prefix(sb.buf, "Date: ", &x))
732 strbuf_addstr(&author_date, x);
736 /* Skip pine's internal folder data */
737 if (!strcmp(author_name.buf, "Mail System Internal Data")) {
742 if (is_empty_file(am_path(state, "patch"))) {
743 printf_ln(_("Patch is empty. Was it split wrong?"));
744 die_user_resolve(state);
747 strbuf_addstr(&msg, "\n\n");
748 if (strbuf_read_file(&msg, am_path(state, "msg"), 0) < 0)
749 die_errno(_("could not read '%s'"), am_path(state, "msg"));
753 append_signoff(&msg, 0, 0);
755 assert(!state->author_name);
756 state->author_name = strbuf_detach(&author_name, NULL);
758 assert(!state->author_email);
759 state->author_email = strbuf_detach(&author_email, NULL);
761 assert(!state->author_date);
762 state->author_date = strbuf_detach(&author_date, NULL);
765 state->msg = strbuf_detach(&msg, &state->msg_len);
768 strbuf_release(&msg);
769 strbuf_release(&author_date);
770 strbuf_release(&author_email);
771 strbuf_release(&author_name);
777 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If
778 * `index_file` is not NULL, the patch will be applied to that index.
780 static int run_apply(const struct am_state *state, const char *index_file)
782 struct child_process cp = CHILD_PROCESS_INIT;
787 argv_array_pushf(&cp.env_array, "GIT_INDEX_FILE=%s", index_file);
790 * If we are allowed to fall back on 3-way merge, don't give false
791 * errors during the initial attempt.
793 if (state->threeway && !index_file) {
798 argv_array_push(&cp.args, "apply");
801 argv_array_push(&cp.args, "--cached");
803 argv_array_push(&cp.args, "--index");
805 argv_array_push(&cp.args, am_path(state, "patch"));
807 if (run_command(&cp))
810 /* Reload index as git-apply will have modified it. */
812 read_cache_from(index_file ? index_file : get_index_file());
818 * Builds an index that contains just the blobs needed for a 3way merge.
820 static int build_fake_ancestor(const struct am_state *state, const char *index_file)
822 struct child_process cp = CHILD_PROCESS_INIT;
825 argv_array_push(&cp.args, "apply");
826 argv_array_pushf(&cp.args, "--build-fake-ancestor=%s", index_file);
827 argv_array_push(&cp.args, am_path(state, "patch"));
829 if (run_command(&cp))
836 * Attempt a threeway merge, using index_path as the temporary index.
838 static int fall_back_threeway(const struct am_state *state, const char *index_path)
840 unsigned char orig_tree[GIT_SHA1_RAWSZ], his_tree[GIT_SHA1_RAWSZ],
841 our_tree[GIT_SHA1_RAWSZ];
842 const unsigned char *bases[1] = {orig_tree};
843 struct merge_options o;
844 struct commit *result;
847 if (get_sha1("HEAD", our_tree) < 0)
848 hashcpy(our_tree, EMPTY_TREE_SHA1_BIN);
850 if (build_fake_ancestor(state, index_path))
851 return error("could not build fake ancestor");
854 read_cache_from(index_path);
856 if (write_index_as_tree(orig_tree, &the_index, index_path, 0, NULL))
857 return error(_("Repository lacks necessary blobs to fall back on 3-way merge."));
859 say(state, stdout, _("Using index info to reconstruct a base tree..."));
863 * List paths that needed 3-way fallback, so that the user can
864 * review them with extra care to spot mismerges.
866 struct rev_info rev_info;
867 const char *diff_filter_str = "--diff-filter=AM";
869 init_revisions(&rev_info, NULL);
870 rev_info.diffopt.output_format = DIFF_FORMAT_NAME_STATUS;
871 diff_opt_parse(&rev_info.diffopt, &diff_filter_str, 1);
872 add_pending_sha1(&rev_info, "HEAD", our_tree, 0);
873 diff_setup_done(&rev_info.diffopt);
874 run_diff_index(&rev_info, 1);
877 if (run_apply(state, index_path))
878 return error(_("Did you hand edit your patch?\n"
879 "It does not apply to blobs recorded in its index."));
881 if (write_index_as_tree(his_tree, &the_index, index_path, 0, NULL))
882 return error("could not write tree");
884 say(state, stdout, _("Falling back to patching base and 3-way merge..."));
890 * This is not so wrong. Depending on which base we picked, orig_tree
891 * may be wildly different from ours, but his_tree has the same set of
892 * wildly different changes in parts the patch did not touch, so
893 * recursive ends up canceling them, saying that we reverted all those
897 init_merge_options(&o);
900 his_tree_name = xstrfmt("%.*s", linelen(state->msg), state->msg);
901 o.branch2 = his_tree_name;
906 if (merge_recursive_generic(&o, our_tree, his_tree, 1, bases, &result)) {
908 return error(_("Failed to merge in the changes."));
916 * Commits the current index with state->msg as the commit message and
917 * state->author_name, state->author_email and state->author_date as the author
920 static void do_commit(const struct am_state *state)
922 unsigned char tree[GIT_SHA1_RAWSZ], parent[GIT_SHA1_RAWSZ],
923 commit[GIT_SHA1_RAWSZ];
925 struct commit_list *parents = NULL;
926 const char *reflog_msg, *author;
927 struct strbuf sb = STRBUF_INIT;
929 if (write_cache_as_tree(tree, 0, NULL))
930 die(_("git write-tree failed to write a tree"));
932 if (!get_sha1_commit("HEAD", parent)) {
934 commit_list_insert(lookup_commit(parent), &parents);
937 say(state, stderr, _("applying to an empty history"));
940 author = fmt_ident(state->author_name, state->author_email,
941 state->author_date, IDENT_STRICT);
943 if (commit_tree(state->msg, state->msg_len, tree, parents, commit,
945 die(_("failed to write commit object"));
947 reflog_msg = getenv("GIT_REFLOG_ACTION");
951 strbuf_addf(&sb, "%s: %.*s", reflog_msg, linelen(state->msg),
954 update_ref(sb.buf, "HEAD", commit, ptr, 0, UPDATE_REFS_DIE_ON_ERR);
960 * Validates the am_state for resuming -- the "msg" and authorship fields must
963 static void validate_resume_state(const struct am_state *state)
966 die(_("cannot resume: %s does not exist."),
967 am_path(state, "final-commit"));
969 if (!state->author_name || !state->author_email || !state->author_date)
970 die(_("cannot resume: %s does not exist."),
971 am_path(state, "author-script"));
975 * Applies all queued mail.
977 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as
978 * well as the state directory's "patch" file is used as-is for applying the
979 * patch and committing it.
981 static void am_run(struct am_state *state, int resume)
983 const char *argv_gc_auto[] = {"gc", "--auto", NULL};
984 struct strbuf sb = STRBUF_INIT;
986 unlink(am_path(state, "dirtyindex"));
988 refresh_and_write_cache();
990 if (index_has_changes(&sb)) {
991 write_file(am_path(state, "dirtyindex"), 1, "t");
992 die(_("Dirty index: cannot apply patches (dirty: %s)"), sb.buf);
997 while (state->cur <= state->last) {
998 const char *mail = am_path(state, msgnum(state));
1001 if (!file_exists(mail))
1005 validate_resume_state(state);
1008 if (parse_mail(state, mail))
1009 goto next; /* mail should be skipped */
1011 write_author_script(state);
1012 write_commit_msg(state);
1015 say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
1017 apply_status = run_apply(state, NULL);
1019 if (apply_status && state->threeway) {
1020 struct strbuf sb = STRBUF_INIT;
1022 strbuf_addstr(&sb, am_path(state, "patch-merge-index"));
1023 apply_status = fall_back_threeway(state, sb.buf);
1024 strbuf_release(&sb);
1027 * Applying the patch to an earlier tree and merging
1028 * the result may have produced the same tree as ours.
1030 if (!apply_status && !index_has_changes(NULL)) {
1031 say(state, stdout, _("No changes -- Patch already applied."));
1037 int advice_amworkdir = 1;
1039 printf_ln(_("Patch failed at %s %.*s"), msgnum(state),
1040 linelen(state->msg), state->msg);
1042 git_config_get_bool("advice.amworkdir", &advice_amworkdir);
1044 if (advice_amworkdir)
1045 printf_ln(_("The copy of the patch that failed is found in: %s"),
1046 am_path(state, "patch"));
1048 die_user_resolve(state);
1058 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
1062 * Resume the current am session after patch application failure. The user did
1063 * all the hard work, and we do not have to do any patch application. Just
1064 * trust and commit what the user has in the index and working tree.
1066 static void am_resolve(struct am_state *state)
1068 validate_resume_state(state);
1070 say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
1072 if (!index_has_changes(NULL)) {
1073 printf_ln(_("No changes - did you forget to use 'git add'?\n"
1074 "If there is nothing left to stage, chances are that something else\n"
1075 "already introduced the same changes; you might want to skip this patch."));
1076 die_user_resolve(state);
1079 if (unmerged_cache()) {
1080 printf_ln(_("You still have unmerged paths in your index.\n"
1081 "Did you forget to use 'git add'?"));
1082 die_user_resolve(state);
1092 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is
1093 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on
1096 static int fast_forward_to(struct tree *head, struct tree *remote, int reset)
1098 struct lock_file *lock_file;
1099 struct unpack_trees_options opts;
1100 struct tree_desc t[2];
1102 if (parse_tree(head) || parse_tree(remote))
1105 lock_file = xcalloc(1, sizeof(struct lock_file));
1106 hold_locked_index(lock_file, 1);
1108 refresh_cache(REFRESH_QUIET);
1110 memset(&opts, 0, sizeof(opts));
1112 opts.src_index = &the_index;
1113 opts.dst_index = &the_index;
1117 opts.fn = twoway_merge;
1118 init_tree_desc(&t[0], head->buffer, head->size);
1119 init_tree_desc(&t[1], remote->buffer, remote->size);
1121 if (unpack_trees(2, t, &opts)) {
1122 rollback_lock_file(lock_file);
1126 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
1127 die(_("unable to write new index file"));
1133 * Clean the index without touching entries that are not modified between
1134 * `head` and `remote`.
1136 static int clean_index(const unsigned char *head, const unsigned char *remote)
1138 struct lock_file *lock_file;
1139 struct tree *head_tree, *remote_tree, *index_tree;
1140 unsigned char index[GIT_SHA1_RAWSZ];
1141 struct pathspec pathspec;
1143 head_tree = parse_tree_indirect(head);
1145 return error(_("Could not parse object '%s'."), sha1_to_hex(head));
1147 remote_tree = parse_tree_indirect(remote);
1149 return error(_("Could not parse object '%s'."), sha1_to_hex(remote));
1151 read_cache_unmerged();
1153 if (fast_forward_to(head_tree, head_tree, 1))
1156 if (write_cache_as_tree(index, 0, NULL))
1159 index_tree = parse_tree_indirect(index);
1161 return error(_("Could not parse object '%s'."), sha1_to_hex(index));
1163 if (fast_forward_to(index_tree, remote_tree, 0))
1166 memset(&pathspec, 0, sizeof(pathspec));
1168 lock_file = xcalloc(1, sizeof(struct lock_file));
1169 hold_locked_index(lock_file, 1);
1171 if (read_tree(remote_tree, 0, &pathspec)) {
1172 rollback_lock_file(lock_file);
1176 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
1177 die(_("unable to write new index file"));
1179 remove_branch_state();
1185 * Resume the current am session by skipping the current patch.
1187 static void am_skip(struct am_state *state)
1189 unsigned char head[GIT_SHA1_RAWSZ];
1191 if (get_sha1("HEAD", head))
1192 hashcpy(head, EMPTY_TREE_SHA1_BIN);
1194 if (clean_index(head, head))
1195 die(_("failed to clean index"));
1202 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.
1204 * It is not safe to reset HEAD when:
1205 * 1. git-am previously failed because the index was dirty.
1206 * 2. HEAD has moved since git-am previously failed.
1208 static int safe_to_abort(const struct am_state *state)
1210 struct strbuf sb = STRBUF_INIT;
1211 unsigned char abort_safety[GIT_SHA1_RAWSZ], head[GIT_SHA1_RAWSZ];
1213 if (file_exists(am_path(state, "dirtyindex")))
1216 if (read_state_file(&sb, state, "abort-safety", 1) > 0) {
1217 if (get_sha1_hex(sb.buf, abort_safety))
1218 die(_("could not parse %s"), am_path(state, "abort_safety"));
1220 hashclr(abort_safety);
1222 if (get_sha1("HEAD", head))
1225 if (!hashcmp(head, abort_safety))
1228 error(_("You seem to have moved HEAD since the last 'am' failure.\n"
1229 "Not rewinding to ORIG_HEAD"));
1235 * Aborts the current am session if it is safe to do so.
1237 static void am_abort(struct am_state *state)
1239 unsigned char curr_head[GIT_SHA1_RAWSZ], orig_head[GIT_SHA1_RAWSZ];
1240 int has_curr_head, has_orig_head;
1243 if (!safe_to_abort(state)) {
1248 curr_branch = resolve_refdup("HEAD", 0, curr_head, NULL);
1249 has_curr_head = !is_null_sha1(curr_head);
1251 hashcpy(curr_head, EMPTY_TREE_SHA1_BIN);
1253 has_orig_head = !get_sha1("ORIG_HEAD", orig_head);
1255 hashcpy(orig_head, EMPTY_TREE_SHA1_BIN);
1257 clean_index(curr_head, orig_head);
1260 update_ref("am --abort", "HEAD", orig_head,
1261 has_curr_head ? curr_head : NULL, 0,
1262 UPDATE_REFS_DIE_ON_ERR);
1263 else if (curr_branch)
1264 delete_ref(curr_branch, NULL, REF_NODEREF);
1271 * parse_options() callback that validates and sets opt->value to the
1272 * PATCH_FORMAT_* enum value corresponding to `arg`.
1274 static int parse_opt_patchformat(const struct option *opt, const char *arg, int unset)
1276 int *opt_value = opt->value;
1278 if (!strcmp(arg, "mbox"))
1279 *opt_value = PATCH_FORMAT_MBOX;
1281 return error(_("Invalid value for --patch-format: %s"), arg);
1293 int cmd_am(int argc, const char **argv, const char *prefix)
1295 struct am_state state;
1296 int patch_format = PATCH_FORMAT_UNKNOWN;
1297 enum resume_mode resume = RESUME_FALSE;
1299 const char * const usage[] = {
1300 N_("git am [options] [(<mbox>|<Maildir>)...]"),
1301 N_("git am [options] (--continue | --skip | --abort)"),
1305 struct option options[] = {
1306 OPT_BOOL('3', "3way", &state.threeway,
1307 N_("allow fall back on 3way merging if needed")),
1308 OPT__QUIET(&state.quiet, N_("be quiet")),
1309 OPT_BOOL('s', "signoff", &state.signoff,
1310 N_("add a Signed-off-by line to the commit message")),
1311 OPT_CALLBACK(0, "patch-format", &patch_format, N_("format"),
1312 N_("format the patch(es) are in"),
1313 parse_opt_patchformat),
1314 OPT_STRING(0, "resolvemsg", &state.resolvemsg, NULL,
1315 N_("override error message when patch failure occurs")),
1316 OPT_CMDMODE(0, "continue", &resume,
1317 N_("continue applying patches after resolving a conflict"),
1319 OPT_CMDMODE('r', "resolved", &resume,
1320 N_("synonyms for --continue"),
1322 OPT_CMDMODE(0, "skip", &resume,
1323 N_("skip the current patch"),
1325 OPT_CMDMODE(0, "abort", &resume,
1326 N_("restore the original branch and abort the patching operation."),
1332 * NEEDSWORK: Once all the features of git-am.sh have been
1333 * re-implemented in builtin/am.c, this preamble can be removed.
1335 if (!getenv("_GIT_USE_BUILTIN_AM")) {
1336 const char *path = mkpath("%s/git-am", git_exec_path());
1338 if (sane_execvp(path, (char **)argv) < 0)
1339 die_errno("could not exec %s", path);
1341 prefix = setup_git_directory();
1342 trace_repo_setup(prefix);
1346 git_config(git_default_config, NULL);
1348 am_state_init(&state, git_path("rebase-apply"));
1350 argc = parse_options(argc, argv, prefix, options, usage, 0);
1352 if (read_index_preload(&the_index, NULL) < 0)
1353 die(_("failed to read the index"));
1355 if (am_in_progress(&state)) {
1357 * Catch user error to feed us patches when there is a session
1360 * 1. mbox path(s) are provided on the command-line.
1361 * 2. stdin is not a tty: the user is trying to feed us a patch
1362 * from standard input. This is somewhat unreliable -- stdin
1363 * could be /dev/null for example and the caller did not
1364 * intend to feed us a patch but wanted to continue
1367 if (argc || (resume == RESUME_FALSE && !isatty(0)))
1368 die(_("previous rebase directory %s still exists but mbox given."),
1371 if (resume == RESUME_FALSE)
1372 resume = RESUME_APPLY;
1376 struct argv_array paths = ARGV_ARRAY_INIT;
1380 die(_("Resolve operation not in progress, we are not resuming."));
1382 for (i = 0; i < argc; i++) {
1383 if (is_absolute_path(argv[i]) || !prefix)
1384 argv_array_push(&paths, argv[i]);
1386 argv_array_push(&paths, mkpath("%s/%s", prefix, argv[i]));
1389 am_setup(&state, patch_format, paths.argv);
1391 argv_array_clear(&paths);
1401 case RESUME_RESOLVED:
1411 die("BUG: invalid resume value");
1414 am_state_release(&state);