4 * Based on git-am.sh by Junio C Hamano.
6 #define USE_THE_INDEX_COMPATIBILITY_MACROS
11 #include "parse-options.h"
13 #include "run-command.h"
17 #include "cache-tree.h"
22 #include "unpack-trees.h"
24 #include "sequencer.h"
26 #include "merge-recursive.h"
29 #include "notes-utils.h"
34 #include "string-list.h"
36 #include "repository.h"
39 * Returns the length of the first line of msg.
41 static int linelen(const char *msg
)
43 return strchrnul(msg
, '\n') - msg
;
47 * Returns true if `str` consists of only whitespace, false otherwise.
49 static int str_isspace(const char *str
)
59 PATCH_FORMAT_UNKNOWN
= 0,
62 PATCH_FORMAT_STGIT_SERIES
,
69 KEEP_TRUE
, /* pass -k flag to git-mailinfo */
70 KEEP_NON_PATCH
/* pass -b flag to git-mailinfo */
75 SCISSORS_FALSE
= 0, /* pass --no-scissors to git-mailinfo */
76 SCISSORS_TRUE
/* pass --scissors to git-mailinfo */
82 SIGNOFF_EXPLICIT
/* --signoff was set on the command-line */
86 /* state directory path */
89 /* current and last patch numbers, 1-indexed */
93 /* commit metadata and message */
100 /* when --rebasing, records the original commit the patch came from */
101 struct object_id orig_commit
;
103 /* number of digits in patch filename */
106 /* various operating modes and command line options */
110 int signoff
; /* enum signoff_type */
112 int keep
; /* enum keep_type */
114 int scissors
; /* enum scissors_type */
115 struct argv_array git_apply_opts
;
116 const char *resolvemsg
;
117 int committer_date_is_author_date
;
119 int allow_rerere_autoupdate
;
120 const char *sign_commit
;
125 * Initializes am_state with the default values.
127 static void am_state_init(struct am_state
*state
)
131 memset(state
, 0, sizeof(*state
));
133 state
->dir
= git_pathdup("rebase-apply");
137 git_config_get_bool("am.threeway", &state
->threeway
);
141 git_config_get_bool("am.messageid", &state
->message_id
);
143 state
->scissors
= SCISSORS_UNSET
;
145 argv_array_init(&state
->git_apply_opts
);
147 if (!git_config_get_bool("commit.gpgsign", &gpgsign
))
148 state
->sign_commit
= gpgsign
? "" : NULL
;
152 * Releases memory allocated by an am_state.
154 static void am_state_release(struct am_state
*state
)
157 free(state
->author_name
);
158 free(state
->author_email
);
159 free(state
->author_date
);
161 argv_array_clear(&state
->git_apply_opts
);
165 * Returns path relative to the am_state directory.
167 static inline const char *am_path(const struct am_state
*state
, const char *path
)
169 return mkpath("%s/%s", state
->dir
, path
);
173 * For convenience to call write_file()
175 static void write_state_text(const struct am_state
*state
,
176 const char *name
, const char *string
)
178 write_file(am_path(state
, name
), "%s", string
);
181 static void write_state_count(const struct am_state
*state
,
182 const char *name
, int value
)
184 write_file(am_path(state
, name
), "%d", value
);
187 static void write_state_bool(const struct am_state
*state
,
188 const char *name
, int value
)
190 write_state_text(state
, name
, value
? "t" : "f");
194 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline
197 static void say(const struct am_state
*state
, FILE *fp
, const char *fmt
, ...)
203 vfprintf(fp
, fmt
, ap
);
210 * Returns 1 if there is an am session in progress, 0 otherwise.
212 static int am_in_progress(const struct am_state
*state
)
216 if (lstat(state
->dir
, &st
) < 0 || !S_ISDIR(st
.st_mode
))
218 if (lstat(am_path(state
, "last"), &st
) || !S_ISREG(st
.st_mode
))
220 if (lstat(am_path(state
, "next"), &st
) || !S_ISREG(st
.st_mode
))
226 * Reads the contents of `file` in the `state` directory into `sb`. Returns the
227 * number of bytes read on success, -1 if the file does not exist. If `trim` is
228 * set, trailing whitespace will be removed.
230 static int read_state_file(struct strbuf
*sb
, const struct am_state
*state
,
231 const char *file
, int trim
)
235 if (strbuf_read_file(sb
, am_path(state
, file
), 0) >= 0) {
245 die_errno(_("could not read '%s'"), am_path(state
, file
));
249 * Reads and parses the state directory's "author-script" file, and sets
250 * state->author_name, state->author_email and state->author_date accordingly.
251 * Returns 0 on success, -1 if the file could not be parsed.
253 * The author script is of the format:
255 * GIT_AUTHOR_NAME='$author_name'
256 * GIT_AUTHOR_EMAIL='$author_email'
257 * GIT_AUTHOR_DATE='$author_date'
259 * where $author_name, $author_email and $author_date are quoted. We are strict
260 * with our parsing, as the file was meant to be eval'd in the old git-am.sh
261 * script, and thus if the file differs from what this function expects, it is
262 * better to bail out than to do something that the user does not expect.
264 static int read_am_author_script(struct am_state
*state
)
266 const char *filename
= am_path(state
, "author-script");
268 assert(!state
->author_name
);
269 assert(!state
->author_email
);
270 assert(!state
->author_date
);
272 return read_author_script(filename
, &state
->author_name
,
273 &state
->author_email
, &state
->author_date
, 1);
277 * Saves state->author_name, state->author_email and state->author_date in the
278 * state directory's "author-script" file.
280 static void write_author_script(const struct am_state
*state
)
282 struct strbuf sb
= STRBUF_INIT
;
284 strbuf_addstr(&sb
, "GIT_AUTHOR_NAME=");
285 sq_quote_buf(&sb
, state
->author_name
);
286 strbuf_addch(&sb
, '\n');
288 strbuf_addstr(&sb
, "GIT_AUTHOR_EMAIL=");
289 sq_quote_buf(&sb
, state
->author_email
);
290 strbuf_addch(&sb
, '\n');
292 strbuf_addstr(&sb
, "GIT_AUTHOR_DATE=");
293 sq_quote_buf(&sb
, state
->author_date
);
294 strbuf_addch(&sb
, '\n');
296 write_state_text(state
, "author-script", sb
.buf
);
302 * Reads the commit message from the state directory's "final-commit" file,
303 * setting state->msg to its contents and state->msg_len to the length of its
306 * Returns 0 on success, -1 if the file does not exist.
308 static int read_commit_msg(struct am_state
*state
)
310 struct strbuf sb
= STRBUF_INIT
;
314 if (read_state_file(&sb
, state
, "final-commit", 0) < 0) {
319 state
->msg
= strbuf_detach(&sb
, &state
->msg_len
);
324 * Saves state->msg in the state directory's "final-commit" file.
326 static void write_commit_msg(const struct am_state
*state
)
328 const char *filename
= am_path(state
, "final-commit");
329 write_file_buf(filename
, state
->msg
, state
->msg_len
);
333 * Loads state from disk.
335 static void am_load(struct am_state
*state
)
337 struct strbuf sb
= STRBUF_INIT
;
339 if (read_state_file(&sb
, state
, "next", 1) < 0)
340 BUG("state file 'next' does not exist");
341 state
->cur
= strtol(sb
.buf
, NULL
, 10);
343 if (read_state_file(&sb
, state
, "last", 1) < 0)
344 BUG("state file 'last' does not exist");
345 state
->last
= strtol(sb
.buf
, NULL
, 10);
347 if (read_am_author_script(state
) < 0)
348 die(_("could not parse author script"));
350 read_commit_msg(state
);
352 if (read_state_file(&sb
, state
, "original-commit", 1) < 0)
353 oidclr(&state
->orig_commit
);
354 else if (get_oid_hex(sb
.buf
, &state
->orig_commit
) < 0)
355 die(_("could not parse %s"), am_path(state
, "original-commit"));
357 read_state_file(&sb
, state
, "threeway", 1);
358 state
->threeway
= !strcmp(sb
.buf
, "t");
360 read_state_file(&sb
, state
, "quiet", 1);
361 state
->quiet
= !strcmp(sb
.buf
, "t");
363 read_state_file(&sb
, state
, "sign", 1);
364 state
->signoff
= !strcmp(sb
.buf
, "t");
366 read_state_file(&sb
, state
, "utf8", 1);
367 state
->utf8
= !strcmp(sb
.buf
, "t");
369 if (file_exists(am_path(state
, "rerere-autoupdate"))) {
370 read_state_file(&sb
, state
, "rerere-autoupdate", 1);
371 state
->allow_rerere_autoupdate
= strcmp(sb
.buf
, "t") ?
372 RERERE_NOAUTOUPDATE
: RERERE_AUTOUPDATE
;
374 state
->allow_rerere_autoupdate
= 0;
377 read_state_file(&sb
, state
, "keep", 1);
378 if (!strcmp(sb
.buf
, "t"))
379 state
->keep
= KEEP_TRUE
;
380 else if (!strcmp(sb
.buf
, "b"))
381 state
->keep
= KEEP_NON_PATCH
;
383 state
->keep
= KEEP_FALSE
;
385 read_state_file(&sb
, state
, "messageid", 1);
386 state
->message_id
= !strcmp(sb
.buf
, "t");
388 read_state_file(&sb
, state
, "scissors", 1);
389 if (!strcmp(sb
.buf
, "t"))
390 state
->scissors
= SCISSORS_TRUE
;
391 else if (!strcmp(sb
.buf
, "f"))
392 state
->scissors
= SCISSORS_FALSE
;
394 state
->scissors
= SCISSORS_UNSET
;
396 read_state_file(&sb
, state
, "apply-opt", 1);
397 argv_array_clear(&state
->git_apply_opts
);
398 if (sq_dequote_to_argv_array(sb
.buf
, &state
->git_apply_opts
) < 0)
399 die(_("could not parse %s"), am_path(state
, "apply-opt"));
401 state
->rebasing
= !!file_exists(am_path(state
, "rebasing"));
407 * Removes the am_state directory, forcefully terminating the current am
410 static void am_destroy(const struct am_state
*state
)
412 struct strbuf sb
= STRBUF_INIT
;
414 strbuf_addstr(&sb
, state
->dir
);
415 remove_dir_recursively(&sb
, 0);
420 * Runs applypatch-msg hook. Returns its exit code.
422 static int run_applypatch_msg_hook(struct am_state
*state
)
427 ret
= run_hook_le(NULL
, "applypatch-msg", am_path(state
, "final-commit"), NULL
);
430 FREE_AND_NULL(state
->msg
);
431 if (read_commit_msg(state
) < 0)
432 die(_("'%s' was deleted by the applypatch-msg hook"),
433 am_path(state
, "final-commit"));
440 * Runs post-rewrite hook. Returns it exit code.
442 static int run_post_rewrite_hook(const struct am_state
*state
)
444 struct child_process cp
= CHILD_PROCESS_INIT
;
445 const char *hook
= find_hook("post-rewrite");
451 argv_array_push(&cp
.args
, hook
);
452 argv_array_push(&cp
.args
, "rebase");
454 cp
.in
= xopen(am_path(state
, "rewritten"), O_RDONLY
);
455 cp
.stdout_to_stderr
= 1;
457 ret
= run_command(&cp
);
464 * Reads the state directory's "rewritten" file, and copies notes from the old
465 * commits listed in the file to their rewritten commits.
467 * Returns 0 on success, -1 on failure.
469 static int copy_notes_for_rebase(const struct am_state
*state
)
471 struct notes_rewrite_cfg
*c
;
472 struct strbuf sb
= STRBUF_INIT
;
473 const char *invalid_line
= _("Malformed input line: '%s'.");
474 const char *msg
= "Notes added by 'git rebase'";
478 assert(state
->rebasing
);
480 c
= init_copy_notes_for_rewrite("rebase");
484 fp
= xfopen(am_path(state
, "rewritten"), "r");
486 while (!strbuf_getline_lf(&sb
, fp
)) {
487 struct object_id from_obj
, to_obj
;
489 if (sb
.len
!= GIT_SHA1_HEXSZ
* 2 + 1) {
490 ret
= error(invalid_line
, sb
.buf
);
494 if (get_oid_hex(sb
.buf
, &from_obj
)) {
495 ret
= error(invalid_line
, sb
.buf
);
499 if (sb
.buf
[GIT_SHA1_HEXSZ
] != ' ') {
500 ret
= error(invalid_line
, sb
.buf
);
504 if (get_oid_hex(sb
.buf
+ GIT_SHA1_HEXSZ
+ 1, &to_obj
)) {
505 ret
= error(invalid_line
, sb
.buf
);
509 if (copy_note_for_rewrite(c
, &from_obj
, &to_obj
))
510 ret
= error(_("Failed to copy notes from '%s' to '%s'"),
511 oid_to_hex(&from_obj
), oid_to_hex(&to_obj
));
515 finish_copy_notes_for_rewrite(the_repository
, c
, msg
);
522 * Determines if the file looks like a piece of RFC2822 mail by grabbing all
523 * non-indented lines and checking if they look like they begin with valid
524 * header field names.
526 * Returns 1 if the file looks like a piece of mail, 0 otherwise.
528 static int is_mail(FILE *fp
)
530 const char *header_regex
= "^[!-9;-~]+:";
531 struct strbuf sb
= STRBUF_INIT
;
535 if (fseek(fp
, 0L, SEEK_SET
))
536 die_errno(_("fseek failed"));
538 if (regcomp(®ex
, header_regex
, REG_NOSUB
| REG_EXTENDED
))
539 die("invalid pattern: %s", header_regex
);
541 while (!strbuf_getline(&sb
, fp
)) {
543 break; /* End of header */
545 /* Ignore indented folded lines */
546 if (*sb
.buf
== '\t' || *sb
.buf
== ' ')
549 /* It's a header if it matches header_regex */
550 if (regexec(®ex
, sb
.buf
, 0, NULL
, 0)) {
563 * Attempts to detect the patch_format of the patches contained in `paths`,
564 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if
567 static int detect_patch_format(const char **paths
)
569 enum patch_format ret
= PATCH_FORMAT_UNKNOWN
;
570 struct strbuf l1
= STRBUF_INIT
;
571 struct strbuf l2
= STRBUF_INIT
;
572 struct strbuf l3
= STRBUF_INIT
;
576 * We default to mbox format if input is from stdin and for directories
578 if (!*paths
|| !strcmp(*paths
, "-") || is_directory(*paths
))
579 return PATCH_FORMAT_MBOX
;
582 * Otherwise, check the first few lines of the first patch, starting
583 * from the first non-blank line, to try to detect its format.
586 fp
= xfopen(*paths
, "r");
588 while (!strbuf_getline(&l1
, fp
)) {
593 if (starts_with(l1
.buf
, "From ") || starts_with(l1
.buf
, "From: ")) {
594 ret
= PATCH_FORMAT_MBOX
;
598 if (starts_with(l1
.buf
, "# This series applies on GIT commit")) {
599 ret
= PATCH_FORMAT_STGIT_SERIES
;
603 if (!strcmp(l1
.buf
, "# HG changeset patch")) {
604 ret
= PATCH_FORMAT_HG
;
608 strbuf_getline(&l2
, fp
);
609 strbuf_getline(&l3
, fp
);
612 * If the second line is empty and the third is a From, Author or Date
613 * entry, this is likely an StGit patch.
615 if (l1
.len
&& !l2
.len
&&
616 (starts_with(l3
.buf
, "From:") ||
617 starts_with(l3
.buf
, "Author:") ||
618 starts_with(l3
.buf
, "Date:"))) {
619 ret
= PATCH_FORMAT_STGIT
;
623 if (l1
.len
&& is_mail(fp
)) {
624 ret
= PATCH_FORMAT_MBOX
;
637 * Splits out individual email patches from `paths`, where each path is either
638 * a mbox file or a Maildir. Returns 0 on success, -1 on failure.
640 static int split_mail_mbox(struct am_state
*state
, const char **paths
,
641 int keep_cr
, int mboxrd
)
643 struct child_process cp
= CHILD_PROCESS_INIT
;
644 struct strbuf last
= STRBUF_INIT
;
648 argv_array_push(&cp
.args
, "mailsplit");
649 argv_array_pushf(&cp
.args
, "-d%d", state
->prec
);
650 argv_array_pushf(&cp
.args
, "-o%s", state
->dir
);
651 argv_array_push(&cp
.args
, "-b");
653 argv_array_push(&cp
.args
, "--keep-cr");
655 argv_array_push(&cp
.args
, "--mboxrd");
656 argv_array_push(&cp
.args
, "--");
657 argv_array_pushv(&cp
.args
, paths
);
659 ret
= capture_command(&cp
, &last
, 8);
664 state
->last
= strtol(last
.buf
, NULL
, 10);
667 strbuf_release(&last
);
672 * Callback signature for split_mail_conv(). The foreign patch should be
673 * read from `in`, and the converted patch (in RFC2822 mail format) should be
674 * written to `out`. Return 0 on success, or -1 on failure.
676 typedef int (*mail_conv_fn
)(FILE *out
, FILE *in
, int keep_cr
);
679 * Calls `fn` for each file in `paths` to convert the foreign patch to the
680 * RFC2822 mail format suitable for parsing with git-mailinfo.
682 * Returns 0 on success, -1 on failure.
684 static int split_mail_conv(mail_conv_fn fn
, struct am_state
*state
,
685 const char **paths
, int keep_cr
)
687 static const char *stdin_only
[] = {"-", NULL
};
693 for (i
= 0; *paths
; paths
++, i
++) {
698 if (!strcmp(*paths
, "-"))
701 in
= fopen(*paths
, "r");
704 return error_errno(_("could not open '%s' for reading"),
707 mail
= mkpath("%s/%0*d", state
->dir
, state
->prec
, i
+ 1);
709 out
= fopen(mail
, "w");
713 return error_errno(_("could not open '%s' for writing"),
717 ret
= fn(out
, in
, keep_cr
);
724 return error(_("could not parse patch '%s'"), *paths
);
733 * A split_mail_conv() callback that converts an StGit patch to an RFC2822
734 * message suitable for parsing with git-mailinfo.
736 static int stgit_patch_to_mail(FILE *out
, FILE *in
, int keep_cr
)
738 struct strbuf sb
= STRBUF_INIT
;
739 int subject_printed
= 0;
741 while (!strbuf_getline_lf(&sb
, in
)) {
744 if (str_isspace(sb
.buf
))
746 else if (skip_prefix(sb
.buf
, "Author:", &str
))
747 fprintf(out
, "From:%s\n", str
);
748 else if (starts_with(sb
.buf
, "From") || starts_with(sb
.buf
, "Date"))
749 fprintf(out
, "%s\n", sb
.buf
);
750 else if (!subject_printed
) {
751 fprintf(out
, "Subject: %s\n", sb
.buf
);
754 fprintf(out
, "\n%s\n", sb
.buf
);
760 while (strbuf_fread(&sb
, 8192, in
) > 0) {
761 fwrite(sb
.buf
, 1, sb
.len
, out
);
770 * This function only supports a single StGit series file in `paths`.
772 * Given an StGit series file, converts the StGit patches in the series into
773 * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in
774 * the state directory.
776 * Returns 0 on success, -1 on failure.
778 static int split_mail_stgit_series(struct am_state
*state
, const char **paths
,
781 const char *series_dir
;
782 char *series_dir_buf
;
784 struct argv_array patches
= ARGV_ARRAY_INIT
;
785 struct strbuf sb
= STRBUF_INIT
;
788 if (!paths
[0] || paths
[1])
789 return error(_("Only one StGIT patch series can be applied at once"));
791 series_dir_buf
= xstrdup(*paths
);
792 series_dir
= dirname(series_dir_buf
);
794 fp
= fopen(*paths
, "r");
796 return error_errno(_("could not open '%s' for reading"), *paths
);
798 while (!strbuf_getline_lf(&sb
, fp
)) {
800 continue; /* skip comment lines */
802 argv_array_push(&patches
, mkpath("%s/%s", series_dir
, sb
.buf
));
807 free(series_dir_buf
);
809 ret
= split_mail_conv(stgit_patch_to_mail
, state
, patches
.argv
, keep_cr
);
811 argv_array_clear(&patches
);
816 * A split_patches_conv() callback that converts a mercurial patch to a RFC2822
817 * message suitable for parsing with git-mailinfo.
819 static int hg_patch_to_mail(FILE *out
, FILE *in
, int keep_cr
)
821 struct strbuf sb
= STRBUF_INIT
;
824 while (!strbuf_getline_lf(&sb
, in
)) {
827 if (skip_prefix(sb
.buf
, "# User ", &str
))
828 fprintf(out
, "From: %s\n", str
);
829 else if (skip_prefix(sb
.buf
, "# Date ", &str
)) {
830 timestamp_t timestamp
;
835 timestamp
= parse_timestamp(str
, &end
, 10);
837 rc
= error(_("invalid timestamp"));
841 if (!skip_prefix(end
, " ", &str
)) {
842 rc
= error(_("invalid Date line"));
847 tz
= strtol(str
, &end
, 10);
849 rc
= error(_("invalid timezone offset"));
854 rc
= error(_("invalid Date line"));
859 * mercurial's timezone is in seconds west of UTC,
860 * however git's timezone is in hours + minutes east of
863 tz2
= labs(tz
) / 3600 * 100 + labs(tz
) % 3600 / 60;
867 fprintf(out
, "Date: %s\n", show_date(timestamp
, tz2
, DATE_MODE(RFC2822
)));
868 } else if (starts_with(sb
.buf
, "# ")) {
871 fprintf(out
, "\n%s\n", sb
.buf
);
877 while (strbuf_fread(&sb
, 8192, in
) > 0) {
878 fwrite(sb
.buf
, 1, sb
.len
, out
);
887 * Splits a list of files/directories into individual email patches. Each path
888 * in `paths` must be a file/directory that is formatted according to
891 * Once split out, the individual email patches will be stored in the state
892 * directory, with each patch's filename being its index, padded to state->prec
895 * state->cur will be set to the index of the first mail, and state->last will
896 * be set to the index of the last mail.
898 * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1
899 * to disable this behavior, -1 to use the default configured setting.
901 * Returns 0 on success, -1 on failure.
903 static int split_mail(struct am_state
*state
, enum patch_format patch_format
,
904 const char **paths
, int keep_cr
)
908 git_config_get_bool("am.keepcr", &keep_cr
);
911 switch (patch_format
) {
912 case PATCH_FORMAT_MBOX
:
913 return split_mail_mbox(state
, paths
, keep_cr
, 0);
914 case PATCH_FORMAT_STGIT
:
915 return split_mail_conv(stgit_patch_to_mail
, state
, paths
, keep_cr
);
916 case PATCH_FORMAT_STGIT_SERIES
:
917 return split_mail_stgit_series(state
, paths
, keep_cr
);
918 case PATCH_FORMAT_HG
:
919 return split_mail_conv(hg_patch_to_mail
, state
, paths
, keep_cr
);
920 case PATCH_FORMAT_MBOXRD
:
921 return split_mail_mbox(state
, paths
, keep_cr
, 1);
923 BUG("invalid patch_format");
929 * Setup a new am session for applying patches
931 static void am_setup(struct am_state
*state
, enum patch_format patch_format
,
932 const char **paths
, int keep_cr
)
934 struct object_id curr_head
;
936 struct strbuf sb
= STRBUF_INIT
;
939 patch_format
= detect_patch_format(paths
);
942 fprintf_ln(stderr
, _("Patch format detection failed."));
946 if (mkdir(state
->dir
, 0777) < 0 && errno
!= EEXIST
)
947 die_errno(_("failed to create directory '%s'"), state
->dir
);
948 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
950 if (split_mail(state
, patch_format
, paths
, keep_cr
) < 0) {
952 die(_("Failed to split patches."));
958 write_state_bool(state
, "threeway", state
->threeway
);
959 write_state_bool(state
, "quiet", state
->quiet
);
960 write_state_bool(state
, "sign", state
->signoff
);
961 write_state_bool(state
, "utf8", state
->utf8
);
963 if (state
->allow_rerere_autoupdate
)
964 write_state_bool(state
, "rerere-autoupdate",
965 state
->allow_rerere_autoupdate
== RERERE_AUTOUPDATE
);
967 switch (state
->keep
) {
978 BUG("invalid value for state->keep");
981 write_state_text(state
, "keep", str
);
982 write_state_bool(state
, "messageid", state
->message_id
);
984 switch (state
->scissors
) {
995 BUG("invalid value for state->scissors");
997 write_state_text(state
, "scissors", str
);
999 sq_quote_argv(&sb
, state
->git_apply_opts
.argv
);
1000 write_state_text(state
, "apply-opt", sb
.buf
);
1002 if (state
->rebasing
)
1003 write_state_text(state
, "rebasing", "");
1005 write_state_text(state
, "applying", "");
1007 if (!get_oid("HEAD", &curr_head
)) {
1008 write_state_text(state
, "abort-safety", oid_to_hex(&curr_head
));
1009 if (!state
->rebasing
)
1010 update_ref("am", "ORIG_HEAD", &curr_head
, NULL
, 0,
1011 UPDATE_REFS_DIE_ON_ERR
);
1013 write_state_text(state
, "abort-safety", "");
1014 if (!state
->rebasing
)
1015 delete_ref(NULL
, "ORIG_HEAD", NULL
, 0);
1019 * NOTE: Since the "next" and "last" files determine if an am_state
1020 * session is in progress, they should be written last.
1023 write_state_count(state
, "next", state
->cur
);
1024 write_state_count(state
, "last", state
->last
);
1026 strbuf_release(&sb
);
1030 * Increments the patch pointer, and cleans am_state for the application of the
1033 static void am_next(struct am_state
*state
)
1035 struct object_id head
;
1037 FREE_AND_NULL(state
->author_name
);
1038 FREE_AND_NULL(state
->author_email
);
1039 FREE_AND_NULL(state
->author_date
);
1040 FREE_AND_NULL(state
->msg
);
1043 unlink(am_path(state
, "author-script"));
1044 unlink(am_path(state
, "final-commit"));
1046 oidclr(&state
->orig_commit
);
1047 unlink(am_path(state
, "original-commit"));
1048 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
1050 if (!get_oid("HEAD", &head
))
1051 write_state_text(state
, "abort-safety", oid_to_hex(&head
));
1053 write_state_text(state
, "abort-safety", "");
1056 write_state_count(state
, "next", state
->cur
);
1060 * Returns the filename of the current patch email.
1062 static const char *msgnum(const struct am_state
*state
)
1064 static struct strbuf sb
= STRBUF_INIT
;
1067 strbuf_addf(&sb
, "%0*d", state
->prec
, state
->cur
);
1073 * Refresh and write index.
1075 static void refresh_and_write_cache(void)
1077 struct lock_file lock_file
= LOCK_INIT
;
1079 hold_locked_index(&lock_file
, LOCK_DIE_ON_ERROR
);
1080 refresh_cache(REFRESH_QUIET
);
1081 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
1082 die(_("unable to write index file"));
1086 * Dies with a user-friendly message on how to proceed after resolving the
1087 * problem. This message can be overridden with state->resolvemsg.
1089 static void NORETURN
die_user_resolve(const struct am_state
*state
)
1091 if (state
->resolvemsg
) {
1092 printf_ln("%s", state
->resolvemsg
);
1094 const char *cmdline
= state
->interactive
? "git am -i" : "git am";
1096 printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline
);
1097 printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline
);
1098 printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline
);
1105 * Appends signoff to the "msg" field of the am_state.
1107 static void am_append_signoff(struct am_state
*state
)
1109 struct strbuf sb
= STRBUF_INIT
;
1111 strbuf_attach(&sb
, state
->msg
, state
->msg_len
, state
->msg_len
);
1112 append_signoff(&sb
, 0, 0);
1113 state
->msg
= strbuf_detach(&sb
, &state
->msg_len
);
1117 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.
1118 * state->msg will be set to the patch message. state->author_name,
1119 * state->author_email and state->author_date will be set to the patch author's
1120 * name, email and date respectively. The patch body will be written to the
1121 * state directory's "patch" file.
1123 * Returns 1 if the patch should be skipped, 0 otherwise.
1125 static int parse_mail(struct am_state
*state
, const char *mail
)
1128 struct strbuf sb
= STRBUF_INIT
;
1129 struct strbuf msg
= STRBUF_INIT
;
1130 struct strbuf author_name
= STRBUF_INIT
;
1131 struct strbuf author_date
= STRBUF_INIT
;
1132 struct strbuf author_email
= STRBUF_INIT
;
1136 setup_mailinfo(&mi
);
1139 mi
.metainfo_charset
= get_commit_output_encoding();
1141 mi
.metainfo_charset
= NULL
;
1143 switch (state
->keep
) {
1147 mi
.keep_subject
= 1;
1149 case KEEP_NON_PATCH
:
1150 mi
.keep_non_patch_brackets_in_subject
= 1;
1153 BUG("invalid value for state->keep");
1156 if (state
->message_id
)
1157 mi
.add_message_id
= 1;
1159 switch (state
->scissors
) {
1160 case SCISSORS_UNSET
:
1162 case SCISSORS_FALSE
:
1163 mi
.use_scissors
= 0;
1166 mi
.use_scissors
= 1;
1169 BUG("invalid value for state->scissors");
1172 mi
.input
= xfopen(mail
, "r");
1173 mi
.output
= xfopen(am_path(state
, "info"), "w");
1174 if (mailinfo(&mi
, am_path(state
, "msg"), am_path(state
, "patch")))
1175 die("could not parse patch");
1180 if (mi
.format_flowed
)
1181 warning(_("Patch sent with format=flowed; "
1182 "space at the end of lines might be lost."));
1184 /* Extract message and author information */
1185 fp
= xfopen(am_path(state
, "info"), "r");
1186 while (!strbuf_getline_lf(&sb
, fp
)) {
1189 if (skip_prefix(sb
.buf
, "Subject: ", &x
)) {
1191 strbuf_addch(&msg
, '\n');
1192 strbuf_addstr(&msg
, x
);
1193 } else if (skip_prefix(sb
.buf
, "Author: ", &x
))
1194 strbuf_addstr(&author_name
, x
);
1195 else if (skip_prefix(sb
.buf
, "Email: ", &x
))
1196 strbuf_addstr(&author_email
, x
);
1197 else if (skip_prefix(sb
.buf
, "Date: ", &x
))
1198 strbuf_addstr(&author_date
, x
);
1202 /* Skip pine's internal folder data */
1203 if (!strcmp(author_name
.buf
, "Mail System Internal Data")) {
1208 if (is_empty_or_missing_file(am_path(state
, "patch"))) {
1209 printf_ln(_("Patch is empty."));
1210 die_user_resolve(state
);
1213 strbuf_addstr(&msg
, "\n\n");
1214 strbuf_addbuf(&msg
, &mi
.log_message
);
1215 strbuf_stripspace(&msg
, 0);
1217 assert(!state
->author_name
);
1218 state
->author_name
= strbuf_detach(&author_name
, NULL
);
1220 assert(!state
->author_email
);
1221 state
->author_email
= strbuf_detach(&author_email
, NULL
);
1223 assert(!state
->author_date
);
1224 state
->author_date
= strbuf_detach(&author_date
, NULL
);
1226 assert(!state
->msg
);
1227 state
->msg
= strbuf_detach(&msg
, &state
->msg_len
);
1230 strbuf_release(&msg
);
1231 strbuf_release(&author_date
);
1232 strbuf_release(&author_email
);
1233 strbuf_release(&author_name
);
1234 strbuf_release(&sb
);
1235 clear_mailinfo(&mi
);
1240 * Sets commit_id to the commit hash where the mail was generated from.
1241 * Returns 0 on success, -1 on failure.
1243 static int get_mail_commit_oid(struct object_id
*commit_id
, const char *mail
)
1245 struct strbuf sb
= STRBUF_INIT
;
1246 FILE *fp
= xfopen(mail
, "r");
1250 if (strbuf_getline_lf(&sb
, fp
) ||
1251 !skip_prefix(sb
.buf
, "From ", &x
) ||
1252 get_oid_hex(x
, commit_id
) < 0)
1255 strbuf_release(&sb
);
1261 * Sets state->msg, state->author_name, state->author_email, state->author_date
1262 * to the commit's respective info.
1264 static void get_commit_info(struct am_state
*state
, struct commit
*commit
)
1266 const char *buffer
, *ident_line
, *msg
;
1268 struct ident_split id
;
1270 buffer
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
1272 ident_line
= find_commit_header(buffer
, "author", &ident_len
);
1274 if (split_ident_line(&id
, ident_line
, ident_len
) < 0)
1275 die(_("invalid ident line: %.*s"), (int)ident_len
, ident_line
);
1277 assert(!state
->author_name
);
1279 state
->author_name
=
1280 xmemdupz(id
.name_begin
, id
.name_end
- id
.name_begin
);
1282 state
->author_name
= xstrdup("");
1284 assert(!state
->author_email
);
1286 state
->author_email
=
1287 xmemdupz(id
.mail_begin
, id
.mail_end
- id
.mail_begin
);
1289 state
->author_email
= xstrdup("");
1291 assert(!state
->author_date
);
1292 state
->author_date
= xstrdup(show_ident_date(&id
, DATE_MODE(NORMAL
)));
1294 assert(!state
->msg
);
1295 msg
= strstr(buffer
, "\n\n");
1297 die(_("unable to parse commit %s"), oid_to_hex(&commit
->object
.oid
));
1298 state
->msg
= xstrdup(msg
+ 2);
1299 state
->msg_len
= strlen(state
->msg
);
1300 unuse_commit_buffer(commit
, buffer
);
1304 * Writes `commit` as a patch to the state directory's "patch" file.
1306 static void write_commit_patch(const struct am_state
*state
, struct commit
*commit
)
1308 struct rev_info rev_info
;
1311 fp
= xfopen(am_path(state
, "patch"), "w");
1312 repo_init_revisions(the_repository
, &rev_info
, NULL
);
1314 rev_info
.abbrev
= 0;
1315 rev_info
.disable_stdin
= 1;
1316 rev_info
.show_root_diff
= 1;
1317 rev_info
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1318 rev_info
.no_commit_id
= 1;
1319 rev_info
.diffopt
.flags
.binary
= 1;
1320 rev_info
.diffopt
.flags
.full_index
= 1;
1321 rev_info
.diffopt
.use_color
= 0;
1322 rev_info
.diffopt
.file
= fp
;
1323 rev_info
.diffopt
.close_file
= 1;
1324 add_pending_object(&rev_info
, &commit
->object
, "");
1325 diff_setup_done(&rev_info
.diffopt
);
1326 log_tree_commit(&rev_info
, commit
);
1330 * Writes the diff of the index against HEAD as a patch to the state
1331 * directory's "patch" file.
1333 static void write_index_patch(const struct am_state
*state
)
1336 struct object_id head
;
1337 struct rev_info rev_info
;
1340 if (!get_oid_tree("HEAD", &head
))
1341 tree
= lookup_tree(the_repository
, &head
);
1343 tree
= lookup_tree(the_repository
,
1344 the_repository
->hash_algo
->empty_tree
);
1346 fp
= xfopen(am_path(state
, "patch"), "w");
1347 repo_init_revisions(the_repository
, &rev_info
, NULL
);
1349 rev_info
.disable_stdin
= 1;
1350 rev_info
.no_commit_id
= 1;
1351 rev_info
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1352 rev_info
.diffopt
.use_color
= 0;
1353 rev_info
.diffopt
.file
= fp
;
1354 rev_info
.diffopt
.close_file
= 1;
1355 add_pending_object(&rev_info
, &tree
->object
, "");
1356 diff_setup_done(&rev_info
.diffopt
);
1357 run_diff_index(&rev_info
, 1);
1361 * Like parse_mail(), but parses the mail by looking up its commit ID
1362 * directly. This is used in --rebasing mode to bypass git-mailinfo's munging
1365 * state->orig_commit will be set to the original commit ID.
1367 * Will always return 0 as the patch should never be skipped.
1369 static int parse_mail_rebase(struct am_state
*state
, const char *mail
)
1371 struct commit
*commit
;
1372 struct object_id commit_oid
;
1374 if (get_mail_commit_oid(&commit_oid
, mail
) < 0)
1375 die(_("could not parse %s"), mail
);
1377 commit
= lookup_commit_or_die(&commit_oid
, mail
);
1379 get_commit_info(state
, commit
);
1381 write_commit_patch(state
, commit
);
1383 oidcpy(&state
->orig_commit
, &commit_oid
);
1384 write_state_text(state
, "original-commit", oid_to_hex(&commit_oid
));
1385 update_ref("am", "REBASE_HEAD", &commit_oid
,
1386 NULL
, REF_NO_DEREF
, UPDATE_REFS_DIE_ON_ERR
);
1392 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If
1393 * `index_file` is not NULL, the patch will be applied to that index.
1395 static int run_apply(const struct am_state
*state
, const char *index_file
)
1397 struct argv_array apply_paths
= ARGV_ARRAY_INIT
;
1398 struct argv_array apply_opts
= ARGV_ARRAY_INIT
;
1399 struct apply_state apply_state
;
1401 int force_apply
= 0;
1404 if (init_apply_state(&apply_state
, the_repository
, NULL
))
1405 BUG("init_apply_state() failed");
1407 argv_array_push(&apply_opts
, "apply");
1408 argv_array_pushv(&apply_opts
, state
->git_apply_opts
.argv
);
1410 opts_left
= apply_parse_options(apply_opts
.argc
, apply_opts
.argv
,
1411 &apply_state
, &force_apply
, &options
,
1415 die("unknown option passed through to git apply");
1418 apply_state
.index_file
= index_file
;
1419 apply_state
.cached
= 1;
1421 apply_state
.check_index
= 1;
1424 * If we are allowed to fall back on 3-way merge, don't give false
1425 * errors during the initial attempt.
1427 if (state
->threeway
&& !index_file
)
1428 apply_state
.apply_verbosity
= verbosity_silent
;
1430 if (check_apply_state(&apply_state
, force_apply
))
1431 BUG("check_apply_state() failed");
1433 argv_array_push(&apply_paths
, am_path(state
, "patch"));
1435 res
= apply_all_patches(&apply_state
, apply_paths
.argc
, apply_paths
.argv
, options
);
1437 argv_array_clear(&apply_paths
);
1438 argv_array_clear(&apply_opts
);
1439 clear_apply_state(&apply_state
);
1445 /* Reload index as apply_all_patches() will have modified it. */
1447 read_cache_from(index_file
);
1454 * Builds an index that contains just the blobs needed for a 3way merge.
1456 static int build_fake_ancestor(const struct am_state
*state
, const char *index_file
)
1458 struct child_process cp
= CHILD_PROCESS_INIT
;
1461 argv_array_push(&cp
.args
, "apply");
1462 argv_array_pushv(&cp
.args
, state
->git_apply_opts
.argv
);
1463 argv_array_pushf(&cp
.args
, "--build-fake-ancestor=%s", index_file
);
1464 argv_array_push(&cp
.args
, am_path(state
, "patch"));
1466 if (run_command(&cp
))
1473 * Attempt a threeway merge, using index_path as the temporary index.
1475 static int fall_back_threeway(const struct am_state
*state
, const char *index_path
)
1477 struct object_id orig_tree
, their_tree
, our_tree
;
1478 const struct object_id
*bases
[1] = { &orig_tree
};
1479 struct merge_options o
;
1480 struct commit
*result
;
1481 char *their_tree_name
;
1483 if (get_oid("HEAD", &our_tree
) < 0)
1484 oidcpy(&our_tree
, the_hash_algo
->empty_tree
);
1486 if (build_fake_ancestor(state
, index_path
))
1487 return error("could not build fake ancestor");
1490 read_cache_from(index_path
);
1492 if (write_index_as_tree(&orig_tree
, &the_index
, index_path
, 0, NULL
))
1493 return error(_("Repository lacks necessary blobs to fall back on 3-way merge."));
1495 say(state
, stdout
, _("Using index info to reconstruct a base tree..."));
1497 if (!state
->quiet
) {
1499 * List paths that needed 3-way fallback, so that the user can
1500 * review them with extra care to spot mismerges.
1502 struct rev_info rev_info
;
1503 const char *diff_filter_str
= "--diff-filter=AM";
1505 repo_init_revisions(the_repository
, &rev_info
, NULL
);
1506 rev_info
.diffopt
.output_format
= DIFF_FORMAT_NAME_STATUS
;
1507 diff_opt_parse(&rev_info
.diffopt
, &diff_filter_str
, 1, rev_info
.prefix
);
1508 add_pending_oid(&rev_info
, "HEAD", &our_tree
, 0);
1509 diff_setup_done(&rev_info
.diffopt
);
1510 run_diff_index(&rev_info
, 1);
1513 if (run_apply(state
, index_path
))
1514 return error(_("Did you hand edit your patch?\n"
1515 "It does not apply to blobs recorded in its index."));
1517 if (write_index_as_tree(&their_tree
, &the_index
, index_path
, 0, NULL
))
1518 return error("could not write tree");
1520 say(state
, stdout
, _("Falling back to patching base and 3-way merge..."));
1526 * This is not so wrong. Depending on which base we picked, orig_tree
1527 * may be wildly different from ours, but their_tree has the same set of
1528 * wildly different changes in parts the patch did not touch, so
1529 * recursive ends up canceling them, saying that we reverted all those
1533 init_merge_options(&o
, the_repository
);
1536 their_tree_name
= xstrfmt("%.*s", linelen(state
->msg
), state
->msg
);
1537 o
.branch2
= their_tree_name
;
1538 o
.detect_directory_renames
= 0;
1543 if (merge_recursive_generic(&o
, &our_tree
, &their_tree
, 1, bases
, &result
)) {
1544 repo_rerere(the_repository
, state
->allow_rerere_autoupdate
);
1545 free(their_tree_name
);
1546 return error(_("Failed to merge in the changes."));
1549 free(their_tree_name
);
1554 * Commits the current index with state->msg as the commit message and
1555 * state->author_name, state->author_email and state->author_date as the author
1558 static void do_commit(const struct am_state
*state
)
1560 struct object_id tree
, parent
, commit
;
1561 const struct object_id
*old_oid
;
1562 struct commit_list
*parents
= NULL
;
1563 const char *reflog_msg
, *author
;
1564 struct strbuf sb
= STRBUF_INIT
;
1566 if (run_hook_le(NULL
, "pre-applypatch", NULL
))
1569 if (write_cache_as_tree(&tree
, 0, NULL
))
1570 die(_("git write-tree failed to write a tree"));
1572 if (!get_oid_commit("HEAD", &parent
)) {
1574 commit_list_insert(lookup_commit(the_repository
, &parent
),
1578 say(state
, stderr
, _("applying to an empty history"));
1581 author
= fmt_ident(state
->author_name
, state
->author_email
,
1582 state
->ignore_date
? NULL
: state
->author_date
,
1585 if (state
->committer_date_is_author_date
)
1586 setenv("GIT_COMMITTER_DATE",
1587 state
->ignore_date
? "" : state
->author_date
, 1);
1589 if (commit_tree(state
->msg
, state
->msg_len
, &tree
, parents
, &commit
,
1590 author
, state
->sign_commit
))
1591 die(_("failed to write commit object"));
1593 reflog_msg
= getenv("GIT_REFLOG_ACTION");
1597 strbuf_addf(&sb
, "%s: %.*s", reflog_msg
, linelen(state
->msg
),
1600 update_ref(sb
.buf
, "HEAD", &commit
, old_oid
, 0,
1601 UPDATE_REFS_DIE_ON_ERR
);
1603 if (state
->rebasing
) {
1604 FILE *fp
= xfopen(am_path(state
, "rewritten"), "a");
1606 assert(!is_null_oid(&state
->orig_commit
));
1607 fprintf(fp
, "%s ", oid_to_hex(&state
->orig_commit
));
1608 fprintf(fp
, "%s\n", oid_to_hex(&commit
));
1612 run_hook_le(NULL
, "post-applypatch", NULL
);
1614 strbuf_release(&sb
);
1618 * Validates the am_state for resuming -- the "msg" and authorship fields must
1621 static void validate_resume_state(const struct am_state
*state
)
1624 die(_("cannot resume: %s does not exist."),
1625 am_path(state
, "final-commit"));
1627 if (!state
->author_name
|| !state
->author_email
|| !state
->author_date
)
1628 die(_("cannot resume: %s does not exist."),
1629 am_path(state
, "author-script"));
1633 * Interactively prompt the user on whether the current patch should be
1636 * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to
1639 static int do_interactive(struct am_state
*state
)
1644 die(_("cannot be interactive without stdin connected to a terminal."));
1649 puts(_("Commit Body is:"));
1650 puts("--------------------------");
1651 printf("%s", state
->msg
);
1652 puts("--------------------------");
1655 * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
1656 * in your translation. The program will only accept English
1657 * input at this point.
1659 reply
= git_prompt(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "), PROMPT_ECHO
);
1663 } else if (*reply
== 'y' || *reply
== 'Y') {
1665 } else if (*reply
== 'a' || *reply
== 'A') {
1666 state
->interactive
= 0;
1668 } else if (*reply
== 'n' || *reply
== 'N') {
1670 } else if (*reply
== 'e' || *reply
== 'E') {
1671 struct strbuf msg
= STRBUF_INIT
;
1673 if (!launch_editor(am_path(state
, "final-commit"), &msg
, NULL
)) {
1675 state
->msg
= strbuf_detach(&msg
, &state
->msg_len
);
1677 strbuf_release(&msg
);
1678 } else if (*reply
== 'v' || *reply
== 'V') {
1679 const char *pager
= git_pager(1);
1680 struct child_process cp
= CHILD_PROCESS_INIT
;
1684 prepare_pager_args(&cp
, pager
);
1685 argv_array_push(&cp
.args
, am_path(state
, "patch"));
1692 * Applies all queued mail.
1694 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as
1695 * well as the state directory's "patch" file is used as-is for applying the
1696 * patch and committing it.
1698 static void am_run(struct am_state
*state
, int resume
)
1700 const char *argv_gc_auto
[] = {"gc", "--auto", NULL
};
1701 struct strbuf sb
= STRBUF_INIT
;
1703 unlink(am_path(state
, "dirtyindex"));
1705 refresh_and_write_cache();
1707 if (repo_index_has_changes(the_repository
, NULL
, &sb
)) {
1708 write_state_bool(state
, "dirtyindex", 1);
1709 die(_("Dirty index: cannot apply patches (dirty: %s)"), sb
.buf
);
1712 strbuf_release(&sb
);
1714 while (state
->cur
<= state
->last
) {
1715 const char *mail
= am_path(state
, msgnum(state
));
1720 if (!file_exists(mail
))
1724 validate_resume_state(state
);
1728 if (state
->rebasing
)
1729 skip
= parse_mail_rebase(state
, mail
);
1731 skip
= parse_mail(state
, mail
);
1734 goto next
; /* mail should be skipped */
1737 am_append_signoff(state
);
1739 write_author_script(state
);
1740 write_commit_msg(state
);
1743 if (state
->interactive
&& do_interactive(state
))
1746 if (run_applypatch_msg_hook(state
))
1749 say(state
, stdout
, _("Applying: %.*s"), linelen(state
->msg
), state
->msg
);
1751 apply_status
= run_apply(state
, NULL
);
1753 if (apply_status
&& state
->threeway
) {
1754 struct strbuf sb
= STRBUF_INIT
;
1756 strbuf_addstr(&sb
, am_path(state
, "patch-merge-index"));
1757 apply_status
= fall_back_threeway(state
, sb
.buf
);
1758 strbuf_release(&sb
);
1761 * Applying the patch to an earlier tree and merging
1762 * the result may have produced the same tree as ours.
1764 if (!apply_status
&&
1765 !repo_index_has_changes(the_repository
, NULL
, NULL
)) {
1766 say(state
, stdout
, _("No changes -- Patch already applied."));
1772 printf_ln(_("Patch failed at %s %.*s"), msgnum(state
),
1773 linelen(state
->msg
), state
->msg
);
1775 if (advice_amworkdir
)
1776 advise(_("Use 'git am --show-current-patch' to see the failed patch"));
1778 die_user_resolve(state
);
1791 if (!is_empty_or_missing_file(am_path(state
, "rewritten"))) {
1792 assert(state
->rebasing
);
1793 copy_notes_for_rebase(state
);
1794 run_post_rewrite_hook(state
);
1798 * In rebasing mode, it's up to the caller to take care of
1801 if (!state
->rebasing
) {
1803 close_all_packs(the_repository
->objects
);
1804 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
1809 * Resume the current am session after patch application failure. The user did
1810 * all the hard work, and we do not have to do any patch application. Just
1811 * trust and commit what the user has in the index and working tree.
1813 static void am_resolve(struct am_state
*state
)
1815 validate_resume_state(state
);
1817 say(state
, stdout
, _("Applying: %.*s"), linelen(state
->msg
), state
->msg
);
1819 if (!repo_index_has_changes(the_repository
, NULL
, NULL
)) {
1820 printf_ln(_("No changes - did you forget to use 'git add'?\n"
1821 "If there is nothing left to stage, chances are that something else\n"
1822 "already introduced the same changes; you might want to skip this patch."));
1823 die_user_resolve(state
);
1826 if (unmerged_cache()) {
1827 printf_ln(_("You still have unmerged paths in your index.\n"
1828 "You should 'git add' each file with resolved conflicts to mark them as such.\n"
1829 "You might run `git rm` on a file to accept \"deleted by them\" for it."));
1830 die_user_resolve(state
);
1833 if (state
->interactive
) {
1834 write_index_patch(state
);
1835 if (do_interactive(state
))
1839 repo_rerere(the_repository
, 0);
1850 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is
1851 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on
1854 static int fast_forward_to(struct tree
*head
, struct tree
*remote
, int reset
)
1856 struct lock_file lock_file
= LOCK_INIT
;
1857 struct unpack_trees_options opts
;
1858 struct tree_desc t
[2];
1860 if (parse_tree(head
) || parse_tree(remote
))
1863 hold_locked_index(&lock_file
, LOCK_DIE_ON_ERROR
);
1865 refresh_cache(REFRESH_QUIET
);
1867 memset(&opts
, 0, sizeof(opts
));
1869 opts
.src_index
= &the_index
;
1870 opts
.dst_index
= &the_index
;
1874 opts
.fn
= twoway_merge
;
1875 init_tree_desc(&t
[0], head
->buffer
, head
->size
);
1876 init_tree_desc(&t
[1], remote
->buffer
, remote
->size
);
1878 if (unpack_trees(2, t
, &opts
)) {
1879 rollback_lock_file(&lock_file
);
1883 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
1884 die(_("unable to write new index file"));
1890 * Merges a tree into the index. The index's stat info will take precedence
1891 * over the merged tree's. Returns 0 on success, -1 on failure.
1893 static int merge_tree(struct tree
*tree
)
1895 struct lock_file lock_file
= LOCK_INIT
;
1896 struct unpack_trees_options opts
;
1897 struct tree_desc t
[1];
1899 if (parse_tree(tree
))
1902 hold_locked_index(&lock_file
, LOCK_DIE_ON_ERROR
);
1904 memset(&opts
, 0, sizeof(opts
));
1906 opts
.src_index
= &the_index
;
1907 opts
.dst_index
= &the_index
;
1909 opts
.fn
= oneway_merge
;
1910 init_tree_desc(&t
[0], tree
->buffer
, tree
->size
);
1912 if (unpack_trees(1, t
, &opts
)) {
1913 rollback_lock_file(&lock_file
);
1917 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
1918 die(_("unable to write new index file"));
1924 * Clean the index without touching entries that are not modified between
1925 * `head` and `remote`.
1927 static int clean_index(const struct object_id
*head
, const struct object_id
*remote
)
1929 struct tree
*head_tree
, *remote_tree
, *index_tree
;
1930 struct object_id index
;
1932 head_tree
= parse_tree_indirect(head
);
1934 return error(_("Could not parse object '%s'."), oid_to_hex(head
));
1936 remote_tree
= parse_tree_indirect(remote
);
1938 return error(_("Could not parse object '%s'."), oid_to_hex(remote
));
1940 read_cache_unmerged();
1942 if (fast_forward_to(head_tree
, head_tree
, 1))
1945 if (write_cache_as_tree(&index
, 0, NULL
))
1948 index_tree
= parse_tree_indirect(&index
);
1950 return error(_("Could not parse object '%s'."), oid_to_hex(&index
));
1952 if (fast_forward_to(index_tree
, remote_tree
, 0))
1955 if (merge_tree(remote_tree
))
1958 remove_branch_state(the_repository
);
1964 * Resets rerere's merge resolution metadata.
1966 static void am_rerere_clear(void)
1968 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
1969 rerere_clear(the_repository
, &merge_rr
);
1970 string_list_clear(&merge_rr
, 1);
1974 * Resume the current am session by skipping the current patch.
1976 static void am_skip(struct am_state
*state
)
1978 struct object_id head
;
1982 if (get_oid("HEAD", &head
))
1983 oidcpy(&head
, the_hash_algo
->empty_tree
);
1985 if (clean_index(&head
, &head
))
1986 die(_("failed to clean index"));
1988 if (state
->rebasing
) {
1989 FILE *fp
= xfopen(am_path(state
, "rewritten"), "a");
1991 assert(!is_null_oid(&state
->orig_commit
));
1992 fprintf(fp
, "%s ", oid_to_hex(&state
->orig_commit
));
1993 fprintf(fp
, "%s\n", oid_to_hex(&head
));
2003 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.
2005 * It is not safe to reset HEAD when:
2006 * 1. git-am previously failed because the index was dirty.
2007 * 2. HEAD has moved since git-am previously failed.
2009 static int safe_to_abort(const struct am_state
*state
)
2011 struct strbuf sb
= STRBUF_INIT
;
2012 struct object_id abort_safety
, head
;
2014 if (file_exists(am_path(state
, "dirtyindex")))
2017 if (read_state_file(&sb
, state
, "abort-safety", 1) > 0) {
2018 if (get_oid_hex(sb
.buf
, &abort_safety
))
2019 die(_("could not parse %s"), am_path(state
, "abort-safety"));
2021 oidclr(&abort_safety
);
2022 strbuf_release(&sb
);
2024 if (get_oid("HEAD", &head
))
2027 if (oideq(&head
, &abort_safety
))
2030 warning(_("You seem to have moved HEAD since the last 'am' failure.\n"
2031 "Not rewinding to ORIG_HEAD"));
2037 * Aborts the current am session if it is safe to do so.
2039 static void am_abort(struct am_state
*state
)
2041 struct object_id curr_head
, orig_head
;
2042 int has_curr_head
, has_orig_head
;
2045 if (!safe_to_abort(state
)) {
2052 curr_branch
= resolve_refdup("HEAD", 0, &curr_head
, NULL
);
2053 has_curr_head
= curr_branch
&& !is_null_oid(&curr_head
);
2055 oidcpy(&curr_head
, the_hash_algo
->empty_tree
);
2057 has_orig_head
= !get_oid("ORIG_HEAD", &orig_head
);
2059 oidcpy(&orig_head
, the_hash_algo
->empty_tree
);
2061 clean_index(&curr_head
, &orig_head
);
2064 update_ref("am --abort", "HEAD", &orig_head
,
2065 has_curr_head
? &curr_head
: NULL
, 0,
2066 UPDATE_REFS_DIE_ON_ERR
);
2067 else if (curr_branch
)
2068 delete_ref(NULL
, curr_branch
, NULL
, REF_NO_DEREF
);
2074 static int show_patch(struct am_state
*state
)
2076 struct strbuf sb
= STRBUF_INIT
;
2077 const char *patch_path
;
2080 if (!is_null_oid(&state
->orig_commit
)) {
2081 const char *av
[4] = { "show", NULL
, "--", NULL
};
2085 av
[1] = new_oid_str
= xstrdup(oid_to_hex(&state
->orig_commit
));
2086 ret
= run_command_v_opt(av
, RUN_GIT_CMD
);
2091 patch_path
= am_path(state
, msgnum(state
));
2092 len
= strbuf_read_file(&sb
, patch_path
, 0);
2094 die_errno(_("failed to read '%s'"), patch_path
);
2097 write_in_full(1, sb
.buf
, sb
.len
);
2098 strbuf_release(&sb
);
2103 * parse_options() callback that validates and sets opt->value to the
2104 * PATCH_FORMAT_* enum value corresponding to `arg`.
2106 static int parse_opt_patchformat(const struct option
*opt
, const char *arg
, int unset
)
2108 int *opt_value
= opt
->value
;
2111 *opt_value
= PATCH_FORMAT_UNKNOWN
;
2112 else if (!strcmp(arg
, "mbox"))
2113 *opt_value
= PATCH_FORMAT_MBOX
;
2114 else if (!strcmp(arg
, "stgit"))
2115 *opt_value
= PATCH_FORMAT_STGIT
;
2116 else if (!strcmp(arg
, "stgit-series"))
2117 *opt_value
= PATCH_FORMAT_STGIT_SERIES
;
2118 else if (!strcmp(arg
, "hg"))
2119 *opt_value
= PATCH_FORMAT_HG
;
2120 else if (!strcmp(arg
, "mboxrd"))
2121 *opt_value
= PATCH_FORMAT_MBOXRD
;
2123 return error(_("Invalid value for --patch-format: %s"), arg
);
2137 static int git_am_config(const char *k
, const char *v
, void *cb
)
2141 status
= git_gpg_config(k
, v
, NULL
);
2145 return git_default_config(k
, v
, NULL
);
2148 int cmd_am(int argc
, const char **argv
, const char *prefix
)
2150 struct am_state state
;
2153 int patch_format
= PATCH_FORMAT_UNKNOWN
;
2154 enum resume_mode resume
= RESUME_FALSE
;
2158 const char * const usage
[] = {
2159 N_("git am [<options>] [(<mbox> | <Maildir>)...]"),
2160 N_("git am [<options>] (--continue | --skip | --abort)"),
2164 struct option options
[] = {
2165 OPT_BOOL('i', "interactive", &state
.interactive
,
2166 N_("run interactively")),
2167 OPT_HIDDEN_BOOL('b', "binary", &binary
,
2168 N_("historical option -- no-op")),
2169 OPT_BOOL('3', "3way", &state
.threeway
,
2170 N_("allow fall back on 3way merging if needed")),
2171 OPT__QUIET(&state
.quiet
, N_("be quiet")),
2172 OPT_SET_INT('s', "signoff", &state
.signoff
,
2173 N_("add a Signed-off-by line to the commit message"),
2175 OPT_BOOL('u', "utf8", &state
.utf8
,
2176 N_("recode into utf8 (default)")),
2177 OPT_SET_INT('k', "keep", &state
.keep
,
2178 N_("pass -k flag to git-mailinfo"), KEEP_TRUE
),
2179 OPT_SET_INT(0, "keep-non-patch", &state
.keep
,
2180 N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH
),
2181 OPT_BOOL('m', "message-id", &state
.message_id
,
2182 N_("pass -m flag to git-mailinfo")),
2183 OPT_SET_INT_F(0, "keep-cr", &keep_cr
,
2184 N_("pass --keep-cr flag to git-mailsplit for mbox format"),
2185 1, PARSE_OPT_NONEG
),
2186 OPT_SET_INT_F(0, "no-keep-cr", &keep_cr
,
2187 N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"),
2188 0, PARSE_OPT_NONEG
),
2189 OPT_BOOL('c', "scissors", &state
.scissors
,
2190 N_("strip everything before a scissors line")),
2191 OPT_PASSTHRU_ARGV(0, "whitespace", &state
.git_apply_opts
, N_("action"),
2192 N_("pass it through git-apply"),
2194 OPT_PASSTHRU_ARGV(0, "ignore-space-change", &state
.git_apply_opts
, NULL
,
2195 N_("pass it through git-apply"),
2197 OPT_PASSTHRU_ARGV(0, "ignore-whitespace", &state
.git_apply_opts
, NULL
,
2198 N_("pass it through git-apply"),
2200 OPT_PASSTHRU_ARGV(0, "directory", &state
.git_apply_opts
, N_("root"),
2201 N_("pass it through git-apply"),
2203 OPT_PASSTHRU_ARGV(0, "exclude", &state
.git_apply_opts
, N_("path"),
2204 N_("pass it through git-apply"),
2206 OPT_PASSTHRU_ARGV(0, "include", &state
.git_apply_opts
, N_("path"),
2207 N_("pass it through git-apply"),
2209 OPT_PASSTHRU_ARGV('C', NULL
, &state
.git_apply_opts
, N_("n"),
2210 N_("pass it through git-apply"),
2212 OPT_PASSTHRU_ARGV('p', NULL
, &state
.git_apply_opts
, N_("num"),
2213 N_("pass it through git-apply"),
2215 OPT_CALLBACK(0, "patch-format", &patch_format
, N_("format"),
2216 N_("format the patch(es) are in"),
2217 parse_opt_patchformat
),
2218 OPT_PASSTHRU_ARGV(0, "reject", &state
.git_apply_opts
, NULL
,
2219 N_("pass it through git-apply"),
2221 OPT_STRING(0, "resolvemsg", &state
.resolvemsg
, NULL
,
2222 N_("override error message when patch failure occurs")),
2223 OPT_CMDMODE(0, "continue", &resume
,
2224 N_("continue applying patches after resolving a conflict"),
2226 OPT_CMDMODE('r', "resolved", &resume
,
2227 N_("synonyms for --continue"),
2229 OPT_CMDMODE(0, "skip", &resume
,
2230 N_("skip the current patch"),
2232 OPT_CMDMODE(0, "abort", &resume
,
2233 N_("restore the original branch and abort the patching operation."),
2235 OPT_CMDMODE(0, "quit", &resume
,
2236 N_("abort the patching operation but keep HEAD where it is."),
2238 OPT_CMDMODE(0, "show-current-patch", &resume
,
2239 N_("show the patch being applied."),
2241 OPT_BOOL(0, "committer-date-is-author-date",
2242 &state
.committer_date_is_author_date
,
2243 N_("lie about committer date")),
2244 OPT_BOOL(0, "ignore-date", &state
.ignore_date
,
2245 N_("use current timestamp for author date")),
2246 OPT_RERERE_AUTOUPDATE(&state
.allow_rerere_autoupdate
),
2247 { OPTION_STRING
, 'S', "gpg-sign", &state
.sign_commit
, N_("key-id"),
2248 N_("GPG-sign commits"),
2249 PARSE_OPT_OPTARG
, NULL
, (intptr_t) "" },
2250 OPT_HIDDEN_BOOL(0, "rebasing", &state
.rebasing
,
2251 N_("(internal use for git-rebase)")),
2255 if (argc
== 2 && !strcmp(argv
[1], "-h"))
2256 usage_with_options(usage
, options
);
2258 git_config(git_am_config
, NULL
);
2260 am_state_init(&state
);
2262 in_progress
= am_in_progress(&state
);
2266 argc
= parse_options(argc
, argv
, prefix
, options
, usage
, 0);
2269 fprintf_ln(stderr
, _("The -b/--binary option has been a no-op for long time, and\n"
2270 "it will be removed. Please do not use it anymore."));
2272 /* Ensure a valid committer ident can be constructed */
2273 git_committer_info(IDENT_STRICT
);
2275 if (repo_read_index_preload(the_repository
, NULL
, 0) < 0)
2276 die(_("failed to read the index"));
2280 * Catch user error to feed us patches when there is a session
2283 * 1. mbox path(s) are provided on the command-line.
2284 * 2. stdin is not a tty: the user is trying to feed us a patch
2285 * from standard input. This is somewhat unreliable -- stdin
2286 * could be /dev/null for example and the caller did not
2287 * intend to feed us a patch but wanted to continue
2290 if (argc
|| (resume
== RESUME_FALSE
&& !isatty(0)))
2291 die(_("previous rebase directory %s still exists but mbox given."),
2294 if (resume
== RESUME_FALSE
)
2295 resume
= RESUME_APPLY
;
2297 if (state
.signoff
== SIGNOFF_EXPLICIT
)
2298 am_append_signoff(&state
);
2300 struct argv_array paths
= ARGV_ARRAY_INIT
;
2304 * Handle stray state directory in the independent-run case. In
2305 * the --rebasing case, it is up to the caller to take care of
2306 * stray directories.
2308 if (file_exists(state
.dir
) && !state
.rebasing
) {
2309 if (resume
== RESUME_ABORT
|| resume
== RESUME_QUIT
) {
2311 am_state_release(&state
);
2315 die(_("Stray %s directory found.\n"
2316 "Use \"git am --abort\" to remove it."),
2321 die(_("Resolve operation not in progress, we are not resuming."));
2323 for (i
= 0; i
< argc
; i
++) {
2324 if (is_absolute_path(argv
[i
]) || !prefix
)
2325 argv_array_push(&paths
, argv
[i
]);
2327 argv_array_push(&paths
, mkpath("%s/%s", prefix
, argv
[i
]));
2330 am_setup(&state
, patch_format
, paths
.argv
, keep_cr
);
2332 argv_array_clear(&paths
);
2342 case RESUME_RESOLVED
:
2355 case RESUME_SHOW_PATCH
:
2356 ret
= show_patch(&state
);
2359 BUG("invalid resume value");
2362 am_state_release(&state
);