5 #include "object-store.h"
10 #include "run-command.h"
13 #include "cache-tree.h"
17 #include "merge-recursive.h"
19 #include "argv-array.h"
23 #include "wt-status.h"
25 #include "notes-utils.h"
27 #include "unpack-trees.h"
31 #include "commit-slab.h"
33 #include "commit-reach.h"
34 #include "rebase-interactive.h"
36 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
38 static const char sign_off_header[] = "Signed-off-by: ";
39 static const char cherry_picked_prefix[] = "(cherry picked from commit ";
41 GIT_PATH_FUNC(git_path_commit_editmsg, "COMMIT_EDITMSG")
43 GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
45 static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
46 static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
47 static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
48 static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety")
50 static GIT_PATH_FUNC(rebase_path, "rebase-merge")
52 * The file containing rebase commands, comments, and empty lines.
53 * This file is created by "git rebase -i" then edited by the user. As
54 * the lines are processed, they are removed from the front of this
55 * file and written to the tail of 'done'.
57 GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo")
58 GIT_PATH_FUNC(rebase_path_todo_backup, "rebase-merge/git-rebase-todo.backup")
61 * The rebase command lines that have already been processed. A line
62 * is moved here when it is first handled, before any associated user
65 static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
67 * The file to keep track of how many commands were already processed (e.g.
70 static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum")
72 * The file to keep track of how many commands are to be processed in total
73 * (e.g. for the prompt).
75 static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end")
77 * The commit message that is planned to be used for any changes that
78 * need to be committed following a user interaction.
80 static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message")
82 * The file into which is accumulated the suggested commit message for
83 * squash/fixup commands. When the first of a series of squash/fixups
84 * is seen, the file is created and the commit message from the
85 * previous commit and from the first squash/fixup commit are written
86 * to it. The commit message for each subsequent squash/fixup commit
87 * is appended to the file as it is processed.
89 static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash")
91 * If the current series of squash/fixups has not yet included a squash
92 * command, then this file exists and holds the commit message of the
93 * original "pick" commit. (If the series ends without a "squash"
94 * command, then this can be used as the commit message of the combined
95 * commit without opening the editor.)
97 static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup")
99 * This file contains the list fixup/squash commands that have been
100 * accumulated into message-fixup or message-squash so far.
102 static GIT_PATH_FUNC(rebase_path_current_fixups, "rebase-merge/current-fixups")
104 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
105 * GIT_AUTHOR_DATE that will be used for the commit that is currently
108 static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script")
110 * When an "edit" rebase command is being processed, the SHA1 of the
111 * commit to be edited is recorded in this file. When "git rebase
112 * --continue" is executed, if there are any staged changes then they
113 * will be amended to the HEAD commit, but only provided the HEAD
114 * commit is still the commit to be edited. When any other rebase
115 * command is processed, this file is deleted.
117 static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend")
119 * When we stop at a given patch via the "edit" command, this file contains
120 * the abbreviated commit name of the corresponding patch.
122 static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha")
124 * For the post-rewrite hook, we make a list of rewritten commits and
125 * their new sha1s. The rewritten-pending list keeps the sha1s of
126 * commits that have been processed, but not committed yet,
127 * e.g. because they are waiting for a 'squash' command.
129 static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list")
130 static GIT_PATH_FUNC(rebase_path_rewritten_pending,
131 "rebase-merge/rewritten-pending")
134 * The path of the file containing the OID of the "squash onto" commit, i.e.
135 * the dummy commit used for `reset [new root]`.
137 static GIT_PATH_FUNC(rebase_path_squash_onto, "rebase-merge/squash-onto")
140 * The path of the file listing refs that need to be deleted after the rebase
141 * finishes. This is used by the `label` command to record the need for cleanup.
143 static GIT_PATH_FUNC(rebase_path_refs_to_delete, "rebase-merge/refs-to-delete")
146 * The following files are written by git-rebase just after parsing the
149 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt")
150 static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head")
151 static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose")
152 static GIT_PATH_FUNC(rebase_path_quiet, "rebase-merge/quiet")
153 static GIT_PATH_FUNC(rebase_path_signoff, "rebase-merge/signoff")
154 static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name")
155 static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto")
156 static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash")
157 static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy")
158 static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts")
159 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate")
160 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec, "rebase-merge/reschedule-failed-exec")
161 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits, "rebase-merge/drop_redundant_commits")
162 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits, "rebase-merge/keep_redundant_commits")
164 static int git_sequencer_config(const char *k, const char *v, void *cb)
166 struct replay_opts *opts = cb;
169 if (!strcmp(k, "commit.cleanup")) {
172 status = git_config_string(&s, k, v);
176 if (!strcmp(s, "verbatim")) {
177 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
178 opts->explicit_cleanup = 1;
179 } else if (!strcmp(s, "whitespace")) {
180 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SPACE;
181 opts->explicit_cleanup = 1;
182 } else if (!strcmp(s, "strip")) {
183 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_ALL;
184 opts->explicit_cleanup = 1;
185 } else if (!strcmp(s, "scissors")) {
186 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SCISSORS;
187 opts->explicit_cleanup = 1;
189 warning(_("invalid commit message cleanup mode '%s'"),
197 if (!strcmp(k, "commit.gpgsign")) {
198 opts->gpg_sign = git_config_bool(k, v) ? xstrdup("") : NULL;
202 status = git_gpg_config(k, v, NULL);
206 return git_diff_basic_config(k, v, NULL);
209 void sequencer_init_config(struct replay_opts *opts)
211 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
212 git_config(git_sequencer_config, opts);
215 static inline int is_rebase_i(const struct replay_opts *opts)
217 return opts->action == REPLAY_INTERACTIVE_REBASE;
220 static const char *get_dir(const struct replay_opts *opts)
222 if (is_rebase_i(opts))
223 return rebase_path();
224 return git_path_seq_dir();
227 static const char *get_todo_path(const struct replay_opts *opts)
229 if (is_rebase_i(opts))
230 return rebase_path_todo();
231 return git_path_todo_file();
235 * Returns 0 for non-conforming footer
236 * Returns 1 for conforming footer
237 * Returns 2 when sob exists within conforming footer
238 * Returns 3 when sob exists within conforming footer as last entry
240 static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
241 size_t ignore_footer)
243 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
244 struct trailer_info info;
246 int found_sob = 0, found_sob_last = 0;
250 trailer_info_get(&info, sb->buf, &opts);
252 if (info.trailer_start == info.trailer_end)
255 for (i = 0; i < info.trailer_nr; i++)
256 if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) {
258 if (i == info.trailer_nr - 1)
262 trailer_info_release(&info);
271 static const char *gpg_sign_opt_quoted(struct replay_opts *opts)
273 static struct strbuf buf = STRBUF_INIT;
277 sq_quotef(&buf, "-S%s", opts->gpg_sign);
281 int sequencer_remove_state(struct replay_opts *opts)
283 struct strbuf buf = STRBUF_INIT;
286 if (is_rebase_i(opts) &&
287 strbuf_read_file(&buf, rebase_path_refs_to_delete(), 0) > 0) {
290 char *eol = strchr(p, '\n');
293 if (delete_ref("(rebase -i) cleanup", p, NULL, 0) < 0) {
294 warning(_("could not delete '%s'"), p);
303 free(opts->gpg_sign);
304 free(opts->strategy);
305 for (i = 0; i < opts->xopts_nr; i++)
306 free(opts->xopts[i]);
308 strbuf_release(&opts->current_fixups);
311 strbuf_addstr(&buf, get_dir(opts));
312 if (remove_dir_recursively(&buf, 0))
313 ret = error(_("could not remove '%s'"), buf.buf);
314 strbuf_release(&buf);
319 static const char *action_name(const struct replay_opts *opts)
321 switch (opts->action) {
325 return N_("cherry-pick");
326 case REPLAY_INTERACTIVE_REBASE:
327 return N_("rebase -i");
329 die(_("unknown action: %d"), opts->action);
332 struct commit_message {
339 static const char *short_commit_name(struct commit *commit)
341 return find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV);
344 static int get_message(struct commit *commit, struct commit_message *out)
346 const char *abbrev, *subject;
349 out->message = logmsg_reencode(commit, NULL, get_commit_output_encoding());
350 abbrev = short_commit_name(commit);
352 subject_len = find_commit_subject(out->message, &subject);
354 out->subject = xmemdupz(subject, subject_len);
355 out->label = xstrfmt("%s... %s", abbrev, out->subject);
356 out->parent_label = xstrfmt("parent of %s", out->label);
361 static void free_message(struct commit *commit, struct commit_message *msg)
363 free(msg->parent_label);
366 unuse_commit_buffer(commit, msg->message);
369 static void print_advice(struct repository *r, int show_hint,
370 struct replay_opts *opts)
372 char *msg = getenv("GIT_CHERRY_PICK_HELP");
375 fprintf(stderr, "%s\n", msg);
377 * A conflict has occurred but the porcelain
378 * (typically rebase --interactive) wants to take care
379 * of the commit itself so remove CHERRY_PICK_HEAD
381 unlink(git_path_cherry_pick_head(r));
387 advise(_("after resolving the conflicts, mark the corrected paths\n"
388 "with 'git add <paths>' or 'git rm <paths>'"));
390 advise(_("after resolving the conflicts, mark the corrected paths\n"
391 "with 'git add <paths>' or 'git rm <paths>'\n"
392 "and commit the result with 'git commit'"));
396 static int write_message(const void *buf, size_t len, const char *filename,
399 struct lock_file msg_file = LOCK_INIT;
401 int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
403 return error_errno(_("could not lock '%s'"), filename);
404 if (write_in_full(msg_fd, buf, len) < 0) {
405 error_errno(_("could not write to '%s'"), filename);
406 rollback_lock_file(&msg_file);
409 if (append_eol && write(msg_fd, "\n", 1) < 0) {
410 error_errno(_("could not write eol to '%s'"), filename);
411 rollback_lock_file(&msg_file);
414 if (commit_lock_file(&msg_file) < 0)
415 return error(_("failed to finalize '%s'"), filename);
421 * Reads a file that was presumably written by a shell script, i.e. with an
422 * end-of-line marker that needs to be stripped.
424 * Note that only the last end-of-line marker is stripped, consistent with the
425 * behavior of "$(cat path)" in a shell script.
427 * Returns 1 if the file was read, 0 if it could not be read or does not exist.
429 static int read_oneliner(struct strbuf *buf,
430 const char *path, int skip_if_empty)
432 int orig_len = buf->len;
434 if (!file_exists(path))
437 if (strbuf_read_file(buf, path, 0) < 0) {
438 warning_errno(_("could not read '%s'"), path);
442 if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') {
443 if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r')
445 buf->buf[buf->len] = '\0';
448 if (skip_if_empty && buf->len == orig_len)
454 static struct tree *empty_tree(struct repository *r)
456 return lookup_tree(r, the_hash_algo->empty_tree);
459 static int error_dirty_index(struct repository *repo, struct replay_opts *opts)
461 if (repo_read_index_unmerged(repo))
462 return error_resolve_conflict(_(action_name(opts)));
464 error(_("your local changes would be overwritten by %s."),
465 _(action_name(opts)));
467 if (advice_commit_before_merge)
468 advise(_("commit your changes or stash them to proceed."));
472 static void update_abort_safety_file(void)
474 struct object_id head;
476 /* Do nothing on a single-pick */
477 if (!file_exists(git_path_seq_dir()))
480 if (!get_oid("HEAD", &head))
481 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head));
483 write_file(git_path_abort_safety_file(), "%s", "");
486 static int fast_forward_to(struct repository *r,
487 const struct object_id *to,
488 const struct object_id *from,
490 struct replay_opts *opts)
492 struct ref_transaction *transaction;
493 struct strbuf sb = STRBUF_INIT;
494 struct strbuf err = STRBUF_INIT;
497 if (checkout_fast_forward(r, from, to, 1))
498 return -1; /* the callee should have complained already */
500 strbuf_addf(&sb, _("%s: fast-forward"), _(action_name(opts)));
502 transaction = ref_transaction_begin(&err);
504 ref_transaction_update(transaction, "HEAD",
505 to, unborn && !is_rebase_i(opts) ?
508 ref_transaction_commit(transaction, &err)) {
509 ref_transaction_free(transaction);
510 error("%s", err.buf);
512 strbuf_release(&err);
517 strbuf_release(&err);
518 ref_transaction_free(transaction);
519 update_abort_safety_file();
523 enum commit_msg_cleanup_mode get_cleanup_mode(const char *cleanup_arg,
526 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
527 return use_editor ? COMMIT_MSG_CLEANUP_ALL :
528 COMMIT_MSG_CLEANUP_SPACE;
529 else if (!strcmp(cleanup_arg, "verbatim"))
530 return COMMIT_MSG_CLEANUP_NONE;
531 else if (!strcmp(cleanup_arg, "whitespace"))
532 return COMMIT_MSG_CLEANUP_SPACE;
533 else if (!strcmp(cleanup_arg, "strip"))
534 return COMMIT_MSG_CLEANUP_ALL;
535 else if (!strcmp(cleanup_arg, "scissors"))
536 return use_editor ? COMMIT_MSG_CLEANUP_SCISSORS :
537 COMMIT_MSG_CLEANUP_SPACE;
539 die(_("Invalid cleanup mode %s"), cleanup_arg);
543 * NB using int rather than enum cleanup_mode to stop clang's
544 * -Wtautological-constant-out-of-range-compare complaining that the comparison
547 static const char *describe_cleanup_mode(int cleanup_mode)
549 static const char *modes[] = { "whitespace",
554 if (cleanup_mode < ARRAY_SIZE(modes))
555 return modes[cleanup_mode];
557 BUG("invalid cleanup_mode provided (%d)", cleanup_mode);
560 void append_conflicts_hint(struct index_state *istate,
561 struct strbuf *msgbuf, enum commit_msg_cleanup_mode cleanup_mode)
565 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
566 strbuf_addch(msgbuf, '\n');
567 wt_status_append_cut_line(msgbuf);
568 strbuf_addch(msgbuf, comment_line_char);
571 strbuf_addch(msgbuf, '\n');
572 strbuf_commented_addf(msgbuf, "Conflicts:\n");
573 for (i = 0; i < istate->cache_nr;) {
574 const struct cache_entry *ce = istate->cache[i++];
576 strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
577 while (i < istate->cache_nr &&
578 !strcmp(ce->name, istate->cache[i]->name))
584 static int do_recursive_merge(struct repository *r,
585 struct commit *base, struct commit *next,
586 const char *base_label, const char *next_label,
587 struct object_id *head, struct strbuf *msgbuf,
588 struct replay_opts *opts)
590 struct merge_options o;
591 struct tree *next_tree, *base_tree, *head_tree;
594 struct lock_file index_lock = LOCK_INIT;
596 if (repo_hold_locked_index(r, &index_lock, LOCK_REPORT_ON_ERROR) < 0)
601 init_merge_options(&o, r);
602 o.ancestor = base ? base_label : "(empty tree)";
604 o.branch2 = next ? next_label : "(empty tree)";
605 if (is_rebase_i(opts))
607 o.show_rename_progress = 1;
609 head_tree = parse_tree_indirect(head);
610 next_tree = next ? get_commit_tree(next) : empty_tree(r);
611 base_tree = base ? get_commit_tree(base) : empty_tree(r);
613 for (xopt = opts->xopts; xopt != opts->xopts + opts->xopts_nr; xopt++)
614 parse_merge_opt(&o, *xopt);
616 clean = merge_trees(&o,
618 next_tree, base_tree);
619 if (is_rebase_i(opts) && clean <= 0)
620 fputs(o.obuf.buf, stdout);
621 strbuf_release(&o.obuf);
623 rollback_lock_file(&index_lock);
627 if (write_locked_index(r->index, &index_lock,
628 COMMIT_LOCK | SKIP_IF_UNCHANGED))
630 * TRANSLATORS: %s will be "revert", "cherry-pick" or
633 return error(_("%s: Unable to write new index file"),
634 _(action_name(opts)));
637 append_conflicts_hint(r->index, msgbuf,
638 opts->default_msg_cleanup);
643 static struct object_id *get_cache_tree_oid(struct index_state *istate)
645 if (!istate->cache_tree)
646 istate->cache_tree = cache_tree();
648 if (!cache_tree_fully_valid(istate->cache_tree))
649 if (cache_tree_update(istate, 0)) {
650 error(_("unable to update cache tree"));
654 return &istate->cache_tree->oid;
657 static int is_index_unchanged(struct repository *r)
659 struct object_id head_oid, *cache_tree_oid;
660 struct commit *head_commit;
661 struct index_state *istate = r->index;
663 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL))
664 return error(_("could not resolve HEAD commit"));
666 head_commit = lookup_commit(r, &head_oid);
669 * If head_commit is NULL, check_commit, called from
670 * lookup_commit, would have indicated that head_commit is not
671 * a commit object already. parse_commit() will return failure
672 * without further complaints in such a case. Otherwise, if
673 * the commit is invalid, parse_commit() will complain. So
674 * there is nothing for us to say here. Just return failure.
676 if (parse_commit(head_commit))
679 if (!(cache_tree_oid = get_cache_tree_oid(istate)))
682 return oideq(cache_tree_oid, get_commit_tree_oid(head_commit));
685 static int write_author_script(const char *message)
687 struct strbuf buf = STRBUF_INIT;
692 if (!*message || starts_with(message, "\n")) {
694 /* Missing 'author' line? */
695 unlink(rebase_path_author_script());
697 } else if (skip_prefix(message, "author ", &message))
699 else if ((eol = strchr(message, '\n')))
704 strbuf_addstr(&buf, "GIT_AUTHOR_NAME='");
705 while (*message && *message != '\n' && *message != '\r')
706 if (skip_prefix(message, " <", &message))
708 else if (*message != '\'')
709 strbuf_addch(&buf, *(message++));
711 strbuf_addf(&buf, "'\\%c'", *(message++));
712 strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='");
713 while (*message && *message != '\n' && *message != '\r')
714 if (skip_prefix(message, "> ", &message))
716 else if (*message != '\'')
717 strbuf_addch(&buf, *(message++));
719 strbuf_addf(&buf, "'\\%c'", *(message++));
720 strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@");
721 while (*message && *message != '\n' && *message != '\r')
722 if (*message != '\'')
723 strbuf_addch(&buf, *(message++));
725 strbuf_addf(&buf, "'\\%c'", *(message++));
726 strbuf_addch(&buf, '\'');
727 res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1);
728 strbuf_release(&buf);
733 * Take a series of KEY='VALUE' lines where VALUE part is
734 * sq-quoted, and append <KEY, VALUE> at the end of the string list
736 static int parse_key_value_squoted(char *buf, struct string_list *list)
739 struct string_list_item *item;
741 char *cp = strchr(buf, '=');
743 np = strchrnul(buf, '\n');
744 return error(_("no key present in '%.*s'"),
745 (int) (np - buf), buf);
747 np = strchrnul(cp, '\n');
749 item = string_list_append(list, buf);
751 buf = np + (*np == '\n');
755 return error(_("unable to dequote value of '%s'"),
757 item->util = xstrdup(cp);
763 * Reads and parses the state directory's "author-script" file, and sets name,
764 * email and date accordingly.
765 * Returns 0 on success, -1 if the file could not be parsed.
767 * The author script is of the format:
769 * GIT_AUTHOR_NAME='$author_name'
770 * GIT_AUTHOR_EMAIL='$author_email'
771 * GIT_AUTHOR_DATE='$author_date'
773 * where $author_name, $author_email and $author_date are quoted. We are strict
774 * with our parsing, as the file was meant to be eval'd in the now-removed
775 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
776 * from what this function expects, it is better to bail out than to do
777 * something that the user does not expect.
779 int read_author_script(const char *path, char **name, char **email, char **date,
782 struct strbuf buf = STRBUF_INIT;
783 struct string_list kv = STRING_LIST_INIT_DUP;
784 int retval = -1; /* assume failure */
785 int i, name_i = -2, email_i = -2, date_i = -2, err = 0;
787 if (strbuf_read_file(&buf, path, 256) <= 0) {
788 strbuf_release(&buf);
789 if (errno == ENOENT && allow_missing)
792 return error_errno(_("could not open '%s' for reading"),
796 if (parse_key_value_squoted(buf.buf, &kv))
799 for (i = 0; i < kv.nr; i++) {
800 if (!strcmp(kv.items[i].string, "GIT_AUTHOR_NAME")) {
802 name_i = error(_("'GIT_AUTHOR_NAME' already given"));
805 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_EMAIL")) {
807 email_i = error(_("'GIT_AUTHOR_EMAIL' already given"));
810 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_DATE")) {
812 date_i = error(_("'GIT_AUTHOR_DATE' already given"));
816 err = error(_("unknown variable '%s'"),
821 error(_("missing 'GIT_AUTHOR_NAME'"));
823 error(_("missing 'GIT_AUTHOR_EMAIL'"));
825 error(_("missing 'GIT_AUTHOR_DATE'"));
826 if (date_i < 0 || email_i < 0 || date_i < 0 || err)
828 *name = kv.items[name_i].util;
829 *email = kv.items[email_i].util;
830 *date = kv.items[date_i].util;
833 string_list_clear(&kv, !!retval);
834 strbuf_release(&buf);
839 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
840 * file with shell quoting into struct argv_array. Returns -1 on
841 * error, 0 otherwise.
843 static int read_env_script(struct argv_array *env)
845 char *name, *email, *date;
847 if (read_author_script(rebase_path_author_script(),
848 &name, &email, &date, 0))
851 argv_array_pushf(env, "GIT_AUTHOR_NAME=%s", name);
852 argv_array_pushf(env, "GIT_AUTHOR_EMAIL=%s", email);
853 argv_array_pushf(env, "GIT_AUTHOR_DATE=%s", date);
861 static char *get_author(const char *message)
866 a = find_commit_header(message, "author", &len);
868 return xmemdupz(a, len);
873 static const char staged_changes_advice[] =
874 N_("you have staged changes in your working tree\n"
875 "If these changes are meant to be squashed into the previous commit, run:\n"
877 " git commit --amend %s\n"
879 "If they are meant to go into a new commit, run:\n"
883 "In both cases, once you're done, continue with:\n"
885 " git rebase --continue\n");
887 #define ALLOW_EMPTY (1<<0)
888 #define EDIT_MSG (1<<1)
889 #define AMEND_MSG (1<<2)
890 #define CLEANUP_MSG (1<<3)
891 #define VERIFY_MSG (1<<4)
892 #define CREATE_ROOT_COMMIT (1<<5)
894 static int run_command_silent_on_success(struct child_process *cmd)
896 struct strbuf buf = STRBUF_INIT;
899 cmd->stdout_to_stderr = 1;
900 rc = pipe_command(cmd,
906 fputs(buf.buf, stderr);
907 strbuf_release(&buf);
912 * If we are cherry-pick, and if the merge did not result in
913 * hand-editing, we will hit this commit and inherit the original
914 * author date and name.
916 * If we are revert, or if our cherry-pick results in a hand merge,
917 * we had better say that the current user is responsible for that.
919 * An exception is when run_git_commit() is called during an
920 * interactive rebase: in that case, we will want to retain the
923 static int run_git_commit(struct repository *r,
925 struct replay_opts *opts,
928 struct child_process cmd = CHILD_PROCESS_INIT;
932 if (is_rebase_i(opts) && read_env_script(&cmd.env_array)) {
933 const char *gpg_opt = gpg_sign_opt_quoted(opts);
935 return error(_(staged_changes_advice),
939 argv_array_push(&cmd.args, "commit");
941 if (!(flags & VERIFY_MSG))
942 argv_array_push(&cmd.args, "-n");
943 if ((flags & AMEND_MSG))
944 argv_array_push(&cmd.args, "--amend");
946 argv_array_pushf(&cmd.args, "-S%s", opts->gpg_sign);
948 argv_array_pushl(&cmd.args, "-F", defmsg, NULL);
949 else if (!(flags & EDIT_MSG))
950 argv_array_pushl(&cmd.args, "-C", "HEAD", NULL);
951 if ((flags & CLEANUP_MSG))
952 argv_array_push(&cmd.args, "--cleanup=strip");
953 if ((flags & EDIT_MSG))
954 argv_array_push(&cmd.args, "-e");
955 else if (!(flags & CLEANUP_MSG) &&
956 !opts->signoff && !opts->record_origin &&
957 !opts->explicit_cleanup)
958 argv_array_push(&cmd.args, "--cleanup=verbatim");
960 if ((flags & ALLOW_EMPTY))
961 argv_array_push(&cmd.args, "--allow-empty");
963 if (!(flags & EDIT_MSG))
964 argv_array_push(&cmd.args, "--allow-empty-message");
966 if (is_rebase_i(opts) && !(flags & EDIT_MSG))
967 return run_command_silent_on_success(&cmd);
969 return run_command(&cmd);
972 static int rest_is_empty(const struct strbuf *sb, int start)
977 /* Check if the rest is just whitespace and Signed-off-by's. */
978 for (i = start; i < sb->len; i++) {
979 nl = memchr(sb->buf + i, '\n', sb->len - i);
985 if (strlen(sign_off_header) <= eol - i &&
986 starts_with(sb->buf + i, sign_off_header)) {
991 if (!isspace(sb->buf[i++]))
998 void cleanup_message(struct strbuf *msgbuf,
999 enum commit_msg_cleanup_mode cleanup_mode, int verbose)
1001 if (verbose || /* Truncate the message just before the diff, if any. */
1002 cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS)
1003 strbuf_setlen(msgbuf, wt_status_locate_end(msgbuf->buf, msgbuf->len));
1004 if (cleanup_mode != COMMIT_MSG_CLEANUP_NONE)
1005 strbuf_stripspace(msgbuf, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1009 * Find out if the message in the strbuf contains only whitespace and
1010 * Signed-off-by lines.
1012 int message_is_empty(const struct strbuf *sb,
1013 enum commit_msg_cleanup_mode cleanup_mode)
1015 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1017 return rest_is_empty(sb, 0);
1021 * See if the user edited the message in the editor or left what
1022 * was in the template intact
1024 int template_untouched(const struct strbuf *sb, const char *template_file,
1025 enum commit_msg_cleanup_mode cleanup_mode)
1027 struct strbuf tmpl = STRBUF_INIT;
1030 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1033 if (!template_file || strbuf_read_file(&tmpl, template_file, 0) <= 0)
1036 strbuf_stripspace(&tmpl, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1037 if (!skip_prefix(sb->buf, tmpl.buf, &start))
1039 strbuf_release(&tmpl);
1040 return rest_is_empty(sb, start - sb->buf);
1043 int update_head_with_reflog(const struct commit *old_head,
1044 const struct object_id *new_head,
1045 const char *action, const struct strbuf *msg,
1048 struct ref_transaction *transaction;
1049 struct strbuf sb = STRBUF_INIT;
1054 strbuf_addstr(&sb, action);
1055 strbuf_addstr(&sb, ": ");
1058 nl = strchr(msg->buf, '\n');
1060 strbuf_add(&sb, msg->buf, nl + 1 - msg->buf);
1062 strbuf_addbuf(&sb, msg);
1063 strbuf_addch(&sb, '\n');
1066 transaction = ref_transaction_begin(err);
1068 ref_transaction_update(transaction, "HEAD", new_head,
1069 old_head ? &old_head->object.oid : &null_oid,
1071 ref_transaction_commit(transaction, err)) {
1074 ref_transaction_free(transaction);
1075 strbuf_release(&sb);
1080 static int run_rewrite_hook(const struct object_id *oldoid,
1081 const struct object_id *newoid)
1083 struct child_process proc = CHILD_PROCESS_INIT;
1084 const char *argv[3];
1086 struct strbuf sb = STRBUF_INIT;
1088 argv[0] = find_hook("post-rewrite");
1097 proc.stdout_to_stderr = 1;
1098 proc.trace2_hook_name = "post-rewrite";
1100 code = start_command(&proc);
1103 strbuf_addf(&sb, "%s %s\n", oid_to_hex(oldoid), oid_to_hex(newoid));
1104 sigchain_push(SIGPIPE, SIG_IGN);
1105 write_in_full(proc.in, sb.buf, sb.len);
1107 strbuf_release(&sb);
1108 sigchain_pop(SIGPIPE);
1109 return finish_command(&proc);
1112 void commit_post_rewrite(struct repository *r,
1113 const struct commit *old_head,
1114 const struct object_id *new_head)
1116 struct notes_rewrite_cfg *cfg;
1118 cfg = init_copy_notes_for_rewrite("amend");
1120 /* we are amending, so old_head is not NULL */
1121 copy_note_for_rewrite(cfg, &old_head->object.oid, new_head);
1122 finish_copy_notes_for_rewrite(r, cfg, "Notes added by 'git commit --amend'");
1124 run_rewrite_hook(&old_head->object.oid, new_head);
1127 static int run_prepare_commit_msg_hook(struct repository *r,
1132 const char *name, *arg1 = NULL, *arg2 = NULL;
1134 name = git_path_commit_editmsg();
1135 if (write_message(msg->buf, msg->len, name, 0))
1144 if (run_commit_hook(0, r->index_file, "prepare-commit-msg", name,
1146 ret = error(_("'prepare-commit-msg' hook failed"));
1151 static const char implicit_ident_advice_noconfig[] =
1152 N_("Your name and email address were configured automatically based\n"
1153 "on your username and hostname. Please check that they are accurate.\n"
1154 "You can suppress this message by setting them explicitly. Run the\n"
1155 "following command and follow the instructions in your editor to edit\n"
1156 "your configuration file:\n"
1158 " git config --global --edit\n"
1160 "After doing this, you may fix the identity used for this commit with:\n"
1162 " git commit --amend --reset-author\n");
1164 static const char implicit_ident_advice_config[] =
1165 N_("Your name and email address were configured automatically based\n"
1166 "on your username and hostname. Please check that they are accurate.\n"
1167 "You can suppress this message by setting them explicitly:\n"
1169 " git config --global user.name \"Your Name\"\n"
1170 " git config --global user.email you@example.com\n"
1172 "After doing this, you may fix the identity used for this commit with:\n"
1174 " git commit --amend --reset-author\n");
1176 static const char *implicit_ident_advice(void)
1178 char *user_config = expand_user_path("~/.gitconfig", 0);
1179 char *xdg_config = xdg_config_home("config");
1180 int config_exists = file_exists(user_config) || file_exists(xdg_config);
1186 return _(implicit_ident_advice_config);
1188 return _(implicit_ident_advice_noconfig);
1192 void print_commit_summary(struct repository *r,
1194 const struct object_id *oid,
1197 struct rev_info rev;
1198 struct commit *commit;
1199 struct strbuf format = STRBUF_INIT;
1201 struct pretty_print_context pctx = {0};
1202 struct strbuf author_ident = STRBUF_INIT;
1203 struct strbuf committer_ident = STRBUF_INIT;
1205 commit = lookup_commit(r, oid);
1207 die(_("couldn't look up newly created commit"));
1208 if (parse_commit(commit))
1209 die(_("could not parse newly created commit"));
1211 strbuf_addstr(&format, "format:%h] %s");
1213 format_commit_message(commit, "%an <%ae>", &author_ident, &pctx);
1214 format_commit_message(commit, "%cn <%ce>", &committer_ident, &pctx);
1215 if (strbuf_cmp(&author_ident, &committer_ident)) {
1216 strbuf_addstr(&format, "\n Author: ");
1217 strbuf_addbuf_percentquote(&format, &author_ident);
1219 if (flags & SUMMARY_SHOW_AUTHOR_DATE) {
1220 struct strbuf date = STRBUF_INIT;
1222 format_commit_message(commit, "%ad", &date, &pctx);
1223 strbuf_addstr(&format, "\n Date: ");
1224 strbuf_addbuf_percentquote(&format, &date);
1225 strbuf_release(&date);
1227 if (!committer_ident_sufficiently_given()) {
1228 strbuf_addstr(&format, "\n Committer: ");
1229 strbuf_addbuf_percentquote(&format, &committer_ident);
1230 if (advice_implicit_identity) {
1231 strbuf_addch(&format, '\n');
1232 strbuf_addstr(&format, implicit_ident_advice());
1235 strbuf_release(&author_ident);
1236 strbuf_release(&committer_ident);
1238 repo_init_revisions(r, &rev, prefix);
1239 setup_revisions(0, NULL, &rev, NULL);
1242 rev.diffopt.output_format =
1243 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1245 rev.verbose_header = 1;
1246 rev.show_root_diff = 1;
1247 get_commit_format(format.buf, &rev);
1248 rev.always_show_header = 0;
1249 rev.diffopt.detect_rename = DIFF_DETECT_RENAME;
1250 rev.diffopt.break_opt = 0;
1251 diff_setup_done(&rev.diffopt);
1253 head = resolve_ref_unsafe("HEAD", 0, NULL, NULL);
1255 die_errno(_("unable to resolve HEAD after creating commit"));
1256 if (!strcmp(head, "HEAD"))
1257 head = _("detached HEAD");
1259 skip_prefix(head, "refs/heads/", &head);
1260 printf("[%s%s ", head, (flags & SUMMARY_INITIAL_COMMIT) ?
1261 _(" (root-commit)") : "");
1263 if (!log_tree_commit(&rev, commit)) {
1264 rev.always_show_header = 1;
1265 rev.use_terminator = 1;
1266 log_tree_commit(&rev, commit);
1269 strbuf_release(&format);
1272 static int parse_head(struct repository *r, struct commit **head)
1274 struct commit *current_head;
1275 struct object_id oid;
1277 if (get_oid("HEAD", &oid)) {
1278 current_head = NULL;
1280 current_head = lookup_commit_reference(r, &oid);
1282 return error(_("could not parse HEAD"));
1283 if (!oideq(&oid, ¤t_head->object.oid)) {
1284 warning(_("HEAD %s is not a commit!"),
1287 if (parse_commit(current_head))
1288 return error(_("could not parse HEAD commit"));
1290 *head = current_head;
1296 * Try to commit without forking 'git commit'. In some cases we need
1297 * to run 'git commit' to display an error message
1300 * -1 - error unable to commit
1302 * 1 - run 'git commit'
1304 static int try_to_commit(struct repository *r,
1305 struct strbuf *msg, const char *author,
1306 struct replay_opts *opts, unsigned int flags,
1307 struct object_id *oid)
1309 struct object_id tree;
1310 struct commit *current_head = NULL;
1311 struct commit_list *parents = NULL;
1312 struct commit_extra_header *extra = NULL;
1313 struct strbuf err = STRBUF_INIT;
1314 struct strbuf commit_msg = STRBUF_INIT;
1315 char *amend_author = NULL;
1316 const char *hook_commit = NULL;
1317 enum commit_msg_cleanup_mode cleanup;
1320 if (parse_head(r, ¤t_head))
1323 if (flags & AMEND_MSG) {
1324 const char *exclude_gpgsig[] = { "gpgsig", NULL };
1325 const char *out_enc = get_commit_output_encoding();
1326 const char *message = logmsg_reencode(current_head, NULL,
1330 const char *orig_message = NULL;
1332 find_commit_subject(message, &orig_message);
1334 strbuf_addstr(msg, orig_message);
1335 hook_commit = "HEAD";
1337 author = amend_author = get_author(message);
1338 unuse_commit_buffer(current_head, message);
1340 res = error(_("unable to parse commit author"));
1343 parents = copy_commit_list(current_head->parents);
1344 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1345 } else if (current_head &&
1346 (!(flags & CREATE_ROOT_COMMIT) || (flags & AMEND_MSG))) {
1347 commit_list_insert(current_head, &parents);
1350 if (write_index_as_tree(&tree, r->index, r->index_file, 0, NULL)) {
1351 res = error(_("git write-tree failed to write a tree"));
1355 if (!(flags & ALLOW_EMPTY)) {
1356 struct commit *first_parent = current_head;
1358 if (flags & AMEND_MSG) {
1359 if (current_head->parents) {
1360 first_parent = current_head->parents->item;
1361 if (repo_parse_commit(r, first_parent)) {
1362 res = error(_("could not parse HEAD commit"));
1366 first_parent = NULL;
1369 if (oideq(first_parent
1370 ? get_commit_tree_oid(first_parent)
1371 : the_hash_algo->empty_tree,
1373 res = 1; /* run 'git commit' to display error message */
1378 if (find_hook("prepare-commit-msg")) {
1379 res = run_prepare_commit_msg_hook(r, msg, hook_commit);
1382 if (strbuf_read_file(&commit_msg, git_path_commit_editmsg(),
1384 res = error_errno(_("unable to read commit message "
1386 git_path_commit_editmsg());
1392 if (flags & CLEANUP_MSG)
1393 cleanup = COMMIT_MSG_CLEANUP_ALL;
1394 else if ((opts->signoff || opts->record_origin) &&
1395 !opts->explicit_cleanup)
1396 cleanup = COMMIT_MSG_CLEANUP_SPACE;
1398 cleanup = opts->default_msg_cleanup;
1400 if (cleanup != COMMIT_MSG_CLEANUP_NONE)
1401 strbuf_stripspace(msg, cleanup == COMMIT_MSG_CLEANUP_ALL);
1402 if ((flags & EDIT_MSG) && message_is_empty(msg, cleanup)) {
1403 res = 1; /* run 'git commit' to display error message */
1409 if (commit_tree_extended(msg->buf, msg->len, &tree, parents,
1410 oid, author, opts->gpg_sign, extra)) {
1411 res = error(_("failed to write commit object"));
1415 if (update_head_with_reflog(current_head, oid,
1416 getenv("GIT_REFLOG_ACTION"), msg, &err)) {
1417 res = error("%s", err.buf);
1421 run_commit_hook(0, r->index_file, "post-commit", NULL);
1422 if (flags & AMEND_MSG)
1423 commit_post_rewrite(r, current_head, oid);
1426 free_commit_extra_headers(extra);
1427 strbuf_release(&err);
1428 strbuf_release(&commit_msg);
1434 static int do_commit(struct repository *r,
1435 const char *msg_file, const char *author,
1436 struct replay_opts *opts, unsigned int flags)
1440 if (!(flags & EDIT_MSG) && !(flags & VERIFY_MSG)) {
1441 struct object_id oid;
1442 struct strbuf sb = STRBUF_INIT;
1444 if (msg_file && strbuf_read_file(&sb, msg_file, 2048) < 0)
1445 return error_errno(_("unable to read commit message "
1449 res = try_to_commit(r, msg_file ? &sb : NULL,
1450 author, opts, flags, &oid);
1451 strbuf_release(&sb);
1453 unlink(git_path_cherry_pick_head(r));
1454 unlink(git_path_merge_msg(r));
1455 if (!is_rebase_i(opts))
1456 print_commit_summary(r, NULL, &oid,
1457 SUMMARY_SHOW_AUTHOR_DATE);
1462 return run_git_commit(r, msg_file, opts, flags);
1467 static int is_original_commit_empty(struct commit *commit)
1469 const struct object_id *ptree_oid;
1471 if (parse_commit(commit))
1472 return error(_("could not parse commit %s"),
1473 oid_to_hex(&commit->object.oid));
1474 if (commit->parents) {
1475 struct commit *parent = commit->parents->item;
1476 if (parse_commit(parent))
1477 return error(_("could not parse parent commit %s"),
1478 oid_to_hex(&parent->object.oid));
1479 ptree_oid = get_commit_tree_oid(parent);
1481 ptree_oid = the_hash_algo->empty_tree; /* commit is root */
1484 return oideq(ptree_oid, get_commit_tree_oid(commit));
1488 * Should empty commits be allowed? Return status:
1489 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1490 * 0: Halt on empty commit
1491 * 1: Allow empty commit
1492 * 2: Drop empty commit
1494 static int allow_empty(struct repository *r,
1495 struct replay_opts *opts,
1496 struct commit *commit)
1498 int index_unchanged, originally_empty;
1503 * (1) we do not allow empty at all and error out.
1505 * (2) we allow ones that were initially empty, and
1506 * just drop the ones that become empty
1508 * (3) we allow ones that were initially empty, but
1509 * halt for the ones that become empty;
1511 * (4) we allow both.
1513 if (!opts->allow_empty)
1514 return 0; /* let "git commit" barf as necessary */
1516 index_unchanged = is_index_unchanged(r);
1517 if (index_unchanged < 0)
1518 return index_unchanged;
1519 if (!index_unchanged)
1520 return 0; /* we do not have to say --allow-empty */
1522 if (opts->keep_redundant_commits)
1525 originally_empty = is_original_commit_empty(commit);
1526 if (originally_empty < 0)
1527 return originally_empty;
1528 if (originally_empty)
1530 else if (opts->drop_redundant_commits)
1539 } todo_command_info[] = {
1556 static const char *command_to_string(const enum todo_command command)
1558 if (command < TODO_COMMENT)
1559 return todo_command_info[command].str;
1560 die(_("unknown command: %d"), command);
1563 static char command_to_char(const enum todo_command command)
1565 if (command < TODO_COMMENT && todo_command_info[command].c)
1566 return todo_command_info[command].c;
1567 return comment_line_char;
1570 static int is_noop(const enum todo_command command)
1572 return TODO_NOOP <= command;
1575 static int is_fixup(enum todo_command command)
1577 return command == TODO_FIXUP || command == TODO_SQUASH;
1580 /* Does this command create a (non-merge) commit? */
1581 static int is_pick_or_similar(enum todo_command command)
1596 static int update_squash_messages(struct repository *r,
1597 enum todo_command command,
1598 struct commit *commit,
1599 struct replay_opts *opts)
1601 struct strbuf buf = STRBUF_INIT;
1603 const char *message, *body;
1604 const char *encoding = get_commit_output_encoding();
1606 if (opts->current_fixup_count > 0) {
1607 struct strbuf header = STRBUF_INIT;
1610 if (strbuf_read_file(&buf, rebase_path_squash_msg(), 9) <= 0)
1611 return error(_("could not read '%s'"),
1612 rebase_path_squash_msg());
1614 eol = buf.buf[0] != comment_line_char ?
1615 buf.buf : strchrnul(buf.buf, '\n');
1617 strbuf_addf(&header, "%c ", comment_line_char);
1618 strbuf_addf(&header, _("This is a combination of %d commits."),
1619 opts->current_fixup_count + 2);
1620 strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len);
1621 strbuf_release(&header);
1623 struct object_id head;
1624 struct commit *head_commit;
1625 const char *head_message, *body;
1627 if (get_oid("HEAD", &head))
1628 return error(_("need a HEAD to fixup"));
1629 if (!(head_commit = lookup_commit_reference(r, &head)))
1630 return error(_("could not read HEAD"));
1631 if (!(head_message = logmsg_reencode(head_commit, NULL, encoding)))
1632 return error(_("could not read HEAD's commit message"));
1634 find_commit_subject(head_message, &body);
1635 if (write_message(body, strlen(body),
1636 rebase_path_fixup_msg(), 0)) {
1637 unuse_commit_buffer(head_commit, head_message);
1638 return error(_("cannot write '%s'"),
1639 rebase_path_fixup_msg());
1642 strbuf_addf(&buf, "%c ", comment_line_char);
1643 strbuf_addf(&buf, _("This is a combination of %d commits."), 2);
1644 strbuf_addf(&buf, "\n%c ", comment_line_char);
1645 strbuf_addstr(&buf, _("This is the 1st commit message:"));
1646 strbuf_addstr(&buf, "\n\n");
1647 strbuf_addstr(&buf, body);
1649 unuse_commit_buffer(head_commit, head_message);
1652 if (!(message = logmsg_reencode(commit, NULL, encoding)))
1653 return error(_("could not read commit message of %s"),
1654 oid_to_hex(&commit->object.oid));
1655 find_commit_subject(message, &body);
1657 if (command == TODO_SQUASH) {
1658 unlink(rebase_path_fixup_msg());
1659 strbuf_addf(&buf, "\n%c ", comment_line_char);
1660 strbuf_addf(&buf, _("This is the commit message #%d:"),
1661 ++opts->current_fixup_count + 1);
1662 strbuf_addstr(&buf, "\n\n");
1663 strbuf_addstr(&buf, body);
1664 } else if (command == TODO_FIXUP) {
1665 strbuf_addf(&buf, "\n%c ", comment_line_char);
1666 strbuf_addf(&buf, _("The commit message #%d will be skipped:"),
1667 ++opts->current_fixup_count + 1);
1668 strbuf_addstr(&buf, "\n\n");
1669 strbuf_add_commented_lines(&buf, body, strlen(body));
1671 return error(_("unknown command: %d"), command);
1672 unuse_commit_buffer(commit, message);
1674 res = write_message(buf.buf, buf.len, rebase_path_squash_msg(), 0);
1675 strbuf_release(&buf);
1678 strbuf_addf(&opts->current_fixups, "%s%s %s",
1679 opts->current_fixups.len ? "\n" : "",
1680 command_to_string(command),
1681 oid_to_hex(&commit->object.oid));
1682 res = write_message(opts->current_fixups.buf,
1683 opts->current_fixups.len,
1684 rebase_path_current_fixups(), 0);
1690 static void flush_rewritten_pending(void)
1692 struct strbuf buf = STRBUF_INIT;
1693 struct object_id newoid;
1696 if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 &&
1697 !get_oid("HEAD", &newoid) &&
1698 (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
1699 char *bol = buf.buf, *eol;
1702 eol = strchrnul(bol, '\n');
1703 fprintf(out, "%.*s %s\n", (int)(eol - bol),
1704 bol, oid_to_hex(&newoid));
1710 unlink(rebase_path_rewritten_pending());
1712 strbuf_release(&buf);
1715 static void record_in_rewritten(struct object_id *oid,
1716 enum todo_command next_command)
1718 FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a");
1723 fprintf(out, "%s\n", oid_to_hex(oid));
1726 if (!is_fixup(next_command))
1727 flush_rewritten_pending();
1730 static int do_pick_commit(struct repository *r,
1731 enum todo_command command,
1732 struct commit *commit,
1733 struct replay_opts *opts,
1734 int final_fixup, int *check_todo)
1736 unsigned int flags = opts->edit ? EDIT_MSG : 0;
1737 const char *msg_file = opts->edit ? NULL : git_path_merge_msg(r);
1738 struct object_id head;
1739 struct commit *base, *next, *parent;
1740 const char *base_label, *next_label;
1741 char *author = NULL;
1742 struct commit_message msg = { NULL, NULL, NULL, NULL };
1743 struct strbuf msgbuf = STRBUF_INIT;
1744 int res, unborn = 0, reword = 0, allow, drop_commit;
1746 if (opts->no_commit) {
1748 * We do not intend to commit immediately. We just want to
1749 * merge the differences in, so let's compute the tree
1750 * that represents the "current" state for merge-recursive
1753 if (write_index_as_tree(&head, r->index, r->index_file, 0, NULL))
1754 return error(_("your index file is unmerged."));
1756 unborn = get_oid("HEAD", &head);
1757 /* Do we want to generate a root commit? */
1758 if (is_pick_or_similar(command) && opts->have_squash_onto &&
1759 oideq(&head, &opts->squash_onto)) {
1760 if (is_fixup(command))
1761 return error(_("cannot fixup root commit"));
1762 flags |= CREATE_ROOT_COMMIT;
1765 oidcpy(&head, the_hash_algo->empty_tree);
1766 if (index_differs_from(r, unborn ? empty_tree_oid_hex() : "HEAD",
1768 return error_dirty_index(r, opts);
1770 discard_index(r->index);
1772 if (!commit->parents)
1774 else if (commit->parents->next) {
1775 /* Reverting or cherry-picking a merge commit */
1777 struct commit_list *p;
1779 if (!opts->mainline)
1780 return error(_("commit %s is a merge but no -m option was given."),
1781 oid_to_hex(&commit->object.oid));
1783 for (cnt = 1, p = commit->parents;
1784 cnt != opts->mainline && p;
1787 if (cnt != opts->mainline || !p)
1788 return error(_("commit %s does not have parent %d"),
1789 oid_to_hex(&commit->object.oid), opts->mainline);
1791 } else if (1 < opts->mainline)
1793 * Non-first parent explicitly specified as mainline for
1796 return error(_("commit %s does not have parent %d"),
1797 oid_to_hex(&commit->object.oid), opts->mainline);
1799 parent = commit->parents->item;
1801 if (get_message(commit, &msg) != 0)
1802 return error(_("cannot get commit message for %s"),
1803 oid_to_hex(&commit->object.oid));
1805 if (opts->allow_ff && !is_fixup(command) &&
1806 ((parent && oideq(&parent->object.oid, &head)) ||
1807 (!parent && unborn))) {
1808 if (is_rebase_i(opts))
1809 write_author_script(msg.message);
1810 res = fast_forward_to(r, &commit->object.oid, &head, unborn,
1812 if (res || command != TODO_REWORD)
1816 goto fast_forward_edit;
1818 if (parent && parse_commit(parent) < 0)
1819 /* TRANSLATORS: The first %s will be a "todo" command like
1820 "revert" or "pick", the second %s a SHA1. */
1821 return error(_("%s: cannot parse parent commit %s"),
1822 command_to_string(command),
1823 oid_to_hex(&parent->object.oid));
1826 * "commit" is an existing commit. We would want to apply
1827 * the difference it introduces since its first parent "prev"
1828 * on top of the current HEAD if we are cherry-pick. Or the
1829 * reverse of it if we are revert.
1832 if (command == TODO_REVERT) {
1834 base_label = msg.label;
1836 next_label = msg.parent_label;
1837 strbuf_addstr(&msgbuf, "Revert \"");
1838 strbuf_addstr(&msgbuf, msg.subject);
1839 strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit ");
1840 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
1842 if (commit->parents && commit->parents->next) {
1843 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
1844 strbuf_addstr(&msgbuf, oid_to_hex(&parent->object.oid));
1846 strbuf_addstr(&msgbuf, ".\n");
1851 base_label = msg.parent_label;
1853 next_label = msg.label;
1855 /* Append the commit log message to msgbuf. */
1856 if (find_commit_subject(msg.message, &p))
1857 strbuf_addstr(&msgbuf, p);
1859 if (opts->record_origin) {
1860 strbuf_complete_line(&msgbuf);
1861 if (!has_conforming_footer(&msgbuf, NULL, 0))
1862 strbuf_addch(&msgbuf, '\n');
1863 strbuf_addstr(&msgbuf, cherry_picked_prefix);
1864 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
1865 strbuf_addstr(&msgbuf, ")\n");
1867 if (!is_fixup(command))
1868 author = get_author(msg.message);
1871 if (command == TODO_REWORD)
1873 else if (is_fixup(command)) {
1874 if (update_squash_messages(r, command, commit, opts))
1878 msg_file = rebase_path_squash_msg();
1879 else if (file_exists(rebase_path_fixup_msg())) {
1880 flags |= CLEANUP_MSG;
1881 msg_file = rebase_path_fixup_msg();
1883 const char *dest = git_path_squash_msg(r);
1885 if (copy_file(dest, rebase_path_squash_msg(), 0666))
1886 return error(_("could not rename '%s' to '%s'"),
1887 rebase_path_squash_msg(), dest);
1888 unlink(git_path_merge_msg(r));
1894 if (opts->signoff && !is_fixup(command))
1895 append_signoff(&msgbuf, 0, 0);
1897 if (is_rebase_i(opts) && write_author_script(msg.message) < 0)
1899 else if (!opts->strategy || !strcmp(opts->strategy, "recursive") || command == TODO_REVERT) {
1900 res = do_recursive_merge(r, base, next, base_label, next_label,
1901 &head, &msgbuf, opts);
1905 res |= write_message(msgbuf.buf, msgbuf.len,
1906 git_path_merge_msg(r), 0);
1908 struct commit_list *common = NULL;
1909 struct commit_list *remotes = NULL;
1911 res = write_message(msgbuf.buf, msgbuf.len,
1912 git_path_merge_msg(r), 0);
1914 commit_list_insert(base, &common);
1915 commit_list_insert(next, &remotes);
1916 res |= try_merge_command(r, opts->strategy,
1917 opts->xopts_nr, (const char **)opts->xopts,
1918 common, oid_to_hex(&head), remotes);
1919 free_commit_list(common);
1920 free_commit_list(remotes);
1922 strbuf_release(&msgbuf);
1925 * If the merge was clean or if it failed due to conflict, we write
1926 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
1927 * However, if the merge did not even start, then we don't want to
1930 if (command == TODO_PICK && !opts->no_commit && (res == 0 || res == 1) &&
1931 update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL,
1932 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
1934 if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
1935 update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL,
1936 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
1940 error(command == TODO_REVERT
1941 ? _("could not revert %s... %s")
1942 : _("could not apply %s... %s"),
1943 short_commit_name(commit), msg.subject);
1944 print_advice(r, res == 1, opts);
1945 repo_rerere(r, opts->allow_rerere_auto);
1950 allow = allow_empty(r, opts, commit);
1954 } else if (allow == 1) {
1955 flags |= ALLOW_EMPTY;
1956 } else if (allow == 2) {
1959 _("dropping %s %s -- patch contents already upstream\n"),
1960 oid_to_hex(&commit->object.oid), msg.subject);
1961 } /* else allow == 0 and there's nothing special to do */
1962 if (!opts->no_commit && !drop_commit) {
1963 if (author || command == TODO_REVERT || (flags & AMEND_MSG))
1964 res = do_commit(r, msg_file, author, opts, flags);
1966 res = error(_("unable to parse commit author"));
1967 *check_todo = !!(flags & EDIT_MSG);
1968 if (!res && reword) {
1970 res = run_git_commit(r, NULL, opts, EDIT_MSG |
1971 VERIFY_MSG | AMEND_MSG |
1972 (flags & ALLOW_EMPTY));
1978 if (!res && final_fixup) {
1979 unlink(rebase_path_fixup_msg());
1980 unlink(rebase_path_squash_msg());
1981 unlink(rebase_path_current_fixups());
1982 strbuf_reset(&opts->current_fixups);
1983 opts->current_fixup_count = 0;
1987 free_message(commit, &msg);
1989 update_abort_safety_file();
1994 static int prepare_revs(struct replay_opts *opts)
1997 * picking (but not reverting) ranges (but not individual revisions)
1998 * should be done in reverse
2000 if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
2001 opts->revs->reverse ^= 1;
2003 if (prepare_revision_walk(opts->revs))
2004 return error(_("revision walk setup failed"));
2009 static int read_and_refresh_cache(struct repository *r,
2010 struct replay_opts *opts)
2012 struct lock_file index_lock = LOCK_INIT;
2013 int index_fd = repo_hold_locked_index(r, &index_lock, 0);
2014 if (repo_read_index(r) < 0) {
2015 rollback_lock_file(&index_lock);
2016 return error(_("git %s: failed to read the index"),
2017 _(action_name(opts)));
2019 refresh_index(r->index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
2020 if (index_fd >= 0) {
2021 if (write_locked_index(r->index, &index_lock,
2022 COMMIT_LOCK | SKIP_IF_UNCHANGED)) {
2023 return error(_("git %s: failed to refresh the index"),
2024 _(action_name(opts)));
2030 enum todo_item_flags {
2031 TODO_EDIT_MERGE_MSG = 1
2034 void todo_list_release(struct todo_list *todo_list)
2036 strbuf_release(&todo_list->buf);
2037 FREE_AND_NULL(todo_list->items);
2038 todo_list->nr = todo_list->alloc = 0;
2041 static struct todo_item *append_new_todo(struct todo_list *todo_list)
2043 ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
2044 todo_list->total_nr++;
2045 return todo_list->items + todo_list->nr++;
2048 const char *todo_item_get_arg(struct todo_list *todo_list,
2049 struct todo_item *item)
2051 return todo_list->buf.buf + item->arg_offset;
2054 static int is_command(enum todo_command command, const char **bol)
2056 const char *str = todo_command_info[command].str;
2057 const char nick = todo_command_info[command].c;
2058 const char *p = *bol + 1;
2060 return skip_prefix(*bol, str, bol) ||
2061 ((nick && **bol == nick) &&
2062 (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r' || !*p) &&
2066 static int parse_insn_line(struct repository *r, struct todo_item *item,
2067 const char *buf, const char *bol, char *eol)
2069 struct object_id commit_oid;
2070 char *end_of_object_name;
2071 int i, saved, status, padding;
2076 bol += strspn(bol, " \t");
2078 if (bol == eol || *bol == '\r' || *bol == comment_line_char) {
2079 item->command = TODO_COMMENT;
2080 item->commit = NULL;
2081 item->arg_offset = bol - buf;
2082 item->arg_len = eol - bol;
2086 for (i = 0; i < TODO_COMMENT; i++)
2087 if (is_command(i, &bol)) {
2091 if (i >= TODO_COMMENT)
2094 /* Eat up extra spaces/ tabs before object name */
2095 padding = strspn(bol, " \t");
2098 if (item->command == TODO_NOOP || item->command == TODO_BREAK) {
2100 return error(_("%s does not accept arguments: '%s'"),
2101 command_to_string(item->command), bol);
2102 item->commit = NULL;
2103 item->arg_offset = bol - buf;
2104 item->arg_len = eol - bol;
2109 return error(_("missing arguments for %s"),
2110 command_to_string(item->command));
2112 if (item->command == TODO_EXEC || item->command == TODO_LABEL ||
2113 item->command == TODO_RESET) {
2114 item->commit = NULL;
2115 item->arg_offset = bol - buf;
2116 item->arg_len = (int)(eol - bol);
2120 if (item->command == TODO_MERGE) {
2121 if (skip_prefix(bol, "-C", &bol))
2122 bol += strspn(bol, " \t");
2123 else if (skip_prefix(bol, "-c", &bol)) {
2124 bol += strspn(bol, " \t");
2125 item->flags |= TODO_EDIT_MERGE_MSG;
2127 item->flags |= TODO_EDIT_MERGE_MSG;
2128 item->commit = NULL;
2129 item->arg_offset = bol - buf;
2130 item->arg_len = (int)(eol - bol);
2135 end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
2136 saved = *end_of_object_name;
2137 *end_of_object_name = '\0';
2138 status = get_oid(bol, &commit_oid);
2139 *end_of_object_name = saved;
2141 bol = end_of_object_name + strspn(end_of_object_name, " \t");
2142 item->arg_offset = bol - buf;
2143 item->arg_len = (int)(eol - bol);
2146 return error(_("could not parse '%.*s'"),
2147 (int)(end_of_object_name - bol), bol);
2149 item->commit = lookup_commit_reference(r, &commit_oid);
2150 return !item->commit;
2153 int sequencer_get_last_command(struct repository *r, enum replay_action *action)
2155 const char *todo_file, *bol;
2156 struct strbuf buf = STRBUF_INIT;
2159 todo_file = git_path_todo_file();
2160 if (strbuf_read_file(&buf, todo_file, 0) < 0) {
2161 if (errno == ENOENT || errno == ENOTDIR)
2164 return error_errno("unable to open '%s'", todo_file);
2166 bol = buf.buf + strspn(buf.buf, " \t\r\n");
2167 if (is_command(TODO_PICK, &bol) && (*bol == ' ' || *bol == '\t'))
2168 *action = REPLAY_PICK;
2169 else if (is_command(TODO_REVERT, &bol) &&
2170 (*bol == ' ' || *bol == '\t'))
2171 *action = REPLAY_REVERT;
2175 strbuf_release(&buf);
2180 int todo_list_parse_insn_buffer(struct repository *r, char *buf,
2181 struct todo_list *todo_list)
2183 struct todo_item *item;
2184 char *p = buf, *next_p;
2185 int i, res = 0, fixup_okay = file_exists(rebase_path_done());
2187 todo_list->current = todo_list->nr = 0;
2189 for (i = 1; *p; i++, p = next_p) {
2190 char *eol = strchrnul(p, '\n');
2192 next_p = *eol ? eol + 1 /* skip LF */ : eol;
2194 if (p != eol && eol[-1] == '\r')
2195 eol--; /* strip Carriage Return */
2197 item = append_new_todo(todo_list);
2198 item->offset_in_buf = p - todo_list->buf.buf;
2199 if (parse_insn_line(r, item, buf, p, eol)) {
2200 res = error(_("invalid line %d: %.*s"),
2201 i, (int)(eol - p), p);
2202 item->command = TODO_COMMENT + 1;
2203 item->arg_offset = p - buf;
2204 item->arg_len = (int)(eol - p);
2205 item->commit = NULL;
2210 else if (is_fixup(item->command))
2211 return error(_("cannot '%s' without a previous commit"),
2212 command_to_string(item->command));
2213 else if (!is_noop(item->command))
2220 static int count_commands(struct todo_list *todo_list)
2224 for (i = 0; i < todo_list->nr; i++)
2225 if (todo_list->items[i].command != TODO_COMMENT)
2231 static int get_item_line_offset(struct todo_list *todo_list, int index)
2233 return index < todo_list->nr ?
2234 todo_list->items[index].offset_in_buf : todo_list->buf.len;
2237 static const char *get_item_line(struct todo_list *todo_list, int index)
2239 return todo_list->buf.buf + get_item_line_offset(todo_list, index);
2242 static int get_item_line_length(struct todo_list *todo_list, int index)
2244 return get_item_line_offset(todo_list, index + 1)
2245 - get_item_line_offset(todo_list, index);
2248 static ssize_t strbuf_read_file_or_whine(struct strbuf *sb, const char *path)
2253 fd = open(path, O_RDONLY);
2255 return error_errno(_("could not open '%s'"), path);
2256 len = strbuf_read(sb, fd, 0);
2259 return error(_("could not read '%s'."), path);
2263 static int have_finished_the_last_pick(void)
2265 struct strbuf buf = STRBUF_INIT;
2267 const char *todo_path = git_path_todo_file();
2270 if (strbuf_read_file(&buf, todo_path, 0) < 0) {
2271 if (errno == ENOENT) {
2274 error_errno("unable to open '%s'", todo_path);
2278 /* If there is only one line then we are done */
2279 eol = strchr(buf.buf, '\n');
2280 if (!eol || !eol[1])
2283 strbuf_release(&buf);
2288 void sequencer_post_commit_cleanup(struct repository *r, int verbose)
2290 struct replay_opts opts = REPLAY_OPTS_INIT;
2291 int need_cleanup = 0;
2293 if (file_exists(git_path_cherry_pick_head(r))) {
2294 if (!unlink(git_path_cherry_pick_head(r)) && verbose)
2295 warning(_("cancelling a cherry picking in progress"));
2296 opts.action = REPLAY_PICK;
2300 if (file_exists(git_path_revert_head(r))) {
2301 if (!unlink(git_path_revert_head(r)) && verbose)
2302 warning(_("cancelling a revert in progress"));
2303 opts.action = REPLAY_REVERT;
2310 if (!have_finished_the_last_pick())
2313 sequencer_remove_state(&opts);
2316 static void todo_list_write_total_nr(struct todo_list *todo_list)
2318 FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w");
2321 fprintf(f, "%d\n", todo_list->total_nr);
2326 static int read_populate_todo(struct repository *r,
2327 struct todo_list *todo_list,
2328 struct replay_opts *opts)
2331 const char *todo_file = get_todo_path(opts);
2334 strbuf_reset(&todo_list->buf);
2335 if (strbuf_read_file_or_whine(&todo_list->buf, todo_file) < 0)
2338 res = stat(todo_file, &st);
2340 return error(_("could not stat '%s'"), todo_file);
2341 fill_stat_data(&todo_list->stat, &st);
2343 res = todo_list_parse_insn_buffer(r, todo_list->buf.buf, todo_list);
2345 if (is_rebase_i(opts))
2346 return error(_("please fix this using "
2347 "'git rebase --edit-todo'."));
2348 return error(_("unusable instruction sheet: '%s'"), todo_file);
2351 if (!todo_list->nr &&
2352 (!is_rebase_i(opts) || !file_exists(rebase_path_done())))
2353 return error(_("no commits parsed."));
2355 if (!is_rebase_i(opts)) {
2356 enum todo_command valid =
2357 opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
2360 for (i = 0; i < todo_list->nr; i++)
2361 if (valid == todo_list->items[i].command)
2363 else if (valid == TODO_PICK)
2364 return error(_("cannot cherry-pick during a revert."));
2366 return error(_("cannot revert during a cherry-pick."));
2369 if (is_rebase_i(opts)) {
2370 struct todo_list done = TODO_LIST_INIT;
2372 if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 &&
2373 !todo_list_parse_insn_buffer(r, done.buf.buf, &done))
2374 todo_list->done_nr = count_commands(&done);
2376 todo_list->done_nr = 0;
2378 todo_list->total_nr = todo_list->done_nr
2379 + count_commands(todo_list);
2380 todo_list_release(&done);
2382 todo_list_write_total_nr(todo_list);
2388 static int git_config_string_dup(char **dest,
2389 const char *var, const char *value)
2392 return config_error_nonbool(var);
2394 *dest = xstrdup(value);
2398 static int populate_opts_cb(const char *key, const char *value, void *data)
2400 struct replay_opts *opts = data;
2405 else if (!strcmp(key, "options.no-commit"))
2406 opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
2407 else if (!strcmp(key, "options.edit"))
2408 opts->edit = git_config_bool_or_int(key, value, &error_flag);
2409 else if (!strcmp(key, "options.allow-empty"))
2411 git_config_bool_or_int(key, value, &error_flag);
2412 else if (!strcmp(key, "options.allow-empty-message"))
2413 opts->allow_empty_message =
2414 git_config_bool_or_int(key, value, &error_flag);
2415 else if (!strcmp(key, "options.keep-redundant-commits"))
2416 opts->keep_redundant_commits =
2417 git_config_bool_or_int(key, value, &error_flag);
2418 else if (!strcmp(key, "options.signoff"))
2419 opts->signoff = git_config_bool_or_int(key, value, &error_flag);
2420 else if (!strcmp(key, "options.record-origin"))
2421 opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
2422 else if (!strcmp(key, "options.allow-ff"))
2423 opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
2424 else if (!strcmp(key, "options.mainline"))
2425 opts->mainline = git_config_int(key, value);
2426 else if (!strcmp(key, "options.strategy"))
2427 git_config_string_dup(&opts->strategy, key, value);
2428 else if (!strcmp(key, "options.gpg-sign"))
2429 git_config_string_dup(&opts->gpg_sign, key, value);
2430 else if (!strcmp(key, "options.strategy-option")) {
2431 ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
2432 opts->xopts[opts->xopts_nr++] = xstrdup(value);
2433 } else if (!strcmp(key, "options.allow-rerere-auto"))
2434 opts->allow_rerere_auto =
2435 git_config_bool_or_int(key, value, &error_flag) ?
2436 RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE;
2437 else if (!strcmp(key, "options.default-msg-cleanup")) {
2438 opts->explicit_cleanup = 1;
2439 opts->default_msg_cleanup = get_cleanup_mode(value, 1);
2441 return error(_("invalid key: %s"), key);
2444 return error(_("invalid value for %s: %s"), key, value);
2449 void parse_strategy_opts(struct replay_opts *opts, char *raw_opts)
2452 char *strategy_opts_string = raw_opts;
2454 if (*strategy_opts_string == ' ')
2455 strategy_opts_string++;
2457 opts->xopts_nr = split_cmdline(strategy_opts_string,
2458 (const char ***)&opts->xopts);
2459 for (i = 0; i < opts->xopts_nr; i++) {
2460 const char *arg = opts->xopts[i];
2462 skip_prefix(arg, "--", &arg);
2463 opts->xopts[i] = xstrdup(arg);
2467 static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf)
2470 if (!read_oneliner(buf, rebase_path_strategy(), 0))
2472 opts->strategy = strbuf_detach(buf, NULL);
2473 if (!read_oneliner(buf, rebase_path_strategy_opts(), 0))
2476 parse_strategy_opts(opts, buf->buf);
2479 static int read_populate_opts(struct replay_opts *opts)
2481 if (is_rebase_i(opts)) {
2482 struct strbuf buf = STRBUF_INIT;
2484 if (read_oneliner(&buf, rebase_path_gpg_sign_opt(), 1)) {
2485 if (!starts_with(buf.buf, "-S"))
2488 free(opts->gpg_sign);
2489 opts->gpg_sign = xstrdup(buf.buf + 2);
2494 if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(), 1)) {
2495 if (!strcmp(buf.buf, "--rerere-autoupdate"))
2496 opts->allow_rerere_auto = RERERE_AUTOUPDATE;
2497 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
2498 opts->allow_rerere_auto = RERERE_NOAUTOUPDATE;
2502 if (file_exists(rebase_path_verbose()))
2505 if (file_exists(rebase_path_quiet()))
2508 if (file_exists(rebase_path_signoff())) {
2513 if (file_exists(rebase_path_reschedule_failed_exec()))
2514 opts->reschedule_failed_exec = 1;
2516 if (file_exists(rebase_path_drop_redundant_commits()))
2517 opts->drop_redundant_commits = 1;
2519 if (file_exists(rebase_path_keep_redundant_commits()))
2520 opts->keep_redundant_commits = 1;
2522 read_strategy_opts(opts, &buf);
2523 strbuf_release(&buf);
2525 if (read_oneliner(&opts->current_fixups,
2526 rebase_path_current_fixups(), 1)) {
2527 const char *p = opts->current_fixups.buf;
2528 opts->current_fixup_count = 1;
2529 while ((p = strchr(p, '\n'))) {
2530 opts->current_fixup_count++;
2535 if (read_oneliner(&buf, rebase_path_squash_onto(), 0)) {
2536 if (get_oid_hex(buf.buf, &opts->squash_onto) < 0)
2537 return error(_("unusable squash-onto"));
2538 opts->have_squash_onto = 1;
2544 if (!file_exists(git_path_opts_file()))
2547 * The function git_parse_source(), called from git_config_from_file(),
2548 * may die() in case of a syntactically incorrect file. We do not care
2549 * about this case, though, because we wrote that file ourselves, so we
2550 * are pretty certain that it is syntactically correct.
2552 if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
2553 return error(_("malformed options sheet: '%s'"),
2554 git_path_opts_file());
2558 static void write_strategy_opts(struct replay_opts *opts)
2561 struct strbuf buf = STRBUF_INIT;
2563 for (i = 0; i < opts->xopts_nr; ++i)
2564 strbuf_addf(&buf, " --%s", opts->xopts[i]);
2566 write_file(rebase_path_strategy_opts(), "%s\n", buf.buf);
2567 strbuf_release(&buf);
2570 int write_basic_state(struct replay_opts *opts, const char *head_name,
2571 struct commit *onto, const char *orig_head)
2574 write_file(rebase_path_head_name(), "%s\n", head_name);
2576 write_file(rebase_path_onto(), "%s\n",
2577 oid_to_hex(&onto->object.oid));
2579 write_file(rebase_path_orig_head(), "%s\n", orig_head);
2582 write_file(rebase_path_quiet(), "%s", "");
2584 write_file(rebase_path_verbose(), "%s", "");
2586 write_file(rebase_path_strategy(), "%s\n", opts->strategy);
2587 if (opts->xopts_nr > 0)
2588 write_strategy_opts(opts);
2590 if (opts->allow_rerere_auto == RERERE_AUTOUPDATE)
2591 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
2592 else if (opts->allow_rerere_auto == RERERE_NOAUTOUPDATE)
2593 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
2596 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts->gpg_sign);
2598 write_file(rebase_path_signoff(), "--signoff\n");
2599 if (opts->drop_redundant_commits)
2600 write_file(rebase_path_drop_redundant_commits(), "%s", "");
2601 if (opts->keep_redundant_commits)
2602 write_file(rebase_path_keep_redundant_commits(), "%s", "");
2603 if (opts->reschedule_failed_exec)
2604 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
2609 static int walk_revs_populate_todo(struct todo_list *todo_list,
2610 struct replay_opts *opts)
2612 enum todo_command command = opts->action == REPLAY_PICK ?
2613 TODO_PICK : TODO_REVERT;
2614 const char *command_string = todo_command_info[command].str;
2615 const char *encoding;
2616 struct commit *commit;
2618 if (prepare_revs(opts))
2621 encoding = get_log_output_encoding();
2623 while ((commit = get_revision(opts->revs))) {
2624 struct todo_item *item = append_new_todo(todo_list);
2625 const char *commit_buffer = logmsg_reencode(commit, NULL, encoding);
2626 const char *subject;
2629 item->command = command;
2630 item->commit = commit;
2631 item->arg_offset = 0;
2633 item->offset_in_buf = todo_list->buf.len;
2634 subject_len = find_commit_subject(commit_buffer, &subject);
2635 strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
2636 short_commit_name(commit), subject_len, subject);
2637 unuse_commit_buffer(commit, commit_buffer);
2641 return error(_("empty commit set passed"));
2646 static int create_seq_dir(struct repository *r)
2648 enum replay_action action;
2649 const char *in_progress_error = NULL;
2650 const char *in_progress_advice = NULL;
2651 unsigned int advise_skip = file_exists(git_path_revert_head(r)) ||
2652 file_exists(git_path_cherry_pick_head(r));
2654 if (!sequencer_get_last_command(r, &action)) {
2657 in_progress_error = _("revert is already in progress");
2658 in_progress_advice =
2659 _("try \"git revert (--continue | %s--abort | --quit)\"");
2662 in_progress_error = _("cherry-pick is already in progress");
2663 in_progress_advice =
2664 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
2667 BUG("unexpected action in create_seq_dir");
2670 if (in_progress_error) {
2671 error("%s", in_progress_error);
2672 if (advice_sequencer_in_use)
2673 advise(in_progress_advice,
2674 advise_skip ? "--skip | " : "");
2677 if (mkdir(git_path_seq_dir(), 0777) < 0)
2678 return error_errno(_("could not create sequencer directory '%s'"),
2679 git_path_seq_dir());
2684 static int save_head(const char *head)
2686 struct lock_file head_lock = LOCK_INIT;
2687 struct strbuf buf = STRBUF_INIT;
2691 fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0);
2693 return error_errno(_("could not lock HEAD"));
2694 strbuf_addf(&buf, "%s\n", head);
2695 written = write_in_full(fd, buf.buf, buf.len);
2696 strbuf_release(&buf);
2698 error_errno(_("could not write to '%s'"), git_path_head_file());
2699 rollback_lock_file(&head_lock);
2702 if (commit_lock_file(&head_lock) < 0)
2703 return error(_("failed to finalize '%s'"), git_path_head_file());
2707 static int rollback_is_safe(void)
2709 struct strbuf sb = STRBUF_INIT;
2710 struct object_id expected_head, actual_head;
2712 if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) {
2714 if (get_oid_hex(sb.buf, &expected_head)) {
2715 strbuf_release(&sb);
2716 die(_("could not parse %s"), git_path_abort_safety_file());
2718 strbuf_release(&sb);
2720 else if (errno == ENOENT)
2721 oidclr(&expected_head);
2723 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
2725 if (get_oid("HEAD", &actual_head))
2726 oidclr(&actual_head);
2728 return oideq(&actual_head, &expected_head);
2731 static int reset_merge(const struct object_id *oid)
2734 struct argv_array argv = ARGV_ARRAY_INIT;
2736 argv_array_pushl(&argv, "reset", "--merge", NULL);
2738 if (!is_null_oid(oid))
2739 argv_array_push(&argv, oid_to_hex(oid));
2741 ret = run_command_v_opt(argv.argv, RUN_GIT_CMD);
2742 argv_array_clear(&argv);
2747 static int rollback_single_pick(struct repository *r)
2749 struct object_id head_oid;
2751 if (!file_exists(git_path_cherry_pick_head(r)) &&
2752 !file_exists(git_path_revert_head(r)))
2753 return error(_("no cherry-pick or revert in progress"));
2754 if (read_ref_full("HEAD", 0, &head_oid, NULL))
2755 return error(_("cannot resolve HEAD"));
2756 if (is_null_oid(&head_oid))
2757 return error(_("cannot abort from a branch yet to be born"));
2758 return reset_merge(&head_oid);
2761 static int skip_single_pick(void)
2763 struct object_id head;
2765 if (read_ref_full("HEAD", 0, &head, NULL))
2766 return error(_("cannot resolve HEAD"));
2767 return reset_merge(&head);
2770 int sequencer_rollback(struct repository *r, struct replay_opts *opts)
2773 struct object_id oid;
2774 struct strbuf buf = STRBUF_INIT;
2777 f = fopen(git_path_head_file(), "r");
2778 if (!f && errno == ENOENT) {
2780 * There is no multiple-cherry-pick in progress.
2781 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
2782 * a single-cherry-pick in progress, abort that.
2784 return rollback_single_pick(r);
2787 return error_errno(_("cannot open '%s'"), git_path_head_file());
2788 if (strbuf_getline_lf(&buf, f)) {
2789 error(_("cannot read '%s': %s"), git_path_head_file(),
2790 ferror(f) ? strerror(errno) : _("unexpected end of file"));
2795 if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') {
2796 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
2797 git_path_head_file());
2800 if (is_null_oid(&oid)) {
2801 error(_("cannot abort from a branch yet to be born"));
2805 if (!rollback_is_safe()) {
2806 /* Do not error, just do not rollback */
2807 warning(_("You seem to have moved HEAD. "
2808 "Not rewinding, check your HEAD!"));
2810 if (reset_merge(&oid))
2812 strbuf_release(&buf);
2813 return sequencer_remove_state(opts);
2815 strbuf_release(&buf);
2819 int sequencer_skip(struct repository *r, struct replay_opts *opts)
2821 enum replay_action action = -1;
2822 sequencer_get_last_command(r, &action);
2825 * Check whether the subcommand requested to skip the commit is actually
2826 * in progress and that it's safe to skip the commit.
2828 * opts->action tells us which subcommand requested to skip the commit.
2829 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
2830 * action is in progress and we can skip the commit.
2832 * Otherwise we check that the last instruction was related to the
2833 * particular subcommand we're trying to execute and barf if that's not
2836 * Finally we check that the rollback is "safe", i.e., has the HEAD
2837 * moved? In this case, it doesn't make sense to "reset the merge" and
2838 * "skip the commit" as the user already handled this by committing. But
2839 * we'd not want to barf here, instead give advice on how to proceed. We
2840 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
2841 * it gets removed when the user commits, so if it still exists we're
2842 * sure the user can't have committed before.
2844 switch (opts->action) {
2846 if (!file_exists(git_path_revert_head(r))) {
2847 if (action != REPLAY_REVERT)
2848 return error(_("no revert in progress"));
2849 if (!rollback_is_safe())
2854 if (!file_exists(git_path_cherry_pick_head(r))) {
2855 if (action != REPLAY_PICK)
2856 return error(_("no cherry-pick in progress"));
2857 if (!rollback_is_safe())
2862 BUG("unexpected action in sequencer_skip");
2865 if (skip_single_pick())
2866 return error(_("failed to skip the commit"));
2867 if (!is_directory(git_path_seq_dir()))
2870 return sequencer_continue(r, opts);
2873 error(_("there is nothing to skip"));
2875 if (advice_resolve_conflict) {
2876 advise(_("have you committed already?\n"
2877 "try \"git %s --continue\""),
2878 action == REPLAY_REVERT ? "revert" : "cherry-pick");
2883 static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
2885 struct lock_file todo_lock = LOCK_INIT;
2886 const char *todo_path = get_todo_path(opts);
2887 int next = todo_list->current, offset, fd;
2890 * rebase -i writes "git-rebase-todo" without the currently executing
2891 * command, appending it to "done" instead.
2893 if (is_rebase_i(opts))
2896 fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
2898 return error_errno(_("could not lock '%s'"), todo_path);
2899 offset = get_item_line_offset(todo_list, next);
2900 if (write_in_full(fd, todo_list->buf.buf + offset,
2901 todo_list->buf.len - offset) < 0)
2902 return error_errno(_("could not write to '%s'"), todo_path);
2903 if (commit_lock_file(&todo_lock) < 0)
2904 return error(_("failed to finalize '%s'"), todo_path);
2906 if (is_rebase_i(opts) && next > 0) {
2907 const char *done = rebase_path_done();
2908 int fd = open(done, O_CREAT | O_WRONLY | O_APPEND, 0666);
2913 if (write_in_full(fd, get_item_line(todo_list, next - 1),
2914 get_item_line_length(todo_list, next - 1))
2916 ret = error_errno(_("could not write to '%s'"), done);
2918 ret = error_errno(_("failed to finalize '%s'"), done);
2924 static int save_opts(struct replay_opts *opts)
2926 const char *opts_file = git_path_opts_file();
2929 if (opts->no_commit)
2930 res |= git_config_set_in_file_gently(opts_file,
2931 "options.no-commit", "true");
2933 res |= git_config_set_in_file_gently(opts_file,
2934 "options.edit", "true");
2935 if (opts->allow_empty)
2936 res |= git_config_set_in_file_gently(opts_file,
2937 "options.allow-empty", "true");
2938 if (opts->allow_empty_message)
2939 res |= git_config_set_in_file_gently(opts_file,
2940 "options.allow-empty-message", "true");
2941 if (opts->keep_redundant_commits)
2942 res |= git_config_set_in_file_gently(opts_file,
2943 "options.keep-redundant-commits", "true");
2945 res |= git_config_set_in_file_gently(opts_file,
2946 "options.signoff", "true");
2947 if (opts->record_origin)
2948 res |= git_config_set_in_file_gently(opts_file,
2949 "options.record-origin", "true");
2951 res |= git_config_set_in_file_gently(opts_file,
2952 "options.allow-ff", "true");
2953 if (opts->mainline) {
2954 struct strbuf buf = STRBUF_INIT;
2955 strbuf_addf(&buf, "%d", opts->mainline);
2956 res |= git_config_set_in_file_gently(opts_file,
2957 "options.mainline", buf.buf);
2958 strbuf_release(&buf);
2961 res |= git_config_set_in_file_gently(opts_file,
2962 "options.strategy", opts->strategy);
2964 res |= git_config_set_in_file_gently(opts_file,
2965 "options.gpg-sign", opts->gpg_sign);
2968 for (i = 0; i < opts->xopts_nr; i++)
2969 res |= git_config_set_multivar_in_file_gently(opts_file,
2970 "options.strategy-option",
2971 opts->xopts[i], "^$", 0);
2973 if (opts->allow_rerere_auto)
2974 res |= git_config_set_in_file_gently(opts_file,
2975 "options.allow-rerere-auto",
2976 opts->allow_rerere_auto == RERERE_AUTOUPDATE ?
2979 if (opts->explicit_cleanup)
2980 res |= git_config_set_in_file_gently(opts_file,
2981 "options.default-msg-cleanup",
2982 describe_cleanup_mode(opts->default_msg_cleanup));
2986 static int make_patch(struct repository *r,
2987 struct commit *commit,
2988 struct replay_opts *opts)
2990 struct strbuf buf = STRBUF_INIT;
2991 struct rev_info log_tree_opt;
2992 const char *subject, *p;
2995 p = short_commit_name(commit);
2996 if (write_message(p, strlen(p), rebase_path_stopped_sha(), 1) < 0)
2998 if (update_ref("rebase", "REBASE_HEAD", &commit->object.oid,
2999 NULL, REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
3000 res |= error(_("could not update %s"), "REBASE_HEAD");
3002 strbuf_addf(&buf, "%s/patch", get_dir(opts));
3003 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
3004 repo_init_revisions(r, &log_tree_opt, NULL);
3005 log_tree_opt.abbrev = 0;
3006 log_tree_opt.diff = 1;
3007 log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH;
3008 log_tree_opt.disable_stdin = 1;
3009 log_tree_opt.no_commit_id = 1;
3010 log_tree_opt.diffopt.file = fopen(buf.buf, "w");
3011 log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER;
3012 if (!log_tree_opt.diffopt.file)
3013 res |= error_errno(_("could not open '%s'"), buf.buf);
3015 res |= log_tree_commit(&log_tree_opt, commit);
3016 fclose(log_tree_opt.diffopt.file);
3020 strbuf_addf(&buf, "%s/message", get_dir(opts));
3021 if (!file_exists(buf.buf)) {
3022 const char *encoding = get_commit_output_encoding();
3023 const char *commit_buffer = logmsg_reencode(commit, NULL, encoding);
3024 find_commit_subject(commit_buffer, &subject);
3025 res |= write_message(subject, strlen(subject), buf.buf, 1);
3026 unuse_commit_buffer(commit, commit_buffer);
3028 strbuf_release(&buf);
3033 static int intend_to_amend(void)
3035 struct object_id head;
3038 if (get_oid("HEAD", &head))
3039 return error(_("cannot read HEAD"));
3041 p = oid_to_hex(&head);
3042 return write_message(p, strlen(p), rebase_path_amend(), 1);
3045 static int error_with_patch(struct repository *r,
3046 struct commit *commit,
3047 const char *subject, int subject_len,
3048 struct replay_opts *opts,
3049 int exit_code, int to_amend)
3052 if (make_patch(r, commit, opts))
3054 } else if (copy_file(rebase_path_message(),
3055 git_path_merge_msg(r), 0666))
3056 return error(_("unable to copy '%s' to '%s'"),
3057 git_path_merge_msg(r), rebase_path_message());
3060 if (intend_to_amend())
3064 _("You can amend the commit now, with\n"
3066 " git commit --amend %s\n"
3068 "Once you are satisfied with your changes, run\n"
3070 " git rebase --continue\n"),
3071 gpg_sign_opt_quoted(opts));
3072 } else if (exit_code) {
3074 fprintf_ln(stderr, _("Could not apply %s... %.*s"),
3075 short_commit_name(commit), subject_len, subject);
3078 * We don't have the hash of the parent so
3079 * just print the line from the todo file.
3081 fprintf_ln(stderr, _("Could not merge %.*s"),
3082 subject_len, subject);
3088 static int error_failed_squash(struct repository *r,
3089 struct commit *commit,
3090 struct replay_opts *opts,
3092 const char *subject)
3094 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3095 return error(_("could not copy '%s' to '%s'"),
3096 rebase_path_squash_msg(), rebase_path_message());
3097 unlink(git_path_merge_msg(r));
3098 if (copy_file(git_path_merge_msg(r), rebase_path_message(), 0666))
3099 return error(_("could not copy '%s' to '%s'"),
3100 rebase_path_message(),
3101 git_path_merge_msg(r));
3102 return error_with_patch(r, commit, subject, subject_len, opts, 1, 0);
3105 static int do_exec(struct repository *r, const char *command_line)
3107 struct argv_array child_env = ARGV_ARRAY_INIT;
3108 const char *child_argv[] = { NULL, NULL };
3111 fprintf(stderr, "Executing: %s\n", command_line);
3112 child_argv[0] = command_line;
3113 argv_array_pushf(&child_env, "GIT_DIR=%s", absolute_path(get_git_dir()));
3114 argv_array_pushf(&child_env, "GIT_WORK_TREE=%s",
3115 absolute_path(get_git_work_tree()));
3116 status = run_command_v_opt_cd_env(child_argv, RUN_USING_SHELL, NULL,
3119 /* force re-reading of the cache */
3120 if (discard_index(r->index) < 0 || repo_read_index(r) < 0)
3121 return error(_("could not read index"));
3123 dirty = require_clean_work_tree(r, "rebase", NULL, 1, 1);
3126 warning(_("execution failed: %s\n%s"
3127 "You can fix the problem, and then run\n"
3129 " git rebase --continue\n"
3132 dirty ? N_("and made changes to the index and/or the "
3133 "working tree\n") : "");
3135 /* command not found */
3138 warning(_("execution succeeded: %s\nbut "
3139 "left changes to the index and/or the working tree\n"
3140 "Commit or stash your changes, and then run\n"
3142 " git rebase --continue\n"
3143 "\n"), command_line);
3147 argv_array_clear(&child_env);
3152 static int safe_append(const char *filename, const char *fmt, ...)
3155 struct lock_file lock = LOCK_INIT;
3156 int fd = hold_lock_file_for_update(&lock, filename,
3157 LOCK_REPORT_ON_ERROR);
3158 struct strbuf buf = STRBUF_INIT;
3163 if (strbuf_read_file(&buf, filename, 0) < 0 && errno != ENOENT) {
3164 error_errno(_("could not read '%s'"), filename);
3165 rollback_lock_file(&lock);
3168 strbuf_complete(&buf, '\n');
3170 strbuf_vaddf(&buf, fmt, ap);
3173 if (write_in_full(fd, buf.buf, buf.len) < 0) {
3174 error_errno(_("could not write to '%s'"), filename);
3175 strbuf_release(&buf);
3176 rollback_lock_file(&lock);
3179 if (commit_lock_file(&lock) < 0) {
3180 strbuf_release(&buf);
3181 rollback_lock_file(&lock);
3182 return error(_("failed to finalize '%s'"), filename);
3185 strbuf_release(&buf);
3189 static int do_label(struct repository *r, const char *name, int len)
3191 struct ref_store *refs = get_main_ref_store(r);
3192 struct ref_transaction *transaction;
3193 struct strbuf ref_name = STRBUF_INIT, err = STRBUF_INIT;
3194 struct strbuf msg = STRBUF_INIT;
3196 struct object_id head_oid;
3198 if (len == 1 && *name == '#')
3199 return error(_("illegal label name: '%.*s'"), len, name);
3201 strbuf_addf(&ref_name, "refs/rewritten/%.*s", len, name);
3202 strbuf_addf(&msg, "rebase -i (label) '%.*s'", len, name);
3204 transaction = ref_store_transaction_begin(refs, &err);
3206 error("%s", err.buf);
3208 } else if (get_oid("HEAD", &head_oid)) {
3209 error(_("could not read HEAD"));
3211 } else if (ref_transaction_update(transaction, ref_name.buf, &head_oid,
3212 NULL, 0, msg.buf, &err) < 0 ||
3213 ref_transaction_commit(transaction, &err)) {
3214 error("%s", err.buf);
3217 ref_transaction_free(transaction);
3218 strbuf_release(&err);
3219 strbuf_release(&msg);
3222 ret = safe_append(rebase_path_refs_to_delete(),
3223 "%s\n", ref_name.buf);
3224 strbuf_release(&ref_name);
3229 static const char *reflog_message(struct replay_opts *opts,
3230 const char *sub_action, const char *fmt, ...);
3232 static int do_reset(struct repository *r,
3233 const char *name, int len,
3234 struct replay_opts *opts)
3236 struct strbuf ref_name = STRBUF_INIT;
3237 struct object_id oid;
3238 struct lock_file lock = LOCK_INIT;
3239 struct tree_desc desc;
3241 struct unpack_trees_options unpack_tree_opts;
3244 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0)
3247 if (len == 10 && !strncmp("[new root]", name, len)) {
3248 if (!opts->have_squash_onto) {
3250 if (commit_tree("", 0, the_hash_algo->empty_tree,
3251 NULL, &opts->squash_onto,
3253 return error(_("writing fake root commit"));
3254 opts->have_squash_onto = 1;
3255 hex = oid_to_hex(&opts->squash_onto);
3256 if (write_message(hex, strlen(hex),
3257 rebase_path_squash_onto(), 0))
3258 return error(_("writing squash-onto"));
3260 oidcpy(&oid, &opts->squash_onto);
3264 /* Determine the length of the label */
3265 for (i = 0; i < len; i++)
3266 if (isspace(name[i]))
3270 strbuf_addf(&ref_name, "refs/rewritten/%.*s", len, name);
3271 if (get_oid(ref_name.buf, &oid) &&
3272 get_oid(ref_name.buf + strlen("refs/rewritten/"), &oid)) {
3273 error(_("could not read '%s'"), ref_name.buf);
3274 rollback_lock_file(&lock);
3275 strbuf_release(&ref_name);
3280 memset(&unpack_tree_opts, 0, sizeof(unpack_tree_opts));
3281 setup_unpack_trees_porcelain(&unpack_tree_opts, "reset");
3282 unpack_tree_opts.head_idx = 1;
3283 unpack_tree_opts.src_index = r->index;
3284 unpack_tree_opts.dst_index = r->index;
3285 unpack_tree_opts.fn = oneway_merge;
3286 unpack_tree_opts.merge = 1;
3287 unpack_tree_opts.update = 1;
3289 if (repo_read_index_unmerged(r)) {
3290 rollback_lock_file(&lock);
3291 strbuf_release(&ref_name);
3292 return error_resolve_conflict(_(action_name(opts)));
3295 if (!fill_tree_descriptor(r, &desc, &oid)) {
3296 error(_("failed to find tree of %s"), oid_to_hex(&oid));
3297 rollback_lock_file(&lock);
3298 free((void *)desc.buffer);
3299 strbuf_release(&ref_name);
3303 if (unpack_trees(1, &desc, &unpack_tree_opts)) {
3304 rollback_lock_file(&lock);
3305 free((void *)desc.buffer);
3306 strbuf_release(&ref_name);
3310 tree = parse_tree_indirect(&oid);
3311 prime_cache_tree(r, r->index, tree);
3313 if (write_locked_index(r->index, &lock, COMMIT_LOCK) < 0)
3314 ret = error(_("could not write index"));
3315 free((void *)desc.buffer);
3318 ret = update_ref(reflog_message(opts, "reset", "'%.*s'",
3319 len, name), "HEAD", &oid,
3320 NULL, 0, UPDATE_REFS_MSG_ON_ERR);
3322 strbuf_release(&ref_name);
3326 static struct commit *lookup_label(const char *label, int len,
3329 struct commit *commit;
3332 strbuf_addf(buf, "refs/rewritten/%.*s", len, label);
3333 commit = lookup_commit_reference_by_name(buf->buf);
3335 /* fall back to non-rewritten ref or commit */
3336 strbuf_splice(buf, 0, strlen("refs/rewritten/"), "", 0);
3337 commit = lookup_commit_reference_by_name(buf->buf);
3341 error(_("could not resolve '%s'"), buf->buf);
3346 static int do_merge(struct repository *r,
3347 struct commit *commit,
3348 const char *arg, int arg_len,
3349 int flags, struct replay_opts *opts)
3351 int run_commit_flags = (flags & TODO_EDIT_MERGE_MSG) ?
3352 EDIT_MSG | VERIFY_MSG : 0;
3353 struct strbuf ref_name = STRBUF_INIT;
3354 struct commit *head_commit, *merge_commit, *i;
3355 struct commit_list *bases, *j, *reversed = NULL;
3356 struct commit_list *to_merge = NULL, **tail = &to_merge;
3357 const char *strategy = !opts->xopts_nr &&
3358 (!opts->strategy || !strcmp(opts->strategy, "recursive")) ?
3359 NULL : opts->strategy;
3360 struct merge_options o;
3361 int merge_arg_len, oneline_offset, can_fast_forward, ret, k;
3362 static struct lock_file lock;
3365 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0) {
3370 head_commit = lookup_commit_reference_by_name("HEAD");
3372 ret = error(_("cannot merge without a current revision"));
3377 * For octopus merges, the arg starts with the list of revisions to be
3378 * merged. The list is optionally followed by '#' and the oneline.
3380 merge_arg_len = oneline_offset = arg_len;
3381 for (p = arg; p - arg < arg_len; p += strspn(p, " \t\n")) {
3384 if (*p == '#' && (!p[1] || isspace(p[1]))) {
3385 p += 1 + strspn(p + 1, " \t\n");
3386 oneline_offset = p - arg;
3389 k = strcspn(p, " \t\n");
3392 merge_commit = lookup_label(p, k, &ref_name);
3393 if (!merge_commit) {
3394 ret = error(_("unable to parse '%.*s'"), k, p);
3397 tail = &commit_list_insert(merge_commit, tail)->next;
3399 merge_arg_len = p - arg;
3403 ret = error(_("nothing to merge: '%.*s'"), arg_len, arg);
3407 if (opts->have_squash_onto &&
3408 oideq(&head_commit->object.oid, &opts->squash_onto)) {
3410 * When the user tells us to "merge" something into a
3411 * "[new root]", let's simply fast-forward to the merge head.
3413 rollback_lock_file(&lock);
3415 ret = error(_("octopus merge cannot be executed on "
3416 "top of a [new root]"));
3418 ret = fast_forward_to(r, &to_merge->item->object.oid,
3419 &head_commit->object.oid, 0,
3425 const char *encoding = get_commit_output_encoding();
3426 const char *message = logmsg_reencode(commit, NULL, encoding);
3431 ret = error(_("could not get commit message of '%s'"),
3432 oid_to_hex(&commit->object.oid));
3435 write_author_script(message);
3436 find_commit_subject(message, &body);
3438 ret = write_message(body, len, git_path_merge_msg(r), 0);
3439 unuse_commit_buffer(commit, message);
3441 error_errno(_("could not write '%s'"),
3442 git_path_merge_msg(r));
3446 struct strbuf buf = STRBUF_INIT;
3449 strbuf_addf(&buf, "author %s", git_author_info(0));
3450 write_author_script(buf.buf);
3453 if (oneline_offset < arg_len) {
3454 p = arg + oneline_offset;
3455 len = arg_len - oneline_offset;
3457 strbuf_addf(&buf, "Merge %s '%.*s'",
3458 to_merge->next ? "branches" : "branch",
3459 merge_arg_len, arg);
3464 ret = write_message(p, len, git_path_merge_msg(r), 0);
3465 strbuf_release(&buf);
3467 error_errno(_("could not write '%s'"),
3468 git_path_merge_msg(r));
3474 * If HEAD is not identical to the first parent of the original merge
3475 * commit, we cannot fast-forward.
3477 can_fast_forward = opts->allow_ff && commit && commit->parents &&
3478 oideq(&commit->parents->item->object.oid,
3479 &head_commit->object.oid);
3482 * If any merge head is different from the original one, we cannot
3485 if (can_fast_forward) {
3486 struct commit_list *p = commit->parents->next;
3488 for (j = to_merge; j && p; j = j->next, p = p->next)
3489 if (!oideq(&j->item->object.oid,
3490 &p->item->object.oid)) {
3491 can_fast_forward = 0;
3495 * If the number of merge heads differs from the original merge
3496 * commit, we cannot fast-forward.
3499 can_fast_forward = 0;
3502 if (can_fast_forward) {
3503 rollback_lock_file(&lock);
3504 ret = fast_forward_to(r, &commit->object.oid,
3505 &head_commit->object.oid, 0, opts);
3506 if (flags & TODO_EDIT_MERGE_MSG) {
3507 run_commit_flags |= AMEND_MSG;
3508 goto fast_forward_edit;
3513 if (strategy || to_merge->next) {
3515 struct child_process cmd = CHILD_PROCESS_INIT;
3517 if (read_env_script(&cmd.env_array)) {
3518 const char *gpg_opt = gpg_sign_opt_quoted(opts);
3520 ret = error(_(staged_changes_advice), gpg_opt, gpg_opt);
3525 argv_array_push(&cmd.args, "merge");
3526 argv_array_push(&cmd.args, "-s");
3528 argv_array_push(&cmd.args, "octopus");
3530 argv_array_push(&cmd.args, strategy);
3531 for (k = 0; k < opts->xopts_nr; k++)
3532 argv_array_pushf(&cmd.args,
3533 "-X%s", opts->xopts[k]);
3535 argv_array_push(&cmd.args, "--no-edit");
3536 argv_array_push(&cmd.args, "--no-ff");
3537 argv_array_push(&cmd.args, "--no-log");
3538 argv_array_push(&cmd.args, "--no-stat");
3539 argv_array_push(&cmd.args, "-F");
3540 argv_array_push(&cmd.args, git_path_merge_msg(r));
3542 argv_array_push(&cmd.args, opts->gpg_sign);
3544 /* Add the tips to be merged */
3545 for (j = to_merge; j; j = j->next)
3546 argv_array_push(&cmd.args,
3547 oid_to_hex(&j->item->object.oid));
3549 strbuf_release(&ref_name);
3550 unlink(git_path_cherry_pick_head(r));
3551 rollback_lock_file(&lock);
3553 rollback_lock_file(&lock);
3554 ret = run_command(&cmd);
3556 /* force re-reading of the cache */
3557 if (!ret && (discard_index(r->index) < 0 ||
3558 repo_read_index(r) < 0))
3559 ret = error(_("could not read index"));
3563 merge_commit = to_merge->item;
3564 bases = get_merge_bases(head_commit, merge_commit);
3565 if (bases && oideq(&merge_commit->object.oid,
3566 &bases->item->object.oid)) {
3568 /* skip merging an ancestor of HEAD */
3572 write_message(oid_to_hex(&merge_commit->object.oid), the_hash_algo->hexsz,
3573 git_path_merge_head(r), 0);
3574 write_message("no-ff", 5, git_path_merge_mode(r), 0);
3576 for (j = bases; j; j = j->next)
3577 commit_list_insert(j->item, &reversed);
3578 free_commit_list(bases);
3581 init_merge_options(&o, r);
3583 o.branch2 = ref_name.buf;
3584 o.buffer_output = 2;
3586 ret = merge_recursive(&o, head_commit, merge_commit, reversed, &i);
3588 fputs(o.obuf.buf, stdout);
3589 strbuf_release(&o.obuf);
3591 error(_("could not even attempt to merge '%.*s'"),
3592 merge_arg_len, arg);
3596 * The return value of merge_recursive() is 1 on clean, and 0 on
3599 * Let's reverse that, so that do_merge() returns 0 upon success and
3600 * 1 upon failed merge (keeping the return value -1 for the cases where
3601 * we will want to reschedule the `merge` command).
3605 if (r->index->cache_changed &&
3606 write_locked_index(r->index, &lock, COMMIT_LOCK)) {
3607 ret = error(_("merge: Unable to write new index file"));
3611 rollback_lock_file(&lock);
3613 repo_rerere(r, opts->allow_rerere_auto);
3616 * In case of problems, we now want to return a positive
3617 * value (a negative one would indicate that the `merge`
3618 * command needs to be rescheduled).
3621 ret = !!run_git_commit(r, git_path_merge_msg(r), opts,
3625 strbuf_release(&ref_name);
3626 rollback_lock_file(&lock);
3627 free_commit_list(to_merge);
3631 static int is_final_fixup(struct todo_list *todo_list)
3633 int i = todo_list->current;
3635 if (!is_fixup(todo_list->items[i].command))
3638 while (++i < todo_list->nr)
3639 if (is_fixup(todo_list->items[i].command))
3641 else if (!is_noop(todo_list->items[i].command))
3646 static enum todo_command peek_command(struct todo_list *todo_list, int offset)
3650 for (i = todo_list->current + offset; i < todo_list->nr; i++)
3651 if (!is_noop(todo_list->items[i].command))
3652 return todo_list->items[i].command;
3657 static int apply_autostash(struct replay_opts *opts)
3659 struct strbuf stash_sha1 = STRBUF_INIT;
3660 struct child_process child = CHILD_PROCESS_INIT;
3663 if (!read_oneliner(&stash_sha1, rebase_path_autostash(), 1)) {
3664 strbuf_release(&stash_sha1);
3667 strbuf_trim(&stash_sha1);
3670 child.no_stdout = 1;
3671 child.no_stderr = 1;
3672 argv_array_push(&child.args, "stash");
3673 argv_array_push(&child.args, "apply");
3674 argv_array_push(&child.args, stash_sha1.buf);
3675 if (!run_command(&child))
3676 fprintf(stderr, _("Applied autostash.\n"));
3678 struct child_process store = CHILD_PROCESS_INIT;
3681 argv_array_push(&store.args, "stash");
3682 argv_array_push(&store.args, "store");
3683 argv_array_push(&store.args, "-m");
3684 argv_array_push(&store.args, "autostash");
3685 argv_array_push(&store.args, "-q");
3686 argv_array_push(&store.args, stash_sha1.buf);
3687 if (run_command(&store))
3688 ret = error(_("cannot store %s"), stash_sha1.buf);
3691 _("Applying autostash resulted in conflicts.\n"
3692 "Your changes are safe in the stash.\n"
3693 "You can run \"git stash pop\" or"
3694 " \"git stash drop\" at any time.\n"));
3697 strbuf_release(&stash_sha1);
3701 static const char *reflog_message(struct replay_opts *opts,
3702 const char *sub_action, const char *fmt, ...)
3705 static struct strbuf buf = STRBUF_INIT;
3709 strbuf_addstr(&buf, action_name(opts));
3711 strbuf_addf(&buf, " (%s)", sub_action);
3713 strbuf_addstr(&buf, ": ");
3714 strbuf_vaddf(&buf, fmt, ap);
3721 static int run_git_checkout(struct repository *r, struct replay_opts *opts,
3722 const char *commit, const char *action)
3724 struct child_process cmd = CHILD_PROCESS_INIT;
3729 argv_array_push(&cmd.args, "checkout");
3730 argv_array_push(&cmd.args, commit);
3731 argv_array_pushf(&cmd.env_array, GIT_REFLOG_ACTION "=%s", action);
3734 ret = run_command(&cmd);
3736 ret = run_command_silent_on_success(&cmd);
3739 discard_index(r->index);
3744 int prepare_branch_to_be_rebased(struct repository *r, struct replay_opts *opts,
3749 if (commit && *commit) {
3750 action = reflog_message(opts, "start", "checkout %s", commit);
3751 if (run_git_checkout(r, opts, commit, action))
3752 return error(_("could not checkout %s"), commit);
3758 static int checkout_onto(struct repository *r, struct replay_opts *opts,
3759 const char *onto_name, const struct object_id *onto,
3760 const char *orig_head)
3762 struct object_id oid;
3763 const char *action = reflog_message(opts, "start", "checkout %s", onto_name);
3765 if (get_oid(orig_head, &oid))
3766 return error(_("%s: not a valid OID"), orig_head);
3768 if (run_git_checkout(r, opts, oid_to_hex(onto), action)) {
3769 apply_autostash(opts);
3770 sequencer_remove_state(opts);
3771 return error(_("could not detach HEAD"));
3774 return update_ref(NULL, "ORIG_HEAD", &oid, NULL, 0, UPDATE_REFS_MSG_ON_ERR);
3777 static int stopped_at_head(struct repository *r)
3779 struct object_id head;
3780 struct commit *commit;
3781 struct commit_message message;
3783 if (get_oid("HEAD", &head) ||
3784 !(commit = lookup_commit(r, &head)) ||
3785 parse_commit(commit) || get_message(commit, &message))
3786 fprintf(stderr, _("Stopped at HEAD\n"));
3788 fprintf(stderr, _("Stopped at %s\n"), message.label);
3789 free_message(commit, &message);
3795 static const char rescheduled_advice[] =
3796 N_("Could not execute the todo command\n"
3800 "It has been rescheduled; To edit the command before continuing, please\n"
3801 "edit the todo list first:\n"
3803 " git rebase --edit-todo\n"
3804 " git rebase --continue\n");
3806 static int pick_commits(struct repository *r,
3807 struct todo_list *todo_list,
3808 struct replay_opts *opts)
3810 int res = 0, reschedule = 0;
3812 setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
3814 assert(!(opts->signoff || opts->no_commit ||
3815 opts->record_origin || opts->edit));
3816 if (read_and_refresh_cache(r, opts))
3819 while (todo_list->current < todo_list->nr) {
3820 struct todo_item *item = todo_list->items + todo_list->current;
3821 const char *arg = todo_item_get_arg(todo_list, item);
3824 if (save_todo(todo_list, opts))
3826 if (is_rebase_i(opts)) {
3827 if (item->command != TODO_COMMENT) {
3828 FILE *f = fopen(rebase_path_msgnum(), "w");
3830 todo_list->done_nr++;
3833 fprintf(f, "%d\n", todo_list->done_nr);
3837 fprintf(stderr, "Rebasing (%d/%d)%s",
3839 todo_list->total_nr,
3840 opts->verbose ? "\n" : "\r");
3842 unlink(rebase_path_message());
3843 unlink(rebase_path_author_script());
3844 unlink(rebase_path_stopped_sha());
3845 unlink(rebase_path_amend());
3846 unlink(git_path_merge_head(r));
3847 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
3849 if (item->command == TODO_BREAK) {
3852 return stopped_at_head(r);
3855 if (item->command <= TODO_SQUASH) {
3856 if (is_rebase_i(opts))
3857 setenv("GIT_REFLOG_ACTION", reflog_message(opts,
3858 command_to_string(item->command), NULL),
3860 res = do_pick_commit(r, item->command, item->commit,
3861 opts, is_final_fixup(todo_list),
3863 if (is_rebase_i(opts) && res < 0) {
3865 advise(_(rescheduled_advice),
3866 get_item_line_length(todo_list,
3867 todo_list->current),
3868 get_item_line(todo_list,
3869 todo_list->current));
3870 todo_list->current--;
3871 if (save_todo(todo_list, opts))
3874 if (item->command == TODO_EDIT) {
3875 struct commit *commit = item->commit;
3880 _("Stopped at %s... %.*s\n"),
3881 short_commit_name(commit),
3882 item->arg_len, arg);
3884 return error_with_patch(r, commit,
3885 arg, item->arg_len, opts, res, !res);
3887 if (is_rebase_i(opts) && !res)
3888 record_in_rewritten(&item->commit->object.oid,
3889 peek_command(todo_list, 1));
3890 if (res && is_fixup(item->command)) {
3893 return error_failed_squash(r, item->commit, opts,
3894 item->arg_len, arg);
3895 } else if (res && is_rebase_i(opts) && item->commit) {
3897 struct object_id oid;
3900 * If we are rewording and have either
3901 * fast-forwarded already, or are about to
3902 * create a new root commit, we want to amend,
3903 * otherwise we do not.
3905 if (item->command == TODO_REWORD &&
3906 !get_oid("HEAD", &oid) &&
3907 (oideq(&item->commit->object.oid, &oid) ||
3908 (opts->have_squash_onto &&
3909 oideq(&opts->squash_onto, &oid))))
3912 return res | error_with_patch(r, item->commit,
3913 arg, item->arg_len, opts,
3916 } else if (item->command == TODO_EXEC) {
3917 char *end_of_arg = (char *)(arg + item->arg_len);
3918 int saved = *end_of_arg;
3923 res = do_exec(r, arg);
3924 *end_of_arg = saved;
3927 if (opts->reschedule_failed_exec)
3931 } else if (item->command == TODO_LABEL) {
3932 if ((res = do_label(r, arg, item->arg_len)))
3934 } else if (item->command == TODO_RESET) {
3935 if ((res = do_reset(r, arg, item->arg_len, opts)))
3937 } else if (item->command == TODO_MERGE) {
3938 if ((res = do_merge(r, item->commit,
3940 item->flags, opts)) < 0)
3942 else if (item->commit)
3943 record_in_rewritten(&item->commit->object.oid,
3944 peek_command(todo_list, 1));
3946 /* failed with merge conflicts */
3947 return error_with_patch(r, item->commit,
3950 } else if (!is_noop(item->command))
3951 return error(_("unknown command %d"), item->command);
3954 advise(_(rescheduled_advice),
3955 get_item_line_length(todo_list,
3956 todo_list->current),
3957 get_item_line(todo_list, todo_list->current));
3958 todo_list->current--;
3959 if (save_todo(todo_list, opts))
3962 return error_with_patch(r,
3966 } else if (is_rebase_i(opts) && check_todo && !res) {
3969 if (stat(get_todo_path(opts), &st)) {
3970 res = error_errno(_("could not stat '%s'"),
3971 get_todo_path(opts));
3972 } else if (match_stat_data(&todo_list->stat, &st)) {
3973 /* Reread the todo file if it has changed. */
3974 todo_list_release(todo_list);
3975 if (read_populate_todo(r, todo_list, opts))
3976 res = -1; /* message was printed */
3977 /* `current` will be incremented below */
3978 todo_list->current = -1;
3982 todo_list->current++;
3987 if (is_rebase_i(opts)) {
3988 struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT;
3991 /* Stopped in the middle, as planned? */
3992 if (todo_list->current < todo_list->nr)
3995 if (read_oneliner(&head_ref, rebase_path_head_name(), 0) &&
3996 starts_with(head_ref.buf, "refs/")) {
3998 struct object_id head, orig;
4001 if (get_oid("HEAD", &head)) {
4002 res = error(_("cannot read HEAD"));
4004 strbuf_release(&head_ref);
4005 strbuf_release(&buf);
4008 if (!read_oneliner(&buf, rebase_path_orig_head(), 0) ||
4009 get_oid_hex(buf.buf, &orig)) {
4010 res = error(_("could not read orig-head"));
4011 goto cleanup_head_ref;
4014 if (!read_oneliner(&buf, rebase_path_onto(), 0)) {
4015 res = error(_("could not read 'onto'"));
4016 goto cleanup_head_ref;
4018 msg = reflog_message(opts, "finish", "%s onto %s",
4019 head_ref.buf, buf.buf);
4020 if (update_ref(msg, head_ref.buf, &head, &orig,
4021 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) {
4022 res = error(_("could not update %s"),
4024 goto cleanup_head_ref;
4026 msg = reflog_message(opts, "finish", "returning to %s",
4028 if (create_symref("HEAD", head_ref.buf, msg)) {
4029 res = error(_("could not update HEAD to %s"),
4031 goto cleanup_head_ref;
4036 if (opts->verbose) {
4037 struct rev_info log_tree_opt;
4038 struct object_id orig, head;
4040 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
4041 repo_init_revisions(r, &log_tree_opt, NULL);
4042 log_tree_opt.diff = 1;
4043 log_tree_opt.diffopt.output_format =
4044 DIFF_FORMAT_DIFFSTAT;
4045 log_tree_opt.disable_stdin = 1;
4047 if (read_oneliner(&buf, rebase_path_orig_head(), 0) &&
4048 !get_oid(buf.buf, &orig) &&
4049 !get_oid("HEAD", &head)) {
4050 diff_tree_oid(&orig, &head, "",
4051 &log_tree_opt.diffopt);
4052 log_tree_diff_flush(&log_tree_opt);
4055 flush_rewritten_pending();
4056 if (!stat(rebase_path_rewritten_list(), &st) &&
4058 struct child_process child = CHILD_PROCESS_INIT;
4059 const char *post_rewrite_hook =
4060 find_hook("post-rewrite");
4062 child.in = open(rebase_path_rewritten_list(), O_RDONLY);
4064 argv_array_push(&child.args, "notes");
4065 argv_array_push(&child.args, "copy");
4066 argv_array_push(&child.args, "--for-rewrite=rebase");
4067 /* we don't care if this copying failed */
4068 run_command(&child);
4070 if (post_rewrite_hook) {
4071 struct child_process hook = CHILD_PROCESS_INIT;
4073 hook.in = open(rebase_path_rewritten_list(),
4075 hook.stdout_to_stderr = 1;
4076 hook.trace2_hook_name = "post-rewrite";
4077 argv_array_push(&hook.args, post_rewrite_hook);
4078 argv_array_push(&hook.args, "rebase");
4079 /* we don't care if this hook failed */
4083 apply_autostash(opts);
4089 "Successfully rebased and updated %s.\n",
4093 strbuf_release(&buf);
4094 strbuf_release(&head_ref);
4098 * Sequence of picks finished successfully; cleanup by
4099 * removing the .git/sequencer directory
4101 return sequencer_remove_state(opts);
4104 static int continue_single_pick(struct repository *r)
4106 const char *argv[] = { "commit", NULL };
4108 if (!file_exists(git_path_cherry_pick_head(r)) &&
4109 !file_exists(git_path_revert_head(r)))
4110 return error(_("no cherry-pick or revert in progress"));
4111 return run_command_v_opt(argv, RUN_GIT_CMD);
4114 static int commit_staged_changes(struct repository *r,
4115 struct replay_opts *opts,
4116 struct todo_list *todo_list)
4118 unsigned int flags = ALLOW_EMPTY | EDIT_MSG;
4119 unsigned int final_fixup = 0, is_clean;
4121 if (has_unstaged_changes(r, 1))
4122 return error(_("cannot rebase: You have unstaged changes."));
4124 is_clean = !has_uncommitted_changes(r, 0);
4126 if (file_exists(rebase_path_amend())) {
4127 struct strbuf rev = STRBUF_INIT;
4128 struct object_id head, to_amend;
4130 if (get_oid("HEAD", &head))
4131 return error(_("cannot amend non-existing commit"));
4132 if (!read_oneliner(&rev, rebase_path_amend(), 0))
4133 return error(_("invalid file: '%s'"), rebase_path_amend());
4134 if (get_oid_hex(rev.buf, &to_amend))
4135 return error(_("invalid contents: '%s'"),
4136 rebase_path_amend());
4137 if (!is_clean && !oideq(&head, &to_amend))
4138 return error(_("\nYou have uncommitted changes in your "
4139 "working tree. Please, commit them\n"
4140 "first and then run 'git rebase "
4141 "--continue' again."));
4143 * When skipping a failed fixup/squash, we need to edit the
4144 * commit message, the current fixup list and count, and if it
4145 * was the last fixup/squash in the chain, we need to clean up
4146 * the commit message and if there was a squash, let the user
4149 if (!is_clean || !opts->current_fixup_count)
4150 ; /* this is not the final fixup */
4151 else if (!oideq(&head, &to_amend) ||
4152 !file_exists(rebase_path_stopped_sha())) {
4153 /* was a final fixup or squash done manually? */
4154 if (!is_fixup(peek_command(todo_list, 0))) {
4155 unlink(rebase_path_fixup_msg());
4156 unlink(rebase_path_squash_msg());
4157 unlink(rebase_path_current_fixups());
4158 strbuf_reset(&opts->current_fixups);
4159 opts->current_fixup_count = 0;
4162 /* we are in a fixup/squash chain */
4163 const char *p = opts->current_fixups.buf;
4164 int len = opts->current_fixups.len;
4166 opts->current_fixup_count--;
4168 BUG("Incorrect current_fixups:\n%s", p);
4169 while (len && p[len - 1] != '\n')
4171 strbuf_setlen(&opts->current_fixups, len);
4172 if (write_message(p, len, rebase_path_current_fixups(),
4174 return error(_("could not write file: '%s'"),
4175 rebase_path_current_fixups());
4178 * If a fixup/squash in a fixup/squash chain failed, the
4179 * commit message is already correct, no need to commit
4182 * Only if it is the final command in the fixup/squash
4183 * chain, and only if the chain is longer than a single
4184 * fixup/squash command (which was just skipped), do we
4185 * actually need to re-commit with a cleaned up commit
4188 if (opts->current_fixup_count > 0 &&
4189 !is_fixup(peek_command(todo_list, 0))) {
4192 * If there was not a single "squash" in the
4193 * chain, we only need to clean up the commit
4194 * message, no need to bother the user with
4195 * opening the commit message in the editor.
4197 if (!starts_with(p, "squash ") &&
4198 !strstr(p, "\nsquash "))
4199 flags = (flags & ~EDIT_MSG) | CLEANUP_MSG;
4200 } else if (is_fixup(peek_command(todo_list, 0))) {
4202 * We need to update the squash message to skip
4203 * the latest commit message.
4205 struct commit *commit;
4206 const char *path = rebase_path_squash_msg();
4207 const char *encoding = get_commit_output_encoding();
4209 if (parse_head(r, &commit) ||
4210 !(p = logmsg_reencode(commit, NULL, encoding)) ||
4211 write_message(p, strlen(p), path, 0)) {
4212 unuse_commit_buffer(commit, p);
4213 return error(_("could not write file: "
4216 unuse_commit_buffer(commit, p);
4220 strbuf_release(&rev);
4225 const char *cherry_pick_head = git_path_cherry_pick_head(r);
4227 if (file_exists(cherry_pick_head) && unlink(cherry_pick_head))
4228 return error(_("could not remove CHERRY_PICK_HEAD"));
4233 if (run_git_commit(r, final_fixup ? NULL : rebase_path_message(),
4235 return error(_("could not commit staged changes."));
4236 unlink(rebase_path_amend());
4237 unlink(git_path_merge_head(r));
4239 unlink(rebase_path_fixup_msg());
4240 unlink(rebase_path_squash_msg());
4242 if (opts->current_fixup_count > 0) {
4244 * Whether final fixup or not, we just cleaned up the commit
4247 unlink(rebase_path_current_fixups());
4248 strbuf_reset(&opts->current_fixups);
4249 opts->current_fixup_count = 0;
4254 int sequencer_continue(struct repository *r, struct replay_opts *opts)
4256 struct todo_list todo_list = TODO_LIST_INIT;
4259 if (read_and_refresh_cache(r, opts))
4262 if (read_populate_opts(opts))
4264 if (is_rebase_i(opts)) {
4265 if ((res = read_populate_todo(r, &todo_list, opts)))
4266 goto release_todo_list;
4267 if (commit_staged_changes(r, opts, &todo_list)) {
4269 goto release_todo_list;
4271 } else if (!file_exists(get_todo_path(opts)))
4272 return continue_single_pick(r);
4273 else if ((res = read_populate_todo(r, &todo_list, opts)))
4274 goto release_todo_list;
4276 if (!is_rebase_i(opts)) {
4277 /* Verify that the conflict has been resolved */
4278 if (file_exists(git_path_cherry_pick_head(r)) ||
4279 file_exists(git_path_revert_head(r))) {
4280 res = continue_single_pick(r);
4282 goto release_todo_list;
4284 if (index_differs_from(r, "HEAD", NULL, 0)) {
4285 res = error_dirty_index(r, opts);
4286 goto release_todo_list;
4288 todo_list.current++;
4289 } else if (file_exists(rebase_path_stopped_sha())) {
4290 struct strbuf buf = STRBUF_INIT;
4291 struct object_id oid;
4293 if (read_oneliner(&buf, rebase_path_stopped_sha(), 1) &&
4294 !get_oid_committish(buf.buf, &oid))
4295 record_in_rewritten(&oid, peek_command(&todo_list, 0));
4296 strbuf_release(&buf);
4299 res = pick_commits(r, &todo_list, opts);
4301 todo_list_release(&todo_list);
4305 static int single_pick(struct repository *r,
4306 struct commit *cmit,
4307 struct replay_opts *opts)
4311 setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
4312 return do_pick_commit(r, opts->action == REPLAY_PICK ?
4313 TODO_PICK : TODO_REVERT, cmit, opts, 0,
4317 int sequencer_pick_revisions(struct repository *r,
4318 struct replay_opts *opts)
4320 struct todo_list todo_list = TODO_LIST_INIT;
4321 struct object_id oid;
4325 if (read_and_refresh_cache(r, opts))
4328 for (i = 0; i < opts->revs->pending.nr; i++) {
4329 struct object_id oid;
4330 const char *name = opts->revs->pending.objects[i].name;
4332 /* This happens when using --stdin. */
4336 if (!get_oid(name, &oid)) {
4337 if (!lookup_commit_reference_gently(r, &oid, 1)) {
4338 enum object_type type = oid_object_info(r,
4341 return error(_("%s: can't cherry-pick a %s"),
4342 name, type_name(type));
4345 return error(_("%s: bad revision"), name);
4349 * If we were called as "git cherry-pick <commit>", just
4350 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
4351 * REVERT_HEAD, and don't touch the sequencer state.
4352 * This means it is possible to cherry-pick in the middle
4353 * of a cherry-pick sequence.
4355 if (opts->revs->cmdline.nr == 1 &&
4356 opts->revs->cmdline.rev->whence == REV_CMD_REV &&
4357 opts->revs->no_walk &&
4358 !opts->revs->cmdline.rev->flags) {
4359 struct commit *cmit;
4360 if (prepare_revision_walk(opts->revs))
4361 return error(_("revision walk setup failed"));
4362 cmit = get_revision(opts->revs);
4364 return error(_("empty commit set passed"));
4365 if (get_revision(opts->revs))
4366 BUG("unexpected extra commit from walk");
4367 return single_pick(r, cmit, opts);
4371 * Start a new cherry-pick/ revert sequence; but
4372 * first, make sure that an existing one isn't in
4376 if (walk_revs_populate_todo(&todo_list, opts) ||
4377 create_seq_dir(r) < 0)
4379 if (get_oid("HEAD", &oid) && (opts->action == REPLAY_REVERT))
4380 return error(_("can't revert as initial commit"));
4381 if (save_head(oid_to_hex(&oid)))
4383 if (save_opts(opts))
4385 update_abort_safety_file();
4386 res = pick_commits(r, &todo_list, opts);
4387 todo_list_release(&todo_list);
4391 void append_signoff(struct strbuf *msgbuf, size_t ignore_footer, unsigned flag)
4393 unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
4394 struct strbuf sob = STRBUF_INIT;
4397 strbuf_addstr(&sob, sign_off_header);
4398 strbuf_addstr(&sob, fmt_name(WANT_COMMITTER_IDENT));
4399 strbuf_addch(&sob, '\n');
4402 strbuf_complete_line(msgbuf);
4405 * If the whole message buffer is equal to the sob, pretend that we
4406 * found a conforming footer with a matching sob
4408 if (msgbuf->len - ignore_footer == sob.len &&
4409 !strncmp(msgbuf->buf, sob.buf, sob.len))
4412 has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
4415 const char *append_newlines = NULL;
4416 size_t len = msgbuf->len - ignore_footer;
4420 * The buffer is completely empty. Leave foom for
4421 * the title and body to be filled in by the user.
4423 append_newlines = "\n\n";
4424 } else if (len == 1) {
4426 * Buffer contains a single newline. Add another
4427 * so that we leave room for the title and body.
4429 append_newlines = "\n";
4430 } else if (msgbuf->buf[len - 2] != '\n') {
4432 * Buffer ends with a single newline. Add another
4433 * so that there is an empty line between the message
4436 append_newlines = "\n";
4437 } /* else, the buffer already ends with two newlines. */
4439 if (append_newlines)
4440 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
4441 append_newlines, strlen(append_newlines));
4444 if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
4445 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
4448 strbuf_release(&sob);
4451 struct labels_entry {
4452 struct hashmap_entry entry;
4453 char label[FLEX_ARRAY];
4456 static int labels_cmp(const void *fndata, const struct hashmap_entry *eptr,
4457 const struct hashmap_entry *entry_or_key, const void *key)
4459 const struct labels_entry *a, *b;
4461 a = container_of(eptr, const struct labels_entry, entry);
4462 b = container_of(entry_or_key, const struct labels_entry, entry);
4464 return key ? strcmp(a->label, key) : strcmp(a->label, b->label);
4467 struct string_entry {
4468 struct oidmap_entry entry;
4469 char string[FLEX_ARRAY];
4472 struct label_state {
4473 struct oidmap commit2label;
4474 struct hashmap labels;
4478 static const char *label_oid(struct object_id *oid, const char *label,
4479 struct label_state *state)
4481 struct labels_entry *labels_entry;
4482 struct string_entry *string_entry;
4483 struct object_id dummy;
4486 string_entry = oidmap_get(&state->commit2label, oid);
4488 return string_entry->string;
4491 * For "uninteresting" commits, i.e. commits that are not to be
4492 * rebased, and which can therefore not be labeled, we use a unique
4493 * abbreviation of the commit name. This is slightly more complicated
4494 * than calling find_unique_abbrev() because we also need to make
4495 * sure that the abbreviation does not conflict with any other
4498 * We disallow "interesting" commits to be labeled by a string that
4499 * is a valid full-length hash, to ensure that we always can find an
4500 * abbreviation for any uninteresting commit's names that does not
4501 * clash with any other label.
4503 strbuf_reset(&state->buf);
4507 strbuf_grow(&state->buf, GIT_MAX_HEXSZ);
4508 label = p = state->buf.buf;
4510 find_unique_abbrev_r(p, oid, default_abbrev);
4513 * We may need to extend the abbreviated hash so that there is
4514 * no conflicting label.
4516 if (hashmap_get_from_hash(&state->labels, strihash(p), p)) {
4517 size_t i = strlen(p) + 1;
4519 oid_to_hex_r(p, oid);
4520 for (; i < the_hash_algo->hexsz; i++) {
4523 if (!hashmap_get_from_hash(&state->labels,
4530 struct strbuf *buf = &state->buf;
4533 * Sanitize labels by replacing non-alpha-numeric characters
4534 * (including white-space ones) by dashes, as they might be
4535 * illegal in file names (and hence in ref names).
4537 * Note that we retain non-ASCII UTF-8 characters (identified
4538 * via the most significant bit). They should be all acceptable
4539 * in file names. We do not validate the UTF-8 here, that's not
4540 * the job of this function.
4542 for (; *label; label++)
4543 if ((*label & 0x80) || isalnum(*label))
4544 strbuf_addch(buf, *label);
4545 /* avoid leading dash and double-dashes */
4546 else if (buf->len && buf->buf[buf->len - 1] != '-')
4547 strbuf_addch(buf, '-');
4549 strbuf_addstr(buf, "rev-");
4550 strbuf_add_unique_abbrev(buf, oid, default_abbrev);
4554 if ((buf->len == the_hash_algo->hexsz &&
4555 !get_oid_hex(label, &dummy)) ||
4556 (buf->len == 1 && *label == '#') ||
4557 hashmap_get_from_hash(&state->labels,
4558 strihash(label), label)) {
4560 * If the label already exists, or if the label is a
4561 * valid full OID, or the label is a '#' (which we use
4562 * as a separator between merge heads and oneline), we
4563 * append a dash and a number to make it unique.
4565 size_t len = buf->len;
4567 for (i = 2; ; i++) {
4568 strbuf_setlen(buf, len);
4569 strbuf_addf(buf, "-%d", i);
4570 if (!hashmap_get_from_hash(&state->labels,
4580 FLEX_ALLOC_STR(labels_entry, label, label);
4581 hashmap_entry_init(&labels_entry->entry, strihash(label));
4582 hashmap_add(&state->labels, &labels_entry->entry);
4584 FLEX_ALLOC_STR(string_entry, string, label);
4585 oidcpy(&string_entry->entry.oid, oid);
4586 oidmap_put(&state->commit2label, string_entry);
4588 return string_entry->string;
4591 static int make_script_with_merges(struct pretty_print_context *pp,
4592 struct rev_info *revs, struct strbuf *out,
4595 int rebase_cousins = flags & TODO_LIST_REBASE_COUSINS;
4596 int root_with_onto = flags & TODO_LIST_ROOT_WITH_ONTO;
4597 struct strbuf buf = STRBUF_INIT, oneline = STRBUF_INIT;
4598 struct strbuf label = STRBUF_INIT;
4599 struct commit_list *commits = NULL, **tail = &commits, *iter;
4600 struct commit_list *tips = NULL, **tips_tail = &tips;
4601 struct commit *commit;
4602 struct oidmap commit2todo = OIDMAP_INIT;
4603 struct string_entry *entry;
4604 struct oidset interesting = OIDSET_INIT, child_seen = OIDSET_INIT,
4605 shown = OIDSET_INIT;
4606 struct label_state state = { OIDMAP_INIT, { NULL }, STRBUF_INIT };
4608 int abbr = flags & TODO_LIST_ABBREVIATE_CMDS;
4609 const char *cmd_pick = abbr ? "p" : "pick",
4610 *cmd_label = abbr ? "l" : "label",
4611 *cmd_reset = abbr ? "t" : "reset",
4612 *cmd_merge = abbr ? "m" : "merge";
4614 oidmap_init(&commit2todo, 0);
4615 oidmap_init(&state.commit2label, 0);
4616 hashmap_init(&state.labels, labels_cmp, NULL, 0);
4617 strbuf_init(&state.buf, 32);
4619 if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) {
4620 struct labels_entry *onto_label_entry;
4621 struct object_id *oid = &revs->cmdline.rev[0].item->oid;
4622 FLEX_ALLOC_STR(entry, string, "onto");
4623 oidcpy(&entry->entry.oid, oid);
4624 oidmap_put(&state.commit2label, entry);
4626 FLEX_ALLOC_STR(onto_label_entry, label, "onto");
4627 hashmap_entry_init(&onto_label_entry->entry, strihash("onto"));
4628 hashmap_add(&state.labels, &onto_label_entry->entry);
4633 * - get onelines for all commits
4634 * - gather all branch tips (i.e. 2nd or later parents of merges)
4635 * - label all branch tips
4637 while ((commit = get_revision(revs))) {
4638 struct commit_list *to_merge;
4639 const char *p1, *p2;
4640 struct object_id *oid;
4643 tail = &commit_list_insert(commit, tail)->next;
4644 oidset_insert(&interesting, &commit->object.oid);
4646 is_empty = is_original_commit_empty(commit);
4647 if (!is_empty && (commit->object.flags & PATCHSAME))
4650 strbuf_reset(&oneline);
4651 pretty_print_commit(pp, commit, &oneline);
4653 to_merge = commit->parents ? commit->parents->next : NULL;
4655 /* non-merge commit: easy case */
4657 strbuf_addf(&buf, "%s %s %s", cmd_pick,
4658 oid_to_hex(&commit->object.oid),
4661 FLEX_ALLOC_STR(entry, string, buf.buf);
4662 oidcpy(&entry->entry.oid, &commit->object.oid);
4663 oidmap_put(&commit2todo, entry);
4668 /* Create a label */
4669 strbuf_reset(&label);
4670 if (skip_prefix(oneline.buf, "Merge ", &p1) &&
4671 (p1 = strchr(p1, '\'')) &&
4672 (p2 = strchr(++p1, '\'')))
4673 strbuf_add(&label, p1, p2 - p1);
4674 else if (skip_prefix(oneline.buf, "Merge pull request ",
4676 (p1 = strstr(p1, " from ")))
4677 strbuf_addstr(&label, p1 + strlen(" from "));
4679 strbuf_addbuf(&label, &oneline);
4682 strbuf_addf(&buf, "%s -C %s",
4683 cmd_merge, oid_to_hex(&commit->object.oid));
4685 /* label the tips of merged branches */
4686 for (; to_merge; to_merge = to_merge->next) {
4687 oid = &to_merge->item->object.oid;
4688 strbuf_addch(&buf, ' ');
4690 if (!oidset_contains(&interesting, oid)) {
4691 strbuf_addstr(&buf, label_oid(oid, NULL,
4696 tips_tail = &commit_list_insert(to_merge->item,
4699 strbuf_addstr(&buf, label_oid(oid, label.buf, &state));
4701 strbuf_addf(&buf, " # %s", oneline.buf);
4703 FLEX_ALLOC_STR(entry, string, buf.buf);
4704 oidcpy(&entry->entry.oid, &commit->object.oid);
4705 oidmap_put(&commit2todo, entry);
4710 * - label branch points
4711 * - add HEAD to the branch tips
4713 for (iter = commits; iter; iter = iter->next) {
4714 struct commit_list *parent = iter->item->parents;
4715 for (; parent; parent = parent->next) {
4716 struct object_id *oid = &parent->item->object.oid;
4717 if (!oidset_contains(&interesting, oid))
4719 if (oidset_insert(&child_seen, oid))
4720 label_oid(oid, "branch-point", &state);
4723 /* Add HEAD as implicit "tip of branch" */
4725 tips_tail = &commit_list_insert(iter->item,
4730 * Third phase: output the todo list. This is a bit tricky, as we
4731 * want to avoid jumping back and forth between revisions. To
4732 * accomplish that goal, we walk backwards from the branch tips,
4733 * gathering commits not yet shown, reversing the list on the fly,
4734 * then outputting that list (labeling revisions as needed).
4736 strbuf_addf(out, "%s onto\n", cmd_label);
4737 for (iter = tips; iter; iter = iter->next) {
4738 struct commit_list *list = NULL, *iter2;
4740 commit = iter->item;
4741 if (oidset_contains(&shown, &commit->object.oid))
4743 entry = oidmap_get(&state.commit2label, &commit->object.oid);
4746 strbuf_addf(out, "\n%c Branch %s\n", comment_line_char, entry->string);
4748 strbuf_addch(out, '\n');
4750 while (oidset_contains(&interesting, &commit->object.oid) &&
4751 !oidset_contains(&shown, &commit->object.oid)) {
4752 commit_list_insert(commit, &list);
4753 if (!commit->parents) {
4757 commit = commit->parents->item;
4761 strbuf_addf(out, "%s %s\n", cmd_reset,
4762 rebase_cousins || root_with_onto ?
4763 "onto" : "[new root]");
4765 const char *to = NULL;
4767 entry = oidmap_get(&state.commit2label,
4768 &commit->object.oid);
4771 else if (!rebase_cousins)
4772 to = label_oid(&commit->object.oid, NULL,
4775 if (!to || !strcmp(to, "onto"))
4776 strbuf_addf(out, "%s onto\n", cmd_reset);
4778 strbuf_reset(&oneline);
4779 pretty_print_commit(pp, commit, &oneline);
4780 strbuf_addf(out, "%s %s # %s\n",
4781 cmd_reset, to, oneline.buf);
4785 for (iter2 = list; iter2; iter2 = iter2->next) {
4786 struct object_id *oid = &iter2->item->object.oid;
4787 entry = oidmap_get(&commit2todo, oid);
4788 /* only show if not already upstream */
4790 strbuf_addf(out, "%s\n", entry->string);
4791 entry = oidmap_get(&state.commit2label, oid);
4793 strbuf_addf(out, "%s %s\n",
4794 cmd_label, entry->string);
4795 oidset_insert(&shown, oid);
4798 free_commit_list(list);
4801 free_commit_list(commits);
4802 free_commit_list(tips);
4804 strbuf_release(&label);
4805 strbuf_release(&oneline);
4806 strbuf_release(&buf);
4808 oidmap_free(&commit2todo, 1);
4809 oidmap_free(&state.commit2label, 1);
4810 hashmap_free_entries(&state.labels, struct labels_entry, entry);
4811 strbuf_release(&state.buf);
4816 int sequencer_make_script(struct repository *r, struct strbuf *out, int argc,
4817 const char **argv, unsigned flags)
4819 char *format = NULL;
4820 struct pretty_print_context pp = {0};
4821 struct rev_info revs;
4822 struct commit *commit;
4823 const char *insn = flags & TODO_LIST_ABBREVIATE_CMDS ? "p" : "pick";
4824 int rebase_merges = flags & TODO_LIST_REBASE_MERGES;
4826 repo_init_revisions(r, &revs, NULL);
4827 revs.verbose_header = 1;
4829 revs.max_parents = 1;
4830 revs.cherry_mark = 1;
4833 revs.right_only = 1;
4834 revs.sort_order = REV_SORT_IN_GRAPH_ORDER;
4835 revs.topo_order = 1;
4837 revs.pretty_given = 1;
4838 git_config_get_string("rebase.instructionFormat", &format);
4839 if (!format || !*format) {
4841 format = xstrdup("%s");
4843 get_commit_format(format, &revs);
4845 pp.fmt = revs.commit_format;
4846 pp.output_encoding = get_log_output_encoding();
4848 if (setup_revisions(argc, argv, &revs, NULL) > 1)
4849 return error(_("make_script: unhandled options"));
4851 if (prepare_revision_walk(&revs) < 0)
4852 return error(_("make_script: error preparing revisions"));
4855 return make_script_with_merges(&pp, &revs, out, flags);
4857 while ((commit = get_revision(&revs))) {
4858 int is_empty = is_original_commit_empty(commit);
4860 if (!is_empty && (commit->object.flags & PATCHSAME))
4862 strbuf_addf(out, "%s %s ", insn,
4863 oid_to_hex(&commit->object.oid));
4864 pretty_print_commit(&pp, commit, out);
4865 strbuf_addch(out, '\n');
4871 * Add commands after pick and (series of) squash/fixup commands
4874 void todo_list_add_exec_commands(struct todo_list *todo_list,
4875 struct string_list *commands)
4877 struct strbuf *buf = &todo_list->buf;
4878 size_t base_offset = buf->len;
4879 int i, insert, nr = 0, alloc = 0;
4880 struct todo_item *items = NULL, *base_items = NULL;
4882 base_items = xcalloc(commands->nr, sizeof(struct todo_item));
4883 for (i = 0; i < commands->nr; i++) {
4884 size_t command_len = strlen(commands->items[i].string);
4886 strbuf_addstr(buf, commands->items[i].string);
4887 strbuf_addch(buf, '\n');
4889 base_items[i].command = TODO_EXEC;
4890 base_items[i].offset_in_buf = base_offset;
4891 base_items[i].arg_offset = base_offset + strlen("exec ");
4892 base_items[i].arg_len = command_len - strlen("exec ");
4894 base_offset += command_len + 1;
4898 * Insert <commands> after every pick. Here, fixup/squash chains
4899 * are considered part of the pick, so we insert the commands *after*
4900 * those chains if there are any.
4902 * As we insert the exec commands immediately after rearranging
4903 * any fixups and before the user edits the list, a fixup chain
4904 * can never contain comments (any comments are empty picks that
4905 * have been commented out because the user did not specify
4906 * --keep-empty). So, it is safe to insert an exec command
4907 * without looking at the command following a comment.
4910 for (i = 0; i < todo_list->nr; i++) {
4911 enum todo_command command = todo_list->items[i].command;
4912 if (insert && !is_fixup(command)) {
4913 ALLOC_GROW(items, nr + commands->nr, alloc);
4914 COPY_ARRAY(items + nr, base_items, commands->nr);
4920 ALLOC_GROW(items, nr + 1, alloc);
4921 items[nr++] = todo_list->items[i];
4923 if (command == TODO_PICK || command == TODO_MERGE)
4927 /* insert or append final <commands> */
4928 if (insert || nr == todo_list->nr) {
4929 ALLOC_GROW(items, nr + commands->nr, alloc);
4930 COPY_ARRAY(items + nr, base_items, commands->nr);
4935 FREE_AND_NULL(todo_list->items);
4936 todo_list->items = items;
4938 todo_list->alloc = alloc;
4941 static void todo_list_to_strbuf(struct repository *r, struct todo_list *todo_list,
4942 struct strbuf *buf, int num, unsigned flags)
4944 struct todo_item *item;
4945 int i, max = todo_list->nr;
4947 if (num > 0 && num < max)
4950 for (item = todo_list->items, i = 0; i < max; i++, item++) {
4951 /* if the item is not a command write it and continue */
4952 if (item->command >= TODO_COMMENT) {
4953 strbuf_addf(buf, "%.*s\n", item->arg_len,
4954 todo_item_get_arg(todo_list, item));
4958 /* add command to the buffer */
4959 if (flags & TODO_LIST_ABBREVIATE_CMDS)
4960 strbuf_addch(buf, command_to_char(item->command));
4962 strbuf_addstr(buf, command_to_string(item->command));
4966 const char *oid = flags & TODO_LIST_SHORTEN_IDS ?
4967 short_commit_name(item->commit) :
4968 oid_to_hex(&item->commit->object.oid);
4970 if (item->command == TODO_MERGE) {
4971 if (item->flags & TODO_EDIT_MERGE_MSG)
4972 strbuf_addstr(buf, " -c");
4974 strbuf_addstr(buf, " -C");
4977 strbuf_addf(buf, " %s", oid);
4980 /* add all the rest */
4982 strbuf_addch(buf, '\n');
4984 strbuf_addf(buf, " %.*s\n", item->arg_len,
4985 todo_item_get_arg(todo_list, item));
4989 int todo_list_write_to_file(struct repository *r, struct todo_list *todo_list,
4990 const char *file, const char *shortrevisions,
4991 const char *shortonto, int num, unsigned flags)
4994 struct strbuf buf = STRBUF_INIT;
4996 todo_list_to_strbuf(r, todo_list, &buf, num, flags);
4997 if (flags & TODO_LIST_APPEND_TODO_HELP)
4998 append_todo_help(count_commands(todo_list),
4999 shortrevisions, shortonto, &buf);
5001 res = write_message(buf.buf, buf.len, file, 0);
5002 strbuf_release(&buf);
5007 static const char edit_todo_list_advice[] =
5008 N_("You can fix this with 'git rebase --edit-todo' "
5009 "and then run 'git rebase --continue'.\n"
5010 "Or you can abort the rebase with 'git rebase"
5013 int check_todo_list_from_file(struct repository *r)
5015 struct todo_list old_todo = TODO_LIST_INIT, new_todo = TODO_LIST_INIT;
5018 if (strbuf_read_file_or_whine(&new_todo.buf, rebase_path_todo()) < 0) {
5023 if (strbuf_read_file_or_whine(&old_todo.buf, rebase_path_todo_backup()) < 0) {
5028 res = todo_list_parse_insn_buffer(r, old_todo.buf.buf, &old_todo);
5030 res = todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo);
5032 res = todo_list_check(&old_todo, &new_todo);
5034 fprintf(stderr, _(edit_todo_list_advice));
5036 todo_list_release(&old_todo);
5037 todo_list_release(&new_todo);
5042 /* skip picking commits whose parents are unchanged */
5043 static int skip_unnecessary_picks(struct repository *r,
5044 struct todo_list *todo_list,
5045 struct object_id *base_oid)
5047 struct object_id *parent_oid;
5050 for (i = 0; i < todo_list->nr; i++) {
5051 struct todo_item *item = todo_list->items + i;
5053 if (item->command >= TODO_NOOP)
5055 if (item->command != TODO_PICK)
5057 if (parse_commit(item->commit)) {
5058 return error(_("could not parse commit '%s'"),
5059 oid_to_hex(&item->commit->object.oid));
5061 if (!item->commit->parents)
5062 break; /* root commit */
5063 if (item->commit->parents->next)
5064 break; /* merge commit */
5065 parent_oid = &item->commit->parents->item->object.oid;
5066 if (!oideq(parent_oid, base_oid))
5068 oidcpy(base_oid, &item->commit->object.oid);
5071 const char *done_path = rebase_path_done();
5073 if (todo_list_write_to_file(r, todo_list, done_path, NULL, NULL, i, 0)) {
5074 error_errno(_("could not write to '%s'"), done_path);
5078 MOVE_ARRAY(todo_list->items, todo_list->items + i, todo_list->nr - i);
5080 todo_list->current = 0;
5081 todo_list->done_nr += i;
5083 if (is_fixup(peek_command(todo_list, 0)))
5084 record_in_rewritten(base_oid, peek_command(todo_list, 0));
5090 int complete_action(struct repository *r, struct replay_opts *opts, unsigned flags,
5091 const char *shortrevisions, const char *onto_name,
5092 struct commit *onto, const char *orig_head,
5093 struct string_list *commands, unsigned autosquash,
5094 struct todo_list *todo_list)
5096 const char *shortonto, *todo_file = rebase_path_todo();
5097 struct todo_list new_todo = TODO_LIST_INIT;
5098 struct strbuf *buf = &todo_list->buf;
5099 struct object_id oid = onto->object.oid;
5102 shortonto = find_unique_abbrev(&oid, DEFAULT_ABBREV);
5104 if (buf->len == 0) {
5105 struct todo_item *item = append_new_todo(todo_list);
5106 item->command = TODO_NOOP;
5107 item->commit = NULL;
5108 item->arg_len = item->arg_offset = item->flags = item->offset_in_buf = 0;
5111 if (autosquash && todo_list_rearrange_squash(todo_list))
5115 todo_list_add_exec_commands(todo_list, commands);
5117 if (count_commands(todo_list) == 0) {
5118 apply_autostash(opts);
5119 sequencer_remove_state(opts);
5121 return error(_("nothing to do"));
5124 res = edit_todo_list(r, todo_list, &new_todo, shortrevisions,
5128 else if (res == -2) {
5129 apply_autostash(opts);
5130 sequencer_remove_state(opts);
5133 } else if (res == -3) {
5134 apply_autostash(opts);
5135 sequencer_remove_state(opts);
5136 todo_list_release(&new_todo);
5138 return error(_("nothing to do"));
5141 if (todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo) ||
5142 todo_list_check(todo_list, &new_todo)) {
5143 fprintf(stderr, _(edit_todo_list_advice));
5144 checkout_onto(r, opts, onto_name, &onto->object.oid, orig_head);
5145 todo_list_release(&new_todo);
5150 if (opts->allow_ff && skip_unnecessary_picks(r, &new_todo, &oid)) {
5151 todo_list_release(&new_todo);
5152 return error(_("could not skip unnecessary pick commands"));
5155 if (todo_list_write_to_file(r, &new_todo, todo_file, NULL, NULL, -1,
5156 flags & ~(TODO_LIST_SHORTEN_IDS))) {
5157 todo_list_release(&new_todo);
5158 return error_errno(_("could not write '%s'"), todo_file);
5163 if (checkout_onto(r, opts, onto_name, &oid, orig_head))
5166 if (require_clean_work_tree(r, "rebase", "", 1, 1))
5169 todo_list_write_total_nr(&new_todo);
5170 res = pick_commits(r, &new_todo, opts);
5173 todo_list_release(&new_todo);
5178 struct subject2item_entry {
5179 struct hashmap_entry entry;
5181 char subject[FLEX_ARRAY];
5184 static int subject2item_cmp(const void *fndata,
5185 const struct hashmap_entry *eptr,
5186 const struct hashmap_entry *entry_or_key,
5189 const struct subject2item_entry *a, *b;
5191 a = container_of(eptr, const struct subject2item_entry, entry);
5192 b = container_of(entry_or_key, const struct subject2item_entry, entry);
5194 return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
5197 define_commit_slab(commit_todo_item, struct todo_item *);
5200 * Rearrange the todo list that has both "pick commit-id msg" and "pick
5201 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
5202 * after the former, and change "pick" to "fixup"/"squash".
5204 * Note that if the config has specified a custom instruction format, each log
5205 * message will have to be retrieved from the commit (as the oneline in the
5206 * script cannot be trusted) in order to normalize the autosquash arrangement.
5208 int todo_list_rearrange_squash(struct todo_list *todo_list)
5210 struct hashmap subject2item;
5211 int rearranged = 0, *next, *tail, i, nr = 0, alloc = 0;
5213 struct commit_todo_item commit_todo;
5214 struct todo_item *items = NULL;
5216 init_commit_todo_item(&commit_todo);
5218 * The hashmap maps onelines to the respective todo list index.
5220 * If any items need to be rearranged, the next[i] value will indicate
5221 * which item was moved directly after the i'th.
5223 * In that case, last[i] will indicate the index of the latest item to
5224 * be moved to appear after the i'th.
5226 hashmap_init(&subject2item, subject2item_cmp, NULL, todo_list->nr);
5227 ALLOC_ARRAY(next, todo_list->nr);
5228 ALLOC_ARRAY(tail, todo_list->nr);
5229 ALLOC_ARRAY(subjects, todo_list->nr);
5230 for (i = 0; i < todo_list->nr; i++) {
5231 struct strbuf buf = STRBUF_INIT;
5232 struct todo_item *item = todo_list->items + i;
5233 const char *commit_buffer, *subject, *p;
5236 struct subject2item_entry *entry;
5238 next[i] = tail[i] = -1;
5239 if (!item->commit || item->command == TODO_DROP) {
5244 if (is_fixup(item->command)) {
5245 clear_commit_todo_item(&commit_todo);
5246 return error(_("the script was already rearranged."));
5249 *commit_todo_item_at(&commit_todo, item->commit) = item;
5251 parse_commit(item->commit);
5252 commit_buffer = logmsg_reencode(item->commit, NULL, "UTF-8");
5253 find_commit_subject(commit_buffer, &subject);
5254 format_subject(&buf, subject, " ");
5255 subject = subjects[i] = strbuf_detach(&buf, &subject_len);
5256 unuse_commit_buffer(item->commit, commit_buffer);
5257 if ((skip_prefix(subject, "fixup! ", &p) ||
5258 skip_prefix(subject, "squash! ", &p))) {
5259 struct commit *commit2;
5264 if (!skip_prefix(p, "fixup! ", &p) &&
5265 !skip_prefix(p, "squash! ", &p))
5269 entry = hashmap_get_entry_from_hash(&subject2item,
5271 struct subject2item_entry,
5274 /* found by title */
5276 else if (!strchr(p, ' ') &&
5278 lookup_commit_reference_by_name(p)) &&
5279 *commit_todo_item_at(&commit_todo, commit2))
5280 /* found by commit name */
5281 i2 = *commit_todo_item_at(&commit_todo, commit2)
5284 /* copy can be a prefix of the commit subject */
5285 for (i2 = 0; i2 < i; i2++)
5287 starts_with(subjects[i2], p))
5295 todo_list->items[i].command =
5296 starts_with(subject, "fixup!") ?
5297 TODO_FIXUP : TODO_SQUASH;
5303 } else if (!hashmap_get_from_hash(&subject2item,
5304 strhash(subject), subject)) {
5305 FLEX_ALLOC_MEM(entry, subject, subject, subject_len);
5307 hashmap_entry_init(&entry->entry,
5308 strhash(entry->subject));
5309 hashmap_put(&subject2item, &entry->entry);
5314 for (i = 0; i < todo_list->nr; i++) {
5315 enum todo_command command = todo_list->items[i].command;
5319 * Initially, all commands are 'pick's. If it is a
5320 * fixup or a squash now, we have rearranged it.
5322 if (is_fixup(command))
5326 ALLOC_GROW(items, nr + 1, alloc);
5327 items[nr++] = todo_list->items[cur];
5332 FREE_AND_NULL(todo_list->items);
5333 todo_list->items = items;
5335 todo_list->alloc = alloc;
5340 for (i = 0; i < todo_list->nr; i++)
5343 hashmap_free_entries(&subject2item, struct subject2item_entry, entry);
5345 clear_commit_todo_item(&commit_todo);