rebase: fix rewritten list for failed pick
[git/gitster.git] / sequencer.c
blob575464358cdd80d3d88246ba5023b7f928014ce2
1 #include "cache.h"
2 #include "abspath.h"
3 #include "alloc.h"
4 #include "config.h"
5 #include "environment.h"
6 #include "gettext.h"
7 #include "hex.h"
8 #include "lockfile.h"
9 #include "dir.h"
10 #include "object-store.h"
11 #include "object.h"
12 #include "commit.h"
13 #include "sequencer.h"
14 #include "tag.h"
15 #include "run-command.h"
16 #include "hook.h"
17 #include "exec-cmd.h"
18 #include "utf8.h"
19 #include "cache-tree.h"
20 #include "diff.h"
21 #include "revision.h"
22 #include "rerere.h"
23 #include "merge-ort.h"
24 #include "merge-ort-wrappers.h"
25 #include "refs.h"
26 #include "strvec.h"
27 #include "quote.h"
28 #include "trailer.h"
29 #include "log-tree.h"
30 #include "wt-status.h"
31 #include "hashmap.h"
32 #include "notes-utils.h"
33 #include "sigchain.h"
34 #include "unpack-trees.h"
35 #include "worktree.h"
36 #include "oidmap.h"
37 #include "oidset.h"
38 #include "commit-slab.h"
39 #include "alias.h"
40 #include "commit-reach.h"
41 #include "rebase-interactive.h"
42 #include "reset.h"
43 #include "branch.h"
44 #include "wrapper.h"
46 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
48 static const char sign_off_header[] = "Signed-off-by: ";
49 static const char cherry_picked_prefix[] = "(cherry picked from commit ";
51 GIT_PATH_FUNC(git_path_commit_editmsg, "COMMIT_EDITMSG")
53 static GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
55 static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
56 static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
57 static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
58 static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety")
60 static GIT_PATH_FUNC(rebase_path, "rebase-merge")
62 * The file containing rebase commands, comments, and empty lines.
63 * This file is created by "git rebase -i" then edited by the user. As
64 * the lines are processed, they are removed from the front of this
65 * file and written to the tail of 'done'.
67 GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo")
68 GIT_PATH_FUNC(rebase_path_todo_backup, "rebase-merge/git-rebase-todo.backup")
70 GIT_PATH_FUNC(rebase_path_dropped, "rebase-merge/dropped")
73 * The rebase command lines that have already been processed. A line
74 * is moved here when it is first handled, before any associated user
75 * actions.
77 static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
79 * The file to keep track of how many commands were already processed (e.g.
80 * for the prompt).
82 static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum")
84 * The file to keep track of how many commands are to be processed in total
85 * (e.g. for the prompt).
87 static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end")
89 * The commit message that is planned to be used for any changes that
90 * need to be committed following a user interaction.
92 static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message")
94 * The file into which is accumulated the suggested commit message for
95 * squash/fixup commands. When the first of a series of squash/fixups
96 * is seen, the file is created and the commit message from the
97 * previous commit and from the first squash/fixup commit are written
98 * to it. The commit message for each subsequent squash/fixup commit
99 * is appended to the file as it is processed.
101 static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash")
103 * If the current series of squash/fixups has not yet included a squash
104 * command, then this file exists and holds the commit message of the
105 * original "pick" commit. (If the series ends without a "squash"
106 * command, then this can be used as the commit message of the combined
107 * commit without opening the editor.)
109 static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup")
111 * This file contains the list fixup/squash commands that have been
112 * accumulated into message-fixup or message-squash so far.
114 static GIT_PATH_FUNC(rebase_path_current_fixups, "rebase-merge/current-fixups")
116 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
117 * GIT_AUTHOR_DATE that will be used for the commit that is currently
118 * being rebased.
120 static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script")
122 * When an "edit" rebase command is being processed, the SHA1 of the
123 * commit to be edited is recorded in this file. When "git rebase
124 * --continue" is executed, if there are any staged changes then they
125 * will be amended to the HEAD commit, but only provided the HEAD
126 * commit is still the commit to be edited. When any other rebase
127 * command is processed, this file is deleted.
129 static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend")
131 * When we stop at a given patch via the "edit" command, this file contains
132 * the commit object name of the corresponding patch.
134 static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha")
136 * When we stop for the user to resolve conflicts this file contains
137 * the patch of the commit that is being picked.
139 static GIT_PATH_FUNC(rebase_path_patch, "rebase-merge/patch")
141 * For the post-rewrite hook, we make a list of rewritten commits and
142 * their new sha1s. The rewritten-pending list keeps the sha1s of
143 * commits that have been processed, but not committed yet,
144 * e.g. because they are waiting for a 'squash' command.
146 static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list")
147 static GIT_PATH_FUNC(rebase_path_rewritten_pending,
148 "rebase-merge/rewritten-pending")
151 * The path of the file containing the OID of the "squash onto" commit, i.e.
152 * the dummy commit used for `reset [new root]`.
154 static GIT_PATH_FUNC(rebase_path_squash_onto, "rebase-merge/squash-onto")
157 * The path of the file listing refs that need to be deleted after the rebase
158 * finishes. This is used by the `label` command to record the need for cleanup.
160 static GIT_PATH_FUNC(rebase_path_refs_to_delete, "rebase-merge/refs-to-delete")
163 * The update-refs file stores a list of refs that will be updated at the end
164 * of the rebase sequence. The 'update-ref <ref>' commands in the todo file
165 * update the OIDs for the refs in this file, but the refs are not updated
166 * until the end of the rebase sequence.
168 * rebase_path_update_refs() returns the path to this file for a given
169 * worktree directory. For the current worktree, pass the_repository->gitdir.
171 static char *rebase_path_update_refs(const char *wt_git_dir)
173 return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir);
177 * The following files are written by git-rebase just after parsing the
178 * command-line.
180 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt")
181 static GIT_PATH_FUNC(rebase_path_cdate_is_adate, "rebase-merge/cdate_is_adate")
182 static GIT_PATH_FUNC(rebase_path_ignore_date, "rebase-merge/ignore_date")
183 static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head")
184 static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose")
185 static GIT_PATH_FUNC(rebase_path_quiet, "rebase-merge/quiet")
186 static GIT_PATH_FUNC(rebase_path_signoff, "rebase-merge/signoff")
187 static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name")
188 static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto")
189 static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash")
190 static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy")
191 static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts")
192 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate")
193 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec, "rebase-merge/reschedule-failed-exec")
194 static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec, "rebase-merge/no-reschedule-failed-exec")
195 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits, "rebase-merge/drop_redundant_commits")
196 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits, "rebase-merge/keep_redundant_commits")
199 * A 'struct update_refs_record' represents a value in the update-refs
200 * list. We use a string_list to map refs to these (before, after) pairs.
202 struct update_ref_record {
203 struct object_id before;
204 struct object_id after;
207 static struct update_ref_record *init_update_ref_record(const char *ref)
209 struct update_ref_record *rec;
211 CALLOC_ARRAY(rec, 1);
213 oidcpy(&rec->before, null_oid());
214 oidcpy(&rec->after, null_oid());
216 /* This may fail, but that's fine, we will keep the null OID. */
217 read_ref(ref, &rec->before);
219 return rec;
222 static int git_sequencer_config(const char *k, const char *v, void *cb)
224 struct replay_opts *opts = cb;
225 int status;
227 if (!strcmp(k, "commit.cleanup")) {
228 const char *s;
230 status = git_config_string(&s, k, v);
231 if (status)
232 return status;
234 if (!strcmp(s, "verbatim")) {
235 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
236 opts->explicit_cleanup = 1;
237 } else if (!strcmp(s, "whitespace")) {
238 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SPACE;
239 opts->explicit_cleanup = 1;
240 } else if (!strcmp(s, "strip")) {
241 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_ALL;
242 opts->explicit_cleanup = 1;
243 } else if (!strcmp(s, "scissors")) {
244 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SCISSORS;
245 opts->explicit_cleanup = 1;
246 } else {
247 warning(_("invalid commit message cleanup mode '%s'"),
251 free((char *)s);
252 return status;
255 if (!strcmp(k, "commit.gpgsign")) {
256 opts->gpg_sign = git_config_bool(k, v) ? xstrdup("") : NULL;
257 return 0;
260 if (!opts->default_strategy && !strcmp(k, "pull.twohead")) {
261 int ret = git_config_string((const char**)&opts->default_strategy, k, v);
262 if (ret == 0) {
264 * pull.twohead is allowed to be multi-valued; we only
265 * care about the first value.
267 char *tmp = strchr(opts->default_strategy, ' ');
268 if (tmp)
269 *tmp = '\0';
271 return ret;
274 if (opts->action == REPLAY_REVERT && !strcmp(k, "revert.reference"))
275 opts->commit_use_reference = git_config_bool(k, v);
277 return git_diff_basic_config(k, v, NULL);
280 void sequencer_init_config(struct replay_opts *opts)
282 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
283 git_config(git_sequencer_config, opts);
286 static inline int is_rebase_i(const struct replay_opts *opts)
288 return opts->action == REPLAY_INTERACTIVE_REBASE;
291 static const char *get_dir(const struct replay_opts *opts)
293 if (is_rebase_i(opts))
294 return rebase_path();
295 return git_path_seq_dir();
298 static const char *get_todo_path(const struct replay_opts *opts)
300 if (is_rebase_i(opts))
301 return rebase_path_todo();
302 return git_path_todo_file();
306 * Returns 0 for non-conforming footer
307 * Returns 1 for conforming footer
308 * Returns 2 when sob exists within conforming footer
309 * Returns 3 when sob exists within conforming footer as last entry
311 static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
312 size_t ignore_footer)
314 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
315 struct trailer_info info;
316 size_t i;
317 int found_sob = 0, found_sob_last = 0;
318 char saved_char;
320 opts.no_divider = 1;
322 if (ignore_footer) {
323 saved_char = sb->buf[sb->len - ignore_footer];
324 sb->buf[sb->len - ignore_footer] = '\0';
327 trailer_info_get(&info, sb->buf, &opts);
329 if (ignore_footer)
330 sb->buf[sb->len - ignore_footer] = saved_char;
332 if (info.trailer_start == info.trailer_end)
333 return 0;
335 for (i = 0; i < info.trailer_nr; i++)
336 if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) {
337 found_sob = 1;
338 if (i == info.trailer_nr - 1)
339 found_sob_last = 1;
342 trailer_info_release(&info);
344 if (found_sob_last)
345 return 3;
346 if (found_sob)
347 return 2;
348 return 1;
351 static const char *gpg_sign_opt_quoted(struct replay_opts *opts)
353 static struct strbuf buf = STRBUF_INIT;
355 strbuf_reset(&buf);
356 if (opts->gpg_sign)
357 sq_quotef(&buf, "-S%s", opts->gpg_sign);
358 return buf.buf;
361 void replay_opts_release(struct replay_opts *opts)
363 free(opts->gpg_sign);
364 free(opts->reflog_action);
365 free(opts->default_strategy);
366 free(opts->strategy);
367 strvec_clear (&opts->xopts);
368 strbuf_release(&opts->current_fixups);
369 if (opts->revs)
370 release_revisions(opts->revs);
371 free(opts->revs);
374 int sequencer_remove_state(struct replay_opts *opts)
376 struct strbuf buf = STRBUF_INIT;
377 int ret = 0;
379 if (is_rebase_i(opts) &&
380 strbuf_read_file(&buf, rebase_path_refs_to_delete(), 0) > 0) {
381 char *p = buf.buf;
382 while (*p) {
383 char *eol = strchr(p, '\n');
384 if (eol)
385 *eol = '\0';
386 if (delete_ref("(rebase) cleanup", p, NULL, 0) < 0) {
387 warning(_("could not delete '%s'"), p);
388 ret = -1;
390 if (!eol)
391 break;
392 p = eol + 1;
396 strbuf_reset(&buf);
397 strbuf_addstr(&buf, get_dir(opts));
398 if (remove_dir_recursively(&buf, 0))
399 ret = error(_("could not remove '%s'"), buf.buf);
400 strbuf_release(&buf);
402 return ret;
405 static const char *action_name(const struct replay_opts *opts)
407 switch (opts->action) {
408 case REPLAY_REVERT:
409 return N_("revert");
410 case REPLAY_PICK:
411 return N_("cherry-pick");
412 case REPLAY_INTERACTIVE_REBASE:
413 return N_("rebase");
415 die(_("unknown action: %d"), opts->action);
418 struct commit_message {
419 char *parent_label;
420 char *label;
421 char *subject;
422 const char *message;
425 static const char *short_commit_name(struct commit *commit)
427 return repo_find_unique_abbrev(the_repository, &commit->object.oid,
428 DEFAULT_ABBREV);
431 static int get_message(struct commit *commit, struct commit_message *out)
433 const char *abbrev, *subject;
434 int subject_len;
436 out->message = repo_logmsg_reencode(the_repository, commit, NULL,
437 get_commit_output_encoding());
438 abbrev = short_commit_name(commit);
440 subject_len = find_commit_subject(out->message, &subject);
442 out->subject = xmemdupz(subject, subject_len);
443 out->label = xstrfmt("%s (%s)", abbrev, out->subject);
444 out->parent_label = xstrfmt("parent of %s", out->label);
446 return 0;
449 static void free_message(struct commit *commit, struct commit_message *msg)
451 free(msg->parent_label);
452 free(msg->label);
453 free(msg->subject);
454 repo_unuse_commit_buffer(the_repository, commit, msg->message);
457 static void print_advice(struct repository *r, int show_hint,
458 struct replay_opts *opts)
460 char *msg = getenv("GIT_CHERRY_PICK_HELP");
462 if (msg) {
463 advise("%s\n", msg);
465 * A conflict has occurred but the porcelain
466 * (typically rebase --interactive) wants to take care
467 * of the commit itself so remove CHERRY_PICK_HEAD
469 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
470 NULL, 0);
471 return;
474 if (show_hint) {
475 if (opts->no_commit)
476 advise(_("after resolving the conflicts, mark the corrected paths\n"
477 "with 'git add <paths>' or 'git rm <paths>'"));
478 else if (opts->action == REPLAY_PICK)
479 advise(_("After resolving the conflicts, mark them with\n"
480 "\"git add/rm <pathspec>\", then run\n"
481 "\"git cherry-pick --continue\".\n"
482 "You can instead skip this commit with \"git cherry-pick --skip\".\n"
483 "To abort and get back to the state before \"git cherry-pick\",\n"
484 "run \"git cherry-pick --abort\"."));
485 else if (opts->action == REPLAY_REVERT)
486 advise(_("After resolving the conflicts, mark them with\n"
487 "\"git add/rm <pathspec>\", then run\n"
488 "\"git revert --continue\".\n"
489 "You can instead skip this commit with \"git revert --skip\".\n"
490 "To abort and get back to the state before \"git revert\",\n"
491 "run \"git revert --abort\"."));
492 else
493 BUG("unexpected pick action in print_advice()");
497 static int write_message(const void *buf, size_t len, const char *filename,
498 int append_eol)
500 struct lock_file msg_file = LOCK_INIT;
502 int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
503 if (msg_fd < 0)
504 return error_errno(_("could not lock '%s'"), filename);
505 if (write_in_full(msg_fd, buf, len) < 0) {
506 error_errno(_("could not write to '%s'"), filename);
507 rollback_lock_file(&msg_file);
508 return -1;
510 if (append_eol && write(msg_fd, "\n", 1) < 0) {
511 error_errno(_("could not write eol to '%s'"), filename);
512 rollback_lock_file(&msg_file);
513 return -1;
515 if (commit_lock_file(&msg_file) < 0)
516 return error(_("failed to finalize '%s'"), filename);
518 return 0;
521 int read_oneliner(struct strbuf *buf,
522 const char *path, unsigned flags)
524 int orig_len = buf->len;
526 if (strbuf_read_file(buf, path, 0) < 0) {
527 if ((flags & READ_ONELINER_WARN_MISSING) ||
528 (errno != ENOENT && errno != ENOTDIR))
529 warning_errno(_("could not read '%s'"), path);
530 return 0;
533 if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') {
534 if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r')
535 --buf->len;
536 buf->buf[buf->len] = '\0';
539 if ((flags & READ_ONELINER_SKIP_IF_EMPTY) && buf->len == orig_len)
540 return 0;
542 return 1;
545 static struct tree *empty_tree(struct repository *r)
547 return lookup_tree(r, the_hash_algo->empty_tree);
550 static int error_dirty_index(struct repository *repo, struct replay_opts *opts)
552 if (repo_read_index_unmerged(repo))
553 return error_resolve_conflict(action_name(opts));
555 error(_("your local changes would be overwritten by %s."),
556 _(action_name(opts)));
558 if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE))
559 advise(_("commit your changes or stash them to proceed."));
560 return -1;
563 static void update_abort_safety_file(void)
565 struct object_id head;
567 /* Do nothing on a single-pick */
568 if (!file_exists(git_path_seq_dir()))
569 return;
571 if (!repo_get_oid(the_repository, "HEAD", &head))
572 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head));
573 else
574 write_file(git_path_abort_safety_file(), "%s", "");
577 static int fast_forward_to(struct repository *r,
578 const struct object_id *to,
579 const struct object_id *from,
580 int unborn,
581 struct replay_opts *opts)
583 struct ref_transaction *transaction;
584 struct strbuf sb = STRBUF_INIT;
585 struct strbuf err = STRBUF_INIT;
587 repo_read_index(r);
588 if (checkout_fast_forward(r, from, to, 1))
589 return -1; /* the callee should have complained already */
591 strbuf_addf(&sb, "%s: fast-forward", action_name(opts));
593 transaction = ref_transaction_begin(&err);
594 if (!transaction ||
595 ref_transaction_update(transaction, "HEAD",
596 to, unborn && !is_rebase_i(opts) ?
597 null_oid() : from,
598 0, sb.buf, &err) ||
599 ref_transaction_commit(transaction, &err)) {
600 ref_transaction_free(transaction);
601 error("%s", err.buf);
602 strbuf_release(&sb);
603 strbuf_release(&err);
604 return -1;
607 strbuf_release(&sb);
608 strbuf_release(&err);
609 ref_transaction_free(transaction);
610 update_abort_safety_file();
611 return 0;
614 enum commit_msg_cleanup_mode get_cleanup_mode(const char *cleanup_arg,
615 int use_editor)
617 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
618 return use_editor ? COMMIT_MSG_CLEANUP_ALL :
619 COMMIT_MSG_CLEANUP_SPACE;
620 else if (!strcmp(cleanup_arg, "verbatim"))
621 return COMMIT_MSG_CLEANUP_NONE;
622 else if (!strcmp(cleanup_arg, "whitespace"))
623 return COMMIT_MSG_CLEANUP_SPACE;
624 else if (!strcmp(cleanup_arg, "strip"))
625 return COMMIT_MSG_CLEANUP_ALL;
626 else if (!strcmp(cleanup_arg, "scissors"))
627 return use_editor ? COMMIT_MSG_CLEANUP_SCISSORS :
628 COMMIT_MSG_CLEANUP_SPACE;
629 else
630 die(_("Invalid cleanup mode %s"), cleanup_arg);
634 * NB using int rather than enum cleanup_mode to stop clang's
635 * -Wtautological-constant-out-of-range-compare complaining that the comparison
636 * is always true.
638 static const char *describe_cleanup_mode(int cleanup_mode)
640 static const char *modes[] = { "whitespace",
641 "verbatim",
642 "scissors",
643 "strip" };
645 if (cleanup_mode < ARRAY_SIZE(modes))
646 return modes[cleanup_mode];
648 BUG("invalid cleanup_mode provided (%d)", cleanup_mode);
651 void append_conflicts_hint(struct index_state *istate,
652 struct strbuf *msgbuf, enum commit_msg_cleanup_mode cleanup_mode)
654 int i;
656 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
657 strbuf_addch(msgbuf, '\n');
658 wt_status_append_cut_line(msgbuf);
659 strbuf_addch(msgbuf, comment_line_char);
662 strbuf_addch(msgbuf, '\n');
663 strbuf_commented_addf(msgbuf, "Conflicts:\n");
664 for (i = 0; i < istate->cache_nr;) {
665 const struct cache_entry *ce = istate->cache[i++];
666 if (ce_stage(ce)) {
667 strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
668 while (i < istate->cache_nr &&
669 !strcmp(ce->name, istate->cache[i]->name))
670 i++;
675 static int do_recursive_merge(struct repository *r,
676 struct commit *base, struct commit *next,
677 const char *base_label, const char *next_label,
678 struct object_id *head, struct strbuf *msgbuf,
679 struct replay_opts *opts)
681 struct merge_options o;
682 struct merge_result result;
683 struct tree *next_tree, *base_tree, *head_tree;
684 int clean, show_output;
685 int i;
686 struct lock_file index_lock = LOCK_INIT;
688 if (repo_hold_locked_index(r, &index_lock, LOCK_REPORT_ON_ERROR) < 0)
689 return -1;
691 repo_read_index(r);
693 init_merge_options(&o, r);
694 o.ancestor = base ? base_label : "(empty tree)";
695 o.branch1 = "HEAD";
696 o.branch2 = next ? next_label : "(empty tree)";
697 if (is_rebase_i(opts))
698 o.buffer_output = 2;
699 o.show_rename_progress = 1;
701 head_tree = parse_tree_indirect(head);
702 next_tree = next ? repo_get_commit_tree(r, next) : empty_tree(r);
703 base_tree = base ? repo_get_commit_tree(r, base) : empty_tree(r);
705 for (i = 0; i < opts->xopts.nr; i++)
706 parse_merge_opt(&o, opts->xopts.v[i]);
708 if (!opts->strategy || !strcmp(opts->strategy, "ort")) {
709 memset(&result, 0, sizeof(result));
710 merge_incore_nonrecursive(&o, base_tree, head_tree, next_tree,
711 &result);
712 show_output = !is_rebase_i(opts) || !result.clean;
714 * TODO: merge_switch_to_result will update index/working tree;
715 * we only really want to do that if !result.clean || this is
716 * the final patch to be picked. But determining this is the
717 * final patch would take some work, and "head_tree" would need
718 * to be replace with the tree the index matched before we
719 * started doing any picks.
721 merge_switch_to_result(&o, head_tree, &result, 1, show_output);
722 clean = result.clean;
723 } else {
724 ensure_full_index(r->index);
725 clean = merge_trees(&o, head_tree, next_tree, base_tree);
726 if (is_rebase_i(opts) && clean <= 0)
727 fputs(o.obuf.buf, stdout);
728 strbuf_release(&o.obuf);
730 if (clean < 0) {
731 rollback_lock_file(&index_lock);
732 return clean;
735 if (write_locked_index(r->index, &index_lock,
736 COMMIT_LOCK | SKIP_IF_UNCHANGED))
738 * TRANSLATORS: %s will be "revert", "cherry-pick" or
739 * "rebase".
741 return error(_("%s: Unable to write new index file"),
742 _(action_name(opts)));
744 if (!clean)
745 append_conflicts_hint(r->index, msgbuf,
746 opts->default_msg_cleanup);
748 return !clean;
751 static struct object_id *get_cache_tree_oid(struct index_state *istate)
753 if (!cache_tree_fully_valid(istate->cache_tree))
754 if (cache_tree_update(istate, 0)) {
755 error(_("unable to update cache tree"));
756 return NULL;
759 return &istate->cache_tree->oid;
762 static int is_index_unchanged(struct repository *r)
764 struct object_id head_oid, *cache_tree_oid;
765 struct commit *head_commit;
766 struct index_state *istate = r->index;
768 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL))
769 return error(_("could not resolve HEAD commit"));
771 head_commit = lookup_commit(r, &head_oid);
774 * If head_commit is NULL, check_commit, called from
775 * lookup_commit, would have indicated that head_commit is not
776 * a commit object already. repo_parse_commit() will return failure
777 * without further complaints in such a case. Otherwise, if
778 * the commit is invalid, repo_parse_commit() will complain. So
779 * there is nothing for us to say here. Just return failure.
781 if (repo_parse_commit(r, head_commit))
782 return -1;
784 if (!(cache_tree_oid = get_cache_tree_oid(istate)))
785 return -1;
787 return oideq(cache_tree_oid, get_commit_tree_oid(head_commit));
790 static int write_author_script(const char *message)
792 struct strbuf buf = STRBUF_INIT;
793 const char *eol;
794 int res;
796 for (;;)
797 if (!*message || starts_with(message, "\n")) {
798 missing_author:
799 /* Missing 'author' line? */
800 unlink(rebase_path_author_script());
801 return 0;
802 } else if (skip_prefix(message, "author ", &message))
803 break;
804 else if ((eol = strchr(message, '\n')))
805 message = eol + 1;
806 else
807 goto missing_author;
809 strbuf_addstr(&buf, "GIT_AUTHOR_NAME='");
810 while (*message && *message != '\n' && *message != '\r')
811 if (skip_prefix(message, " <", &message))
812 break;
813 else if (*message != '\'')
814 strbuf_addch(&buf, *(message++));
815 else
816 strbuf_addf(&buf, "'\\%c'", *(message++));
817 strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='");
818 while (*message && *message != '\n' && *message != '\r')
819 if (skip_prefix(message, "> ", &message))
820 break;
821 else if (*message != '\'')
822 strbuf_addch(&buf, *(message++));
823 else
824 strbuf_addf(&buf, "'\\%c'", *(message++));
825 strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@");
826 while (*message && *message != '\n' && *message != '\r')
827 if (*message != '\'')
828 strbuf_addch(&buf, *(message++));
829 else
830 strbuf_addf(&buf, "'\\%c'", *(message++));
831 strbuf_addch(&buf, '\'');
832 res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1);
833 strbuf_release(&buf);
834 return res;
838 * Take a series of KEY='VALUE' lines where VALUE part is
839 * sq-quoted, and append <KEY, VALUE> at the end of the string list
841 static int parse_key_value_squoted(char *buf, struct string_list *list)
843 while (*buf) {
844 struct string_list_item *item;
845 char *np;
846 char *cp = strchr(buf, '=');
847 if (!cp) {
848 np = strchrnul(buf, '\n');
849 return error(_("no key present in '%.*s'"),
850 (int) (np - buf), buf);
852 np = strchrnul(cp, '\n');
853 *cp++ = '\0';
854 item = string_list_append(list, buf);
856 buf = np + (*np == '\n');
857 *np = '\0';
858 cp = sq_dequote(cp);
859 if (!cp)
860 return error(_("unable to dequote value of '%s'"),
861 item->string);
862 item->util = xstrdup(cp);
864 return 0;
868 * Reads and parses the state directory's "author-script" file, and sets name,
869 * email and date accordingly.
870 * Returns 0 on success, -1 if the file could not be parsed.
872 * The author script is of the format:
874 * GIT_AUTHOR_NAME='$author_name'
875 * GIT_AUTHOR_EMAIL='$author_email'
876 * GIT_AUTHOR_DATE='$author_date'
878 * where $author_name, $author_email and $author_date are quoted. We are strict
879 * with our parsing, as the file was meant to be eval'd in the now-removed
880 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
881 * from what this function expects, it is better to bail out than to do
882 * something that the user does not expect.
884 int read_author_script(const char *path, char **name, char **email, char **date,
885 int allow_missing)
887 struct strbuf buf = STRBUF_INIT;
888 struct string_list kv = STRING_LIST_INIT_DUP;
889 int retval = -1; /* assume failure */
890 int i, name_i = -2, email_i = -2, date_i = -2, err = 0;
892 if (strbuf_read_file(&buf, path, 256) <= 0) {
893 strbuf_release(&buf);
894 if (errno == ENOENT && allow_missing)
895 return 0;
896 else
897 return error_errno(_("could not open '%s' for reading"),
898 path);
901 if (parse_key_value_squoted(buf.buf, &kv))
902 goto finish;
904 for (i = 0; i < kv.nr; i++) {
905 if (!strcmp(kv.items[i].string, "GIT_AUTHOR_NAME")) {
906 if (name_i != -2)
907 name_i = error(_("'GIT_AUTHOR_NAME' already given"));
908 else
909 name_i = i;
910 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_EMAIL")) {
911 if (email_i != -2)
912 email_i = error(_("'GIT_AUTHOR_EMAIL' already given"));
913 else
914 email_i = i;
915 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_DATE")) {
916 if (date_i != -2)
917 date_i = error(_("'GIT_AUTHOR_DATE' already given"));
918 else
919 date_i = i;
920 } else {
921 err = error(_("unknown variable '%s'"),
922 kv.items[i].string);
925 if (name_i == -2)
926 error(_("missing 'GIT_AUTHOR_NAME'"));
927 if (email_i == -2)
928 error(_("missing 'GIT_AUTHOR_EMAIL'"));
929 if (date_i == -2)
930 error(_("missing 'GIT_AUTHOR_DATE'"));
931 if (name_i < 0 || email_i < 0 || date_i < 0 || err)
932 goto finish;
933 *name = kv.items[name_i].util;
934 *email = kv.items[email_i].util;
935 *date = kv.items[date_i].util;
936 retval = 0;
937 finish:
938 string_list_clear(&kv, !!retval);
939 strbuf_release(&buf);
940 return retval;
944 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
945 * file with shell quoting into struct strvec. Returns -1 on
946 * error, 0 otherwise.
948 static int read_env_script(struct strvec *env)
950 char *name, *email, *date;
952 if (read_author_script(rebase_path_author_script(),
953 &name, &email, &date, 0))
954 return -1;
956 strvec_pushf(env, "GIT_AUTHOR_NAME=%s", name);
957 strvec_pushf(env, "GIT_AUTHOR_EMAIL=%s", email);
958 strvec_pushf(env, "GIT_AUTHOR_DATE=%s", date);
959 free(name);
960 free(email);
961 free(date);
963 return 0;
966 static char *get_author(const char *message)
968 size_t len;
969 const char *a;
971 a = find_commit_header(message, "author", &len);
972 if (a)
973 return xmemdupz(a, len);
975 return NULL;
978 static const char *author_date_from_env(const struct strvec *env)
980 int i;
981 const char *date;
983 for (i = 0; i < env->nr; i++)
984 if (skip_prefix(env->v[i],
985 "GIT_AUTHOR_DATE=", &date))
986 return date;
988 * If GIT_AUTHOR_DATE is missing we should have already errored out when
989 * reading the script
991 BUG("GIT_AUTHOR_DATE missing from author script");
994 static const char staged_changes_advice[] =
995 N_("you have staged changes in your working tree\n"
996 "If these changes are meant to be squashed into the previous commit, run:\n"
997 "\n"
998 " git commit --amend %s\n"
999 "\n"
1000 "If they are meant to go into a new commit, run:\n"
1001 "\n"
1002 " git commit %s\n"
1003 "\n"
1004 "In both cases, once you're done, continue with:\n"
1005 "\n"
1006 " git rebase --continue\n");
1008 #define ALLOW_EMPTY (1<<0)
1009 #define EDIT_MSG (1<<1)
1010 #define AMEND_MSG (1<<2)
1011 #define CLEANUP_MSG (1<<3)
1012 #define VERIFY_MSG (1<<4)
1013 #define CREATE_ROOT_COMMIT (1<<5)
1014 #define VERBATIM_MSG (1<<6)
1016 static int run_command_silent_on_success(struct child_process *cmd)
1018 struct strbuf buf = STRBUF_INIT;
1019 int rc;
1021 cmd->stdout_to_stderr = 1;
1022 rc = pipe_command(cmd,
1023 NULL, 0,
1024 NULL, 0,
1025 &buf, 0);
1027 if (rc)
1028 fputs(buf.buf, stderr);
1029 strbuf_release(&buf);
1030 return rc;
1034 * If we are cherry-pick, and if the merge did not result in
1035 * hand-editing, we will hit this commit and inherit the original
1036 * author date and name.
1038 * If we are revert, or if our cherry-pick results in a hand merge,
1039 * we had better say that the current user is responsible for that.
1041 * An exception is when run_git_commit() is called during an
1042 * interactive rebase: in that case, we will want to retain the
1043 * author metadata.
1045 static int run_git_commit(const char *defmsg,
1046 struct replay_opts *opts,
1047 unsigned int flags)
1049 struct child_process cmd = CHILD_PROCESS_INIT;
1051 if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG))
1052 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1054 cmd.git_cmd = 1;
1056 if (is_rebase_i(opts) &&
1057 ((opts->committer_date_is_author_date && !opts->ignore_date) ||
1058 !(!defmsg && (flags & AMEND_MSG))) &&
1059 read_env_script(&cmd.env)) {
1060 const char *gpg_opt = gpg_sign_opt_quoted(opts);
1062 return error(_(staged_changes_advice),
1063 gpg_opt, gpg_opt);
1066 strvec_pushf(&cmd.env, GIT_REFLOG_ACTION "=%s", opts->reflog_message);
1068 if (opts->committer_date_is_author_date)
1069 strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s",
1070 opts->ignore_date ?
1071 "" :
1072 author_date_from_env(&cmd.env));
1073 if (opts->ignore_date)
1074 strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
1076 strvec_push(&cmd.args, "commit");
1078 if (!(flags & VERIFY_MSG))
1079 strvec_push(&cmd.args, "-n");
1080 if ((flags & AMEND_MSG))
1081 strvec_push(&cmd.args, "--amend");
1082 if (opts->gpg_sign)
1083 strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign);
1084 else
1085 strvec_push(&cmd.args, "--no-gpg-sign");
1086 if (defmsg)
1087 strvec_pushl(&cmd.args, "-F", defmsg, NULL);
1088 else if (!(flags & EDIT_MSG))
1089 strvec_pushl(&cmd.args, "-C", "HEAD", NULL);
1090 if ((flags & CLEANUP_MSG))
1091 strvec_push(&cmd.args, "--cleanup=strip");
1092 if ((flags & VERBATIM_MSG))
1093 strvec_push(&cmd.args, "--cleanup=verbatim");
1094 if ((flags & EDIT_MSG))
1095 strvec_push(&cmd.args, "-e");
1096 else if (!(flags & CLEANUP_MSG) &&
1097 !opts->signoff && !opts->record_origin &&
1098 !opts->explicit_cleanup)
1099 strvec_push(&cmd.args, "--cleanup=verbatim");
1101 if ((flags & ALLOW_EMPTY))
1102 strvec_push(&cmd.args, "--allow-empty");
1104 if (!(flags & EDIT_MSG))
1105 strvec_push(&cmd.args, "--allow-empty-message");
1107 if (is_rebase_i(opts) && !(flags & EDIT_MSG))
1108 return run_command_silent_on_success(&cmd);
1109 else
1110 return run_command(&cmd);
1113 static int rest_is_empty(const struct strbuf *sb, int start)
1115 int i, eol;
1116 const char *nl;
1118 /* Check if the rest is just whitespace and Signed-off-by's. */
1119 for (i = start; i < sb->len; i++) {
1120 nl = memchr(sb->buf + i, '\n', sb->len - i);
1121 if (nl)
1122 eol = nl - sb->buf;
1123 else
1124 eol = sb->len;
1126 if (strlen(sign_off_header) <= eol - i &&
1127 starts_with(sb->buf + i, sign_off_header)) {
1128 i = eol;
1129 continue;
1131 while (i < eol)
1132 if (!isspace(sb->buf[i++]))
1133 return 0;
1136 return 1;
1139 void cleanup_message(struct strbuf *msgbuf,
1140 enum commit_msg_cleanup_mode cleanup_mode, int verbose)
1142 if (verbose || /* Truncate the message just before the diff, if any. */
1143 cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS)
1144 strbuf_setlen(msgbuf, wt_status_locate_end(msgbuf->buf, msgbuf->len));
1145 if (cleanup_mode != COMMIT_MSG_CLEANUP_NONE)
1146 strbuf_stripspace(msgbuf, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1150 * Find out if the message in the strbuf contains only whitespace and
1151 * Signed-off-by lines.
1153 int message_is_empty(const struct strbuf *sb,
1154 enum commit_msg_cleanup_mode cleanup_mode)
1156 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1157 return 0;
1158 return rest_is_empty(sb, 0);
1162 * See if the user edited the message in the editor or left what
1163 * was in the template intact
1165 int template_untouched(const struct strbuf *sb, const char *template_file,
1166 enum commit_msg_cleanup_mode cleanup_mode)
1168 struct strbuf tmpl = STRBUF_INIT;
1169 const char *start;
1171 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1172 return 0;
1174 if (!template_file || strbuf_read_file(&tmpl, template_file, 0) <= 0)
1175 return 0;
1177 strbuf_stripspace(&tmpl, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1178 if (!skip_prefix(sb->buf, tmpl.buf, &start))
1179 start = sb->buf;
1180 strbuf_release(&tmpl);
1181 return rest_is_empty(sb, start - sb->buf);
1184 int update_head_with_reflog(const struct commit *old_head,
1185 const struct object_id *new_head,
1186 const char *action, const struct strbuf *msg,
1187 struct strbuf *err)
1189 struct ref_transaction *transaction;
1190 struct strbuf sb = STRBUF_INIT;
1191 const char *nl;
1192 int ret = 0;
1194 if (action) {
1195 strbuf_addstr(&sb, action);
1196 strbuf_addstr(&sb, ": ");
1199 nl = strchr(msg->buf, '\n');
1200 if (nl) {
1201 strbuf_add(&sb, msg->buf, nl + 1 - msg->buf);
1202 } else {
1203 strbuf_addbuf(&sb, msg);
1204 strbuf_addch(&sb, '\n');
1207 transaction = ref_transaction_begin(err);
1208 if (!transaction ||
1209 ref_transaction_update(transaction, "HEAD", new_head,
1210 old_head ? &old_head->object.oid : null_oid(),
1211 0, sb.buf, err) ||
1212 ref_transaction_commit(transaction, err)) {
1213 ret = -1;
1215 ref_transaction_free(transaction);
1216 strbuf_release(&sb);
1218 return ret;
1221 static int run_rewrite_hook(const struct object_id *oldoid,
1222 const struct object_id *newoid)
1224 struct child_process proc = CHILD_PROCESS_INIT;
1225 int code;
1226 struct strbuf sb = STRBUF_INIT;
1227 const char *hook_path = find_hook("post-rewrite");
1229 if (!hook_path)
1230 return 0;
1232 strvec_pushl(&proc.args, hook_path, "amend", NULL);
1233 proc.in = -1;
1234 proc.stdout_to_stderr = 1;
1235 proc.trace2_hook_name = "post-rewrite";
1237 code = start_command(&proc);
1238 if (code)
1239 return code;
1240 strbuf_addf(&sb, "%s %s\n", oid_to_hex(oldoid), oid_to_hex(newoid));
1241 sigchain_push(SIGPIPE, SIG_IGN);
1242 write_in_full(proc.in, sb.buf, sb.len);
1243 close(proc.in);
1244 strbuf_release(&sb);
1245 sigchain_pop(SIGPIPE);
1246 return finish_command(&proc);
1249 void commit_post_rewrite(struct repository *r,
1250 const struct commit *old_head,
1251 const struct object_id *new_head)
1253 struct notes_rewrite_cfg *cfg;
1255 cfg = init_copy_notes_for_rewrite("amend");
1256 if (cfg) {
1257 /* we are amending, so old_head is not NULL */
1258 copy_note_for_rewrite(cfg, &old_head->object.oid, new_head);
1259 finish_copy_notes_for_rewrite(r, cfg, "Notes added by 'git commit --amend'");
1261 run_rewrite_hook(&old_head->object.oid, new_head);
1264 static int run_prepare_commit_msg_hook(struct repository *r,
1265 struct strbuf *msg,
1266 const char *commit)
1268 int ret = 0;
1269 const char *name, *arg1 = NULL, *arg2 = NULL;
1271 name = git_path_commit_editmsg();
1272 if (write_message(msg->buf, msg->len, name, 0))
1273 return -1;
1275 if (commit) {
1276 arg1 = "commit";
1277 arg2 = commit;
1278 } else {
1279 arg1 = "message";
1281 if (run_commit_hook(0, r->index_file, NULL, "prepare-commit-msg", name,
1282 arg1, arg2, NULL))
1283 ret = error(_("'prepare-commit-msg' hook failed"));
1285 return ret;
1288 static const char implicit_ident_advice_noconfig[] =
1289 N_("Your name and email address were configured automatically based\n"
1290 "on your username and hostname. Please check that they are accurate.\n"
1291 "You can suppress this message by setting them explicitly. Run the\n"
1292 "following command and follow the instructions in your editor to edit\n"
1293 "your configuration file:\n"
1294 "\n"
1295 " git config --global --edit\n"
1296 "\n"
1297 "After doing this, you may fix the identity used for this commit with:\n"
1298 "\n"
1299 " git commit --amend --reset-author\n");
1301 static const char implicit_ident_advice_config[] =
1302 N_("Your name and email address were configured automatically based\n"
1303 "on your username and hostname. Please check that they are accurate.\n"
1304 "You can suppress this message by setting them explicitly:\n"
1305 "\n"
1306 " git config --global user.name \"Your Name\"\n"
1307 " git config --global user.email you@example.com\n"
1308 "\n"
1309 "After doing this, you may fix the identity used for this commit with:\n"
1310 "\n"
1311 " git commit --amend --reset-author\n");
1313 static const char *implicit_ident_advice(void)
1315 char *user_config = interpolate_path("~/.gitconfig", 0);
1316 char *xdg_config = xdg_config_home("config");
1317 int config_exists = file_exists(user_config) || file_exists(xdg_config);
1319 free(user_config);
1320 free(xdg_config);
1322 if (config_exists)
1323 return _(implicit_ident_advice_config);
1324 else
1325 return _(implicit_ident_advice_noconfig);
1329 void print_commit_summary(struct repository *r,
1330 const char *prefix,
1331 const struct object_id *oid,
1332 unsigned int flags)
1334 struct rev_info rev;
1335 struct commit *commit;
1336 struct strbuf format = STRBUF_INIT;
1337 const char *head;
1338 struct pretty_print_context pctx = {0};
1339 struct strbuf author_ident = STRBUF_INIT;
1340 struct strbuf committer_ident = STRBUF_INIT;
1341 struct ref_store *refs;
1343 commit = lookup_commit(r, oid);
1344 if (!commit)
1345 die(_("couldn't look up newly created commit"));
1346 if (repo_parse_commit(r, commit))
1347 die(_("could not parse newly created commit"));
1349 strbuf_addstr(&format, "format:%h] %s");
1351 repo_format_commit_message(r, commit, "%an <%ae>", &author_ident,
1352 &pctx);
1353 repo_format_commit_message(r, commit, "%cn <%ce>", &committer_ident,
1354 &pctx);
1355 if (strbuf_cmp(&author_ident, &committer_ident)) {
1356 strbuf_addstr(&format, "\n Author: ");
1357 strbuf_addbuf_percentquote(&format, &author_ident);
1359 if (flags & SUMMARY_SHOW_AUTHOR_DATE) {
1360 struct strbuf date = STRBUF_INIT;
1362 repo_format_commit_message(r, commit, "%ad", &date, &pctx);
1363 strbuf_addstr(&format, "\n Date: ");
1364 strbuf_addbuf_percentquote(&format, &date);
1365 strbuf_release(&date);
1367 if (!committer_ident_sufficiently_given()) {
1368 strbuf_addstr(&format, "\n Committer: ");
1369 strbuf_addbuf_percentquote(&format, &committer_ident);
1370 if (advice_enabled(ADVICE_IMPLICIT_IDENTITY)) {
1371 strbuf_addch(&format, '\n');
1372 strbuf_addstr(&format, implicit_ident_advice());
1375 strbuf_release(&author_ident);
1376 strbuf_release(&committer_ident);
1378 repo_init_revisions(r, &rev, prefix);
1379 setup_revisions(0, NULL, &rev, NULL);
1381 rev.diff = 1;
1382 rev.diffopt.output_format =
1383 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1385 rev.verbose_header = 1;
1386 rev.show_root_diff = 1;
1387 get_commit_format(format.buf, &rev);
1388 rev.always_show_header = 0;
1389 rev.diffopt.detect_rename = DIFF_DETECT_RENAME;
1390 diff_setup_done(&rev.diffopt);
1392 refs = get_main_ref_store(r);
1393 head = refs_resolve_ref_unsafe(refs, "HEAD", 0, NULL, NULL);
1394 if (!head)
1395 die(_("unable to resolve HEAD after creating commit"));
1396 if (!strcmp(head, "HEAD"))
1397 head = _("detached HEAD");
1398 else
1399 skip_prefix(head, "refs/heads/", &head);
1400 printf("[%s%s ", head, (flags & SUMMARY_INITIAL_COMMIT) ?
1401 _(" (root-commit)") : "");
1403 if (!log_tree_commit(&rev, commit)) {
1404 rev.always_show_header = 1;
1405 rev.use_terminator = 1;
1406 log_tree_commit(&rev, commit);
1409 release_revisions(&rev);
1410 strbuf_release(&format);
1413 static int parse_head(struct repository *r, struct commit **head)
1415 struct commit *current_head;
1416 struct object_id oid;
1418 if (repo_get_oid(r, "HEAD", &oid)) {
1419 current_head = NULL;
1420 } else {
1421 current_head = lookup_commit_reference(r, &oid);
1422 if (!current_head)
1423 return error(_("could not parse HEAD"));
1424 if (!oideq(&oid, &current_head->object.oid)) {
1425 warning(_("HEAD %s is not a commit!"),
1426 oid_to_hex(&oid));
1428 if (repo_parse_commit(r, current_head))
1429 return error(_("could not parse HEAD commit"));
1431 *head = current_head;
1433 return 0;
1437 * Try to commit without forking 'git commit'. In some cases we need
1438 * to run 'git commit' to display an error message
1440 * Returns:
1441 * -1 - error unable to commit
1442 * 0 - success
1443 * 1 - run 'git commit'
1445 static int try_to_commit(struct repository *r,
1446 struct strbuf *msg, const char *author,
1447 struct replay_opts *opts, unsigned int flags,
1448 struct object_id *oid)
1450 struct object_id tree;
1451 struct commit *current_head = NULL;
1452 struct commit_list *parents = NULL;
1453 struct commit_extra_header *extra = NULL;
1454 struct strbuf err = STRBUF_INIT;
1455 struct strbuf commit_msg = STRBUF_INIT;
1456 char *amend_author = NULL;
1457 const char *committer = NULL;
1458 const char *hook_commit = NULL;
1459 enum commit_msg_cleanup_mode cleanup;
1460 int res = 0;
1462 if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG))
1463 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1465 if (parse_head(r, &current_head))
1466 return -1;
1468 if (flags & AMEND_MSG) {
1469 const char *exclude_gpgsig[] = { "gpgsig", "gpgsig-sha256", NULL };
1470 const char *out_enc = get_commit_output_encoding();
1471 const char *message = repo_logmsg_reencode(r, current_head,
1472 NULL, out_enc);
1474 if (!msg) {
1475 const char *orig_message = NULL;
1477 find_commit_subject(message, &orig_message);
1478 msg = &commit_msg;
1479 strbuf_addstr(msg, orig_message);
1480 hook_commit = "HEAD";
1482 author = amend_author = get_author(message);
1483 repo_unuse_commit_buffer(r, current_head,
1484 message);
1485 if (!author) {
1486 res = error(_("unable to parse commit author"));
1487 goto out;
1489 parents = copy_commit_list(current_head->parents);
1490 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1491 } else if (current_head &&
1492 (!(flags & CREATE_ROOT_COMMIT) || (flags & AMEND_MSG))) {
1493 commit_list_insert(current_head, &parents);
1496 if (write_index_as_tree(&tree, r->index, r->index_file, 0, NULL)) {
1497 res = error(_("git write-tree failed to write a tree"));
1498 goto out;
1501 if (!(flags & ALLOW_EMPTY)) {
1502 struct commit *first_parent = current_head;
1504 if (flags & AMEND_MSG) {
1505 if (current_head->parents) {
1506 first_parent = current_head->parents->item;
1507 if (repo_parse_commit(r, first_parent)) {
1508 res = error(_("could not parse HEAD commit"));
1509 goto out;
1511 } else {
1512 first_parent = NULL;
1515 if (oideq(first_parent
1516 ? get_commit_tree_oid(first_parent)
1517 : the_hash_algo->empty_tree,
1518 &tree)) {
1519 res = 1; /* run 'git commit' to display error message */
1520 goto out;
1524 if (hook_exists("prepare-commit-msg")) {
1525 res = run_prepare_commit_msg_hook(r, msg, hook_commit);
1526 if (res)
1527 goto out;
1528 if (strbuf_read_file(&commit_msg, git_path_commit_editmsg(),
1529 2048) < 0) {
1530 res = error_errno(_("unable to read commit message "
1531 "from '%s'"),
1532 git_path_commit_editmsg());
1533 goto out;
1535 msg = &commit_msg;
1538 if (flags & CLEANUP_MSG)
1539 cleanup = COMMIT_MSG_CLEANUP_ALL;
1540 else if (flags & VERBATIM_MSG)
1541 cleanup = COMMIT_MSG_CLEANUP_NONE;
1542 else if ((opts->signoff || opts->record_origin) &&
1543 !opts->explicit_cleanup)
1544 cleanup = COMMIT_MSG_CLEANUP_SPACE;
1545 else
1546 cleanup = opts->default_msg_cleanup;
1548 if (cleanup != COMMIT_MSG_CLEANUP_NONE)
1549 strbuf_stripspace(msg, cleanup == COMMIT_MSG_CLEANUP_ALL);
1550 if ((flags & EDIT_MSG) && message_is_empty(msg, cleanup)) {
1551 res = 1; /* run 'git commit' to display error message */
1552 goto out;
1555 if (opts->committer_date_is_author_date) {
1556 struct ident_split id;
1557 struct strbuf date = STRBUF_INIT;
1559 if (!opts->ignore_date) {
1560 if (split_ident_line(&id, author, (int)strlen(author)) < 0) {
1561 res = error(_("invalid author identity '%s'"),
1562 author);
1563 goto out;
1565 if (!id.date_begin) {
1566 res = error(_(
1567 "corrupt author: missing date information"));
1568 goto out;
1570 strbuf_addf(&date, "@%.*s %.*s",
1571 (int)(id.date_end - id.date_begin),
1572 id.date_begin,
1573 (int)(id.tz_end - id.tz_begin),
1574 id.tz_begin);
1575 } else {
1576 reset_ident_date();
1578 committer = fmt_ident(getenv("GIT_COMMITTER_NAME"),
1579 getenv("GIT_COMMITTER_EMAIL"),
1580 WANT_COMMITTER_IDENT,
1581 opts->ignore_date ? NULL : date.buf,
1582 IDENT_STRICT);
1583 strbuf_release(&date);
1584 } else {
1585 reset_ident_date();
1588 if (opts->ignore_date) {
1589 struct ident_split id;
1590 char *name, *email;
1592 if (split_ident_line(&id, author, strlen(author)) < 0) {
1593 error(_("invalid author identity '%s'"), author);
1594 goto out;
1596 name = xmemdupz(id.name_begin, id.name_end - id.name_begin);
1597 email = xmemdupz(id.mail_begin, id.mail_end - id.mail_begin);
1598 author = fmt_ident(name, email, WANT_AUTHOR_IDENT, NULL,
1599 IDENT_STRICT);
1600 free(name);
1601 free(email);
1604 if (commit_tree_extended(msg->buf, msg->len, &tree, parents, oid,
1605 author, committer, opts->gpg_sign, extra)) {
1606 res = error(_("failed to write commit object"));
1607 goto out;
1610 if (update_head_with_reflog(current_head, oid, opts->reflog_message,
1611 msg, &err)) {
1612 res = error("%s", err.buf);
1613 goto out;
1616 run_commit_hook(0, r->index_file, NULL, "post-commit", NULL);
1617 if (flags & AMEND_MSG)
1618 commit_post_rewrite(r, current_head, oid);
1620 out:
1621 free_commit_extra_headers(extra);
1622 strbuf_release(&err);
1623 strbuf_release(&commit_msg);
1624 free(amend_author);
1626 return res;
1629 static int write_rebase_head(struct object_id *oid)
1631 if (update_ref("rebase", "REBASE_HEAD", oid,
1632 NULL, REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
1633 return error(_("could not update %s"), "REBASE_HEAD");
1635 return 0;
1638 static int do_commit(struct repository *r,
1639 const char *msg_file, const char *author,
1640 struct replay_opts *opts, unsigned int flags,
1641 struct object_id *oid)
1643 int res = 1;
1645 if (!(flags & EDIT_MSG) && !(flags & VERIFY_MSG)) {
1646 struct object_id oid;
1647 struct strbuf sb = STRBUF_INIT;
1649 if (msg_file && strbuf_read_file(&sb, msg_file, 2048) < 0)
1650 return error_errno(_("unable to read commit message "
1651 "from '%s'"),
1652 msg_file);
1654 res = try_to_commit(r, msg_file ? &sb : NULL,
1655 author, opts, flags, &oid);
1656 strbuf_release(&sb);
1657 if (!res) {
1658 refs_delete_ref(get_main_ref_store(r), "",
1659 "CHERRY_PICK_HEAD", NULL, 0);
1660 unlink(git_path_merge_msg(r));
1661 if (!is_rebase_i(opts))
1662 print_commit_summary(r, NULL, &oid,
1663 SUMMARY_SHOW_AUTHOR_DATE);
1664 return res;
1667 if (res == 1) {
1668 if (is_rebase_i(opts) && oid)
1669 if (write_rebase_head(oid))
1670 return -1;
1671 return run_git_commit(msg_file, opts, flags);
1674 return res;
1677 static int is_original_commit_empty(struct commit *commit)
1679 const struct object_id *ptree_oid;
1681 if (repo_parse_commit(the_repository, commit))
1682 return error(_("could not parse commit %s"),
1683 oid_to_hex(&commit->object.oid));
1684 if (commit->parents) {
1685 struct commit *parent = commit->parents->item;
1686 if (repo_parse_commit(the_repository, parent))
1687 return error(_("could not parse parent commit %s"),
1688 oid_to_hex(&parent->object.oid));
1689 ptree_oid = get_commit_tree_oid(parent);
1690 } else {
1691 ptree_oid = the_hash_algo->empty_tree; /* commit is root */
1694 return oideq(ptree_oid, get_commit_tree_oid(commit));
1698 * Should empty commits be allowed? Return status:
1699 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1700 * 0: Halt on empty commit
1701 * 1: Allow empty commit
1702 * 2: Drop empty commit
1704 static int allow_empty(struct repository *r,
1705 struct replay_opts *opts,
1706 struct commit *commit)
1708 int index_unchanged, originally_empty;
1711 * Four cases:
1713 * (1) we do not allow empty at all and error out.
1715 * (2) we allow ones that were initially empty, and
1716 * just drop the ones that become empty
1718 * (3) we allow ones that were initially empty, but
1719 * halt for the ones that become empty;
1721 * (4) we allow both.
1723 if (!opts->allow_empty)
1724 return 0; /* let "git commit" barf as necessary */
1726 index_unchanged = is_index_unchanged(r);
1727 if (index_unchanged < 0)
1728 return index_unchanged;
1729 if (!index_unchanged)
1730 return 0; /* we do not have to say --allow-empty */
1732 if (opts->keep_redundant_commits)
1733 return 1;
1735 originally_empty = is_original_commit_empty(commit);
1736 if (originally_empty < 0)
1737 return originally_empty;
1738 if (originally_empty)
1739 return 1;
1740 else if (opts->drop_redundant_commits)
1741 return 2;
1742 else
1743 return 0;
1746 static struct {
1747 char c;
1748 const char *str;
1749 } todo_command_info[] = {
1750 [TODO_PICK] = { 'p', "pick" },
1751 [TODO_REVERT] = { 0, "revert" },
1752 [TODO_EDIT] = { 'e', "edit" },
1753 [TODO_REWORD] = { 'r', "reword" },
1754 [TODO_FIXUP] = { 'f', "fixup" },
1755 [TODO_SQUASH] = { 's', "squash" },
1756 [TODO_EXEC] = { 'x', "exec" },
1757 [TODO_BREAK] = { 'b', "break" },
1758 [TODO_LABEL] = { 'l', "label" },
1759 [TODO_RESET] = { 't', "reset" },
1760 [TODO_MERGE] = { 'm', "merge" },
1761 [TODO_UPDATE_REF] = { 'u', "update-ref" },
1762 [TODO_NOOP] = { 0, "noop" },
1763 [TODO_DROP] = { 'd', "drop" },
1764 [TODO_COMMENT] = { 0, NULL },
1767 static const char *command_to_string(const enum todo_command command)
1769 if (command < TODO_COMMENT)
1770 return todo_command_info[command].str;
1771 die(_("unknown command: %d"), command);
1774 static char command_to_char(const enum todo_command command)
1776 if (command < TODO_COMMENT)
1777 return todo_command_info[command].c;
1778 return comment_line_char;
1781 static int is_noop(const enum todo_command command)
1783 return TODO_NOOP <= command;
1786 static int is_fixup(enum todo_command command)
1788 return command == TODO_FIXUP || command == TODO_SQUASH;
1791 /* Does this command create a (non-merge) commit? */
1792 static int is_pick_or_similar(enum todo_command command)
1794 switch (command) {
1795 case TODO_PICK:
1796 case TODO_REVERT:
1797 case TODO_EDIT:
1798 case TODO_REWORD:
1799 case TODO_FIXUP:
1800 case TODO_SQUASH:
1801 return 1;
1802 default:
1803 return 0;
1807 enum todo_item_flags {
1808 TODO_EDIT_MERGE_MSG = (1 << 0),
1809 TODO_REPLACE_FIXUP_MSG = (1 << 1),
1810 TODO_EDIT_FIXUP_MSG = (1 << 2),
1813 static const char first_commit_msg_str[] = N_("This is the 1st commit message:");
1814 static const char nth_commit_msg_fmt[] = N_("This is the commit message #%d:");
1815 static const char skip_first_commit_msg_str[] = N_("The 1st commit message will be skipped:");
1816 static const char skip_nth_commit_msg_fmt[] = N_("The commit message #%d will be skipped:");
1817 static const char combined_commit_msg_fmt[] = N_("This is a combination of %d commits.");
1819 static int is_fixup_flag(enum todo_command command, unsigned flag)
1821 return command == TODO_FIXUP && ((flag & TODO_REPLACE_FIXUP_MSG) ||
1822 (flag & TODO_EDIT_FIXUP_MSG));
1826 * Wrapper around strbuf_add_commented_lines() which avoids double
1827 * commenting commit subjects.
1829 static void add_commented_lines(struct strbuf *buf, const void *str, size_t len)
1831 const char *s = str;
1832 while (len > 0 && s[0] == comment_line_char) {
1833 size_t count;
1834 const char *n = memchr(s, '\n', len);
1835 if (!n)
1836 count = len;
1837 else
1838 count = n - s + 1;
1839 strbuf_add(buf, s, count);
1840 s += count;
1841 len -= count;
1843 strbuf_add_commented_lines(buf, s, len);
1846 /* Does the current fixup chain contain a squash command? */
1847 static int seen_squash(struct replay_opts *opts)
1849 return starts_with(opts->current_fixups.buf, "squash") ||
1850 strstr(opts->current_fixups.buf, "\nsquash");
1853 static void update_comment_bufs(struct strbuf *buf1, struct strbuf *buf2, int n)
1855 strbuf_setlen(buf1, 2);
1856 strbuf_addf(buf1, _(nth_commit_msg_fmt), n);
1857 strbuf_addch(buf1, '\n');
1858 strbuf_setlen(buf2, 2);
1859 strbuf_addf(buf2, _(skip_nth_commit_msg_fmt), n);
1860 strbuf_addch(buf2, '\n');
1864 * Comment out any un-commented commit messages, updating the message comments
1865 * to say they will be skipped but do not comment out the empty lines that
1866 * surround commit messages and their comments.
1868 static void update_squash_message_for_fixup(struct strbuf *msg)
1870 void (*copy_lines)(struct strbuf *, const void *, size_t) = strbuf_add;
1871 struct strbuf buf1 = STRBUF_INIT, buf2 = STRBUF_INIT;
1872 const char *s, *start;
1873 char *orig_msg;
1874 size_t orig_msg_len;
1875 int i = 1;
1877 strbuf_addf(&buf1, "# %s\n", _(first_commit_msg_str));
1878 strbuf_addf(&buf2, "# %s\n", _(skip_first_commit_msg_str));
1879 s = start = orig_msg = strbuf_detach(msg, &orig_msg_len);
1880 while (s) {
1881 const char *next;
1882 size_t off;
1883 if (skip_prefix(s, buf1.buf, &next)) {
1885 * Copy the last message, preserving the blank line
1886 * preceding the current line
1888 off = (s > start + 1 && s[-2] == '\n') ? 1 : 0;
1889 copy_lines(msg, start, s - start - off);
1890 if (off)
1891 strbuf_addch(msg, '\n');
1893 * The next message needs to be commented out but the
1894 * message header is already commented out so just copy
1895 * it and the blank line that follows it.
1897 strbuf_addbuf(msg, &buf2);
1898 if (*next == '\n')
1899 strbuf_addch(msg, *next++);
1900 start = s = next;
1901 copy_lines = add_commented_lines;
1902 update_comment_bufs(&buf1, &buf2, ++i);
1903 } else if (skip_prefix(s, buf2.buf, &next)) {
1904 off = (s > start + 1 && s[-2] == '\n') ? 1 : 0;
1905 copy_lines(msg, start, s - start - off);
1906 start = s - off;
1907 s = next;
1908 copy_lines = strbuf_add;
1909 update_comment_bufs(&buf1, &buf2, ++i);
1910 } else {
1911 s = strchr(s, '\n');
1912 if (s)
1913 s++;
1916 copy_lines(msg, start, orig_msg_len - (start - orig_msg));
1917 free(orig_msg);
1918 strbuf_release(&buf1);
1919 strbuf_release(&buf2);
1922 static int append_squash_message(struct strbuf *buf, const char *body,
1923 enum todo_command command, struct replay_opts *opts,
1924 unsigned flag)
1926 const char *fixup_msg;
1927 size_t commented_len = 0, fixup_off;
1929 * amend is non-interactive and not normally used with fixup!
1930 * or squash! commits, so only comment out those subjects when
1931 * squashing commit messages.
1933 if (starts_with(body, "amend!") ||
1934 ((command == TODO_SQUASH || seen_squash(opts)) &&
1935 (starts_with(body, "squash!") || starts_with(body, "fixup!"))))
1936 commented_len = commit_subject_length(body);
1938 strbuf_addf(buf, "\n%c ", comment_line_char);
1939 strbuf_addf(buf, _(nth_commit_msg_fmt),
1940 ++opts->current_fixup_count + 1);
1941 strbuf_addstr(buf, "\n\n");
1942 strbuf_add_commented_lines(buf, body, commented_len);
1943 /* buf->buf may be reallocated so store an offset into the buffer */
1944 fixup_off = buf->len;
1945 strbuf_addstr(buf, body + commented_len);
1947 /* fixup -C after squash behaves like squash */
1948 if (is_fixup_flag(command, flag) && !seen_squash(opts)) {
1950 * We're replacing the commit message so we need to
1951 * append the Signed-off-by: trailer if the user
1952 * requested '--signoff'.
1954 if (opts->signoff)
1955 append_signoff(buf, 0, 0);
1957 if ((command == TODO_FIXUP) &&
1958 (flag & TODO_REPLACE_FIXUP_MSG) &&
1959 (file_exists(rebase_path_fixup_msg()) ||
1960 !file_exists(rebase_path_squash_msg()))) {
1961 fixup_msg = skip_blank_lines(buf->buf + fixup_off);
1962 if (write_message(fixup_msg, strlen(fixup_msg),
1963 rebase_path_fixup_msg(), 0) < 0)
1964 return error(_("cannot write '%s'"),
1965 rebase_path_fixup_msg());
1966 } else {
1967 unlink(rebase_path_fixup_msg());
1969 } else {
1970 unlink(rebase_path_fixup_msg());
1973 return 0;
1976 static int update_squash_messages(struct repository *r,
1977 enum todo_command command,
1978 struct commit *commit,
1979 struct replay_opts *opts,
1980 unsigned flag)
1982 struct strbuf buf = STRBUF_INIT;
1983 int res = 0;
1984 const char *message, *body;
1985 const char *encoding = get_commit_output_encoding();
1987 if (opts->current_fixup_count > 0) {
1988 struct strbuf header = STRBUF_INIT;
1989 char *eol;
1991 if (strbuf_read_file(&buf, rebase_path_squash_msg(), 9) <= 0)
1992 return error(_("could not read '%s'"),
1993 rebase_path_squash_msg());
1995 eol = buf.buf[0] != comment_line_char ?
1996 buf.buf : strchrnul(buf.buf, '\n');
1998 strbuf_addf(&header, "%c ", comment_line_char);
1999 strbuf_addf(&header, _(combined_commit_msg_fmt),
2000 opts->current_fixup_count + 2);
2001 strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len);
2002 strbuf_release(&header);
2003 if (is_fixup_flag(command, flag) && !seen_squash(opts))
2004 update_squash_message_for_fixup(&buf);
2005 } else {
2006 struct object_id head;
2007 struct commit *head_commit;
2008 const char *head_message, *body;
2010 if (repo_get_oid(r, "HEAD", &head))
2011 return error(_("need a HEAD to fixup"));
2012 if (!(head_commit = lookup_commit_reference(r, &head)))
2013 return error(_("could not read HEAD"));
2014 if (!(head_message = repo_logmsg_reencode(r, head_commit, NULL,
2015 encoding)))
2016 return error(_("could not read HEAD's commit message"));
2018 find_commit_subject(head_message, &body);
2019 if (command == TODO_FIXUP && !flag && write_message(body, strlen(body),
2020 rebase_path_fixup_msg(), 0) < 0) {
2021 repo_unuse_commit_buffer(r, head_commit, head_message);
2022 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
2024 strbuf_addf(&buf, "%c ", comment_line_char);
2025 strbuf_addf(&buf, _(combined_commit_msg_fmt), 2);
2026 strbuf_addf(&buf, "\n%c ", comment_line_char);
2027 strbuf_addstr(&buf, is_fixup_flag(command, flag) ?
2028 _(skip_first_commit_msg_str) :
2029 _(first_commit_msg_str));
2030 strbuf_addstr(&buf, "\n\n");
2031 if (is_fixup_flag(command, flag))
2032 strbuf_add_commented_lines(&buf, body, strlen(body));
2033 else
2034 strbuf_addstr(&buf, body);
2036 repo_unuse_commit_buffer(r, head_commit, head_message);
2039 if (!(message = repo_logmsg_reencode(r, commit, NULL, encoding)))
2040 return error(_("could not read commit message of %s"),
2041 oid_to_hex(&commit->object.oid));
2042 find_commit_subject(message, &body);
2044 if (command == TODO_SQUASH || is_fixup_flag(command, flag)) {
2045 res = append_squash_message(&buf, body, command, opts, flag);
2046 } else if (command == TODO_FIXUP) {
2047 strbuf_addf(&buf, "\n%c ", comment_line_char);
2048 strbuf_addf(&buf, _(skip_nth_commit_msg_fmt),
2049 ++opts->current_fixup_count + 1);
2050 strbuf_addstr(&buf, "\n\n");
2051 strbuf_add_commented_lines(&buf, body, strlen(body));
2052 } else
2053 return error(_("unknown command: %d"), command);
2054 repo_unuse_commit_buffer(r, commit, message);
2056 if (!res)
2057 res = write_message(buf.buf, buf.len, rebase_path_squash_msg(),
2059 strbuf_release(&buf);
2061 if (!res) {
2062 strbuf_addf(&opts->current_fixups, "%s%s %s",
2063 opts->current_fixups.len ? "\n" : "",
2064 command_to_string(command),
2065 oid_to_hex(&commit->object.oid));
2066 res = write_message(opts->current_fixups.buf,
2067 opts->current_fixups.len,
2068 rebase_path_current_fixups(), 0);
2071 return res;
2074 static void flush_rewritten_pending(void)
2076 struct strbuf buf = STRBUF_INIT;
2077 struct object_id newoid;
2078 FILE *out;
2080 if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 &&
2081 !repo_get_oid(the_repository, "HEAD", &newoid) &&
2082 (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
2083 char *bol = buf.buf, *eol;
2085 while (*bol) {
2086 eol = strchrnul(bol, '\n');
2087 fprintf(out, "%.*s %s\n", (int)(eol - bol),
2088 bol, oid_to_hex(&newoid));
2089 if (!*eol)
2090 break;
2091 bol = eol + 1;
2093 fclose(out);
2094 unlink(rebase_path_rewritten_pending());
2096 strbuf_release(&buf);
2099 static void record_in_rewritten(struct object_id *oid,
2100 enum todo_command next_command)
2102 FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a");
2104 if (!out)
2105 return;
2107 fprintf(out, "%s\n", oid_to_hex(oid));
2108 fclose(out);
2110 if (!is_fixup(next_command))
2111 flush_rewritten_pending();
2114 static int should_edit(struct replay_opts *opts) {
2115 if (opts->edit < 0)
2117 * Note that we only handle the case of non-conflicted
2118 * commits; continue_single_pick() handles the conflicted
2119 * commits itself instead of calling this function.
2121 return (opts->action == REPLAY_REVERT && isatty(0)) ? 1 : 0;
2122 return opts->edit;
2125 static void refer_to_commit(struct replay_opts *opts,
2126 struct strbuf *msgbuf, struct commit *commit)
2128 if (opts->commit_use_reference) {
2129 struct pretty_print_context ctx = {
2130 .abbrev = DEFAULT_ABBREV,
2131 .date_mode.type = DATE_SHORT,
2133 repo_format_commit_message(the_repository, commit,
2134 "%h (%s, %ad)", msgbuf, &ctx);
2135 } else {
2136 strbuf_addstr(msgbuf, oid_to_hex(&commit->object.oid));
2140 static int do_pick_commit(struct repository *r,
2141 struct todo_item *item,
2142 struct replay_opts *opts,
2143 int final_fixup, int *check_todo)
2145 unsigned int flags = should_edit(opts) ? EDIT_MSG : 0;
2146 const char *msg_file = should_edit(opts) ? NULL : git_path_merge_msg(r);
2147 struct object_id head;
2148 struct commit *base, *next, *parent;
2149 const char *base_label, *next_label;
2150 char *author = NULL;
2151 struct commit_message msg = { NULL, NULL, NULL, NULL };
2152 struct strbuf msgbuf = STRBUF_INIT;
2153 int res, unborn = 0, reword = 0, allow, drop_commit;
2154 enum todo_command command = item->command;
2155 struct commit *commit = item->commit;
2157 if (opts->no_commit) {
2159 * We do not intend to commit immediately. We just want to
2160 * merge the differences in, so let's compute the tree
2161 * that represents the "current" state for the merge machinery
2162 * to work on.
2164 if (write_index_as_tree(&head, r->index, r->index_file, 0, NULL))
2165 return error(_("your index file is unmerged."));
2166 } else {
2167 unborn = repo_get_oid(r, "HEAD", &head);
2168 /* Do we want to generate a root commit? */
2169 if (is_pick_or_similar(command) && opts->have_squash_onto &&
2170 oideq(&head, &opts->squash_onto)) {
2171 if (is_fixup(command))
2172 return error(_("cannot fixup root commit"));
2173 flags |= CREATE_ROOT_COMMIT;
2174 unborn = 1;
2175 } else if (unborn)
2176 oidcpy(&head, the_hash_algo->empty_tree);
2177 if (index_differs_from(r, unborn ? empty_tree_oid_hex() : "HEAD",
2178 NULL, 0))
2179 return error_dirty_index(r, opts);
2181 discard_index(r->index);
2183 if (!commit->parents)
2184 parent = NULL;
2185 else if (commit->parents->next) {
2186 /* Reverting or cherry-picking a merge commit */
2187 int cnt;
2188 struct commit_list *p;
2190 if (!opts->mainline)
2191 return error(_("commit %s is a merge but no -m option was given."),
2192 oid_to_hex(&commit->object.oid));
2194 for (cnt = 1, p = commit->parents;
2195 cnt != opts->mainline && p;
2196 cnt++)
2197 p = p->next;
2198 if (cnt != opts->mainline || !p)
2199 return error(_("commit %s does not have parent %d"),
2200 oid_to_hex(&commit->object.oid), opts->mainline);
2201 parent = p->item;
2202 } else if (1 < opts->mainline)
2204 * Non-first parent explicitly specified as mainline for
2205 * non-merge commit
2207 return error(_("commit %s does not have parent %d"),
2208 oid_to_hex(&commit->object.oid), opts->mainline);
2209 else
2210 parent = commit->parents->item;
2212 if (get_message(commit, &msg) != 0)
2213 return error(_("cannot get commit message for %s"),
2214 oid_to_hex(&commit->object.oid));
2216 if (opts->allow_ff && !is_fixup(command) &&
2217 ((parent && oideq(&parent->object.oid, &head)) ||
2218 (!parent && unborn))) {
2219 if (is_rebase_i(opts))
2220 write_author_script(msg.message);
2221 res = fast_forward_to(r, &commit->object.oid, &head, unborn,
2222 opts);
2223 if (res || command != TODO_REWORD)
2224 goto leave;
2225 reword = 1;
2226 msg_file = NULL;
2227 goto fast_forward_edit;
2229 if (parent && repo_parse_commit(r, parent) < 0)
2230 /* TRANSLATORS: The first %s will be a "todo" command like
2231 "revert" or "pick", the second %s a SHA1. */
2232 return error(_("%s: cannot parse parent commit %s"),
2233 command_to_string(command),
2234 oid_to_hex(&parent->object.oid));
2237 * "commit" is an existing commit. We would want to apply
2238 * the difference it introduces since its first parent "prev"
2239 * on top of the current HEAD if we are cherry-pick. Or the
2240 * reverse of it if we are revert.
2243 if (command == TODO_REVERT) {
2244 base = commit;
2245 base_label = msg.label;
2246 next = parent;
2247 next_label = msg.parent_label;
2248 if (opts->commit_use_reference) {
2249 strbuf_addstr(&msgbuf,
2250 "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***");
2251 } else {
2252 strbuf_addstr(&msgbuf, "Revert \"");
2253 strbuf_addstr(&msgbuf, msg.subject);
2254 strbuf_addstr(&msgbuf, "\"");
2256 strbuf_addstr(&msgbuf, "\n\nThis reverts commit ");
2257 refer_to_commit(opts, &msgbuf, commit);
2259 if (commit->parents && commit->parents->next) {
2260 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
2261 refer_to_commit(opts, &msgbuf, parent);
2263 strbuf_addstr(&msgbuf, ".\n");
2264 } else {
2265 const char *p;
2267 base = parent;
2268 base_label = msg.parent_label;
2269 next = commit;
2270 next_label = msg.label;
2272 /* Append the commit log message to msgbuf. */
2273 if (find_commit_subject(msg.message, &p))
2274 strbuf_addstr(&msgbuf, p);
2276 if (opts->record_origin) {
2277 strbuf_complete_line(&msgbuf);
2278 if (!has_conforming_footer(&msgbuf, NULL, 0))
2279 strbuf_addch(&msgbuf, '\n');
2280 strbuf_addstr(&msgbuf, cherry_picked_prefix);
2281 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
2282 strbuf_addstr(&msgbuf, ")\n");
2284 if (!is_fixup(command))
2285 author = get_author(msg.message);
2288 if (command == TODO_REWORD)
2289 reword = 1;
2290 else if (is_fixup(command)) {
2291 if (update_squash_messages(r, command, commit,
2292 opts, item->flags)) {
2293 res = -1;
2294 goto leave;
2296 flags |= AMEND_MSG;
2297 if (!final_fixup)
2298 msg_file = rebase_path_squash_msg();
2299 else if (file_exists(rebase_path_fixup_msg())) {
2300 flags |= VERBATIM_MSG;
2301 msg_file = rebase_path_fixup_msg();
2302 } else {
2303 const char *dest = git_path_squash_msg(r);
2304 unlink(dest);
2305 if (copy_file(dest, rebase_path_squash_msg(), 0666)) {
2306 res = error(_("could not rename '%s' to '%s'"),
2307 rebase_path_squash_msg(), dest);
2308 goto leave;
2310 unlink(git_path_merge_msg(r));
2311 msg_file = dest;
2312 flags |= EDIT_MSG;
2316 if (opts->signoff && !is_fixup(command))
2317 append_signoff(&msgbuf, 0, 0);
2319 if (is_rebase_i(opts) && write_author_script(msg.message) < 0)
2320 res = -1;
2321 else if (!opts->strategy ||
2322 !strcmp(opts->strategy, "recursive") ||
2323 !strcmp(opts->strategy, "ort") ||
2324 command == TODO_REVERT) {
2325 res = do_recursive_merge(r, base, next, base_label, next_label,
2326 &head, &msgbuf, opts);
2327 if (res < 0)
2328 goto leave;
2330 res |= write_message(msgbuf.buf, msgbuf.len,
2331 git_path_merge_msg(r), 0);
2332 } else {
2333 struct commit_list *common = NULL;
2334 struct commit_list *remotes = NULL;
2336 res = write_message(msgbuf.buf, msgbuf.len,
2337 git_path_merge_msg(r), 0);
2339 commit_list_insert(base, &common);
2340 commit_list_insert(next, &remotes);
2341 res |= try_merge_command(r, opts->strategy,
2342 opts->xopts.nr, opts->xopts.v,
2343 common, oid_to_hex(&head), remotes);
2344 free_commit_list(common);
2345 free_commit_list(remotes);
2349 * If the merge was clean or if it failed due to conflict, we write
2350 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2351 * However, if the merge did not even start, then we don't want to
2352 * write it at all.
2354 if ((command == TODO_PICK || command == TODO_REWORD ||
2355 command == TODO_EDIT) && !opts->no_commit &&
2356 (res == 0 || res == 1) &&
2357 update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL,
2358 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
2359 res = -1;
2360 if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
2361 update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL,
2362 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
2363 res = -1;
2365 if (res) {
2366 error(command == TODO_REVERT
2367 ? _("could not revert %s... %s")
2368 : _("could not apply %s... %s"),
2369 short_commit_name(commit), msg.subject);
2370 print_advice(r, res == 1, opts);
2371 repo_rerere(r, opts->allow_rerere_auto);
2372 goto leave;
2375 drop_commit = 0;
2376 allow = allow_empty(r, opts, commit);
2377 if (allow < 0) {
2378 res = allow;
2379 goto leave;
2380 } else if (allow == 1) {
2381 flags |= ALLOW_EMPTY;
2382 } else if (allow == 2) {
2383 drop_commit = 1;
2384 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
2385 NULL, 0);
2386 unlink(git_path_merge_msg(r));
2387 unlink(git_path_auto_merge(r));
2388 fprintf(stderr,
2389 _("dropping %s %s -- patch contents already upstream\n"),
2390 oid_to_hex(&commit->object.oid), msg.subject);
2391 } /* else allow == 0 and there's nothing special to do */
2392 if (!opts->no_commit && !drop_commit) {
2393 if (author || command == TODO_REVERT || (flags & AMEND_MSG))
2394 res = do_commit(r, msg_file, author, opts, flags,
2395 commit? &commit->object.oid : NULL);
2396 else
2397 res = error(_("unable to parse commit author"));
2398 *check_todo = !!(flags & EDIT_MSG);
2399 if (!res && reword) {
2400 fast_forward_edit:
2401 res = run_git_commit(NULL, opts, EDIT_MSG |
2402 VERIFY_MSG | AMEND_MSG |
2403 (flags & ALLOW_EMPTY));
2404 *check_todo = 1;
2409 if (!res && final_fixup) {
2410 unlink(rebase_path_fixup_msg());
2411 unlink(rebase_path_squash_msg());
2412 unlink(rebase_path_current_fixups());
2413 strbuf_reset(&opts->current_fixups);
2414 opts->current_fixup_count = 0;
2417 leave:
2418 free_message(commit, &msg);
2419 free(author);
2420 strbuf_release(&msgbuf);
2421 update_abort_safety_file();
2423 return res;
2426 static int prepare_revs(struct replay_opts *opts)
2429 * picking (but not reverting) ranges (but not individual revisions)
2430 * should be done in reverse
2432 if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
2433 opts->revs->reverse ^= 1;
2435 if (prepare_revision_walk(opts->revs))
2436 return error(_("revision walk setup failed"));
2438 return 0;
2441 static int read_and_refresh_cache(struct repository *r,
2442 struct replay_opts *opts)
2444 struct lock_file index_lock = LOCK_INIT;
2445 int index_fd = repo_hold_locked_index(r, &index_lock, 0);
2446 if (repo_read_index(r) < 0) {
2447 rollback_lock_file(&index_lock);
2448 return error(_("git %s: failed to read the index"),
2449 action_name(opts));
2451 refresh_index(r->index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
2453 if (index_fd >= 0) {
2454 if (write_locked_index(r->index, &index_lock,
2455 COMMIT_LOCK | SKIP_IF_UNCHANGED)) {
2456 return error(_("git %s: failed to refresh the index"),
2457 action_name(opts));
2462 * If we are resolving merges in any way other than "ort", then
2463 * expand the sparse index.
2465 if (opts->strategy && strcmp(opts->strategy, "ort"))
2466 ensure_full_index(r->index);
2467 return 0;
2470 void todo_list_release(struct todo_list *todo_list)
2472 strbuf_release(&todo_list->buf);
2473 FREE_AND_NULL(todo_list->items);
2474 todo_list->nr = todo_list->alloc = 0;
2477 static struct todo_item *append_new_todo(struct todo_list *todo_list)
2479 ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
2480 todo_list->total_nr++;
2481 return todo_list->items + todo_list->nr++;
2484 const char *todo_item_get_arg(struct todo_list *todo_list,
2485 struct todo_item *item)
2487 return todo_list->buf.buf + item->arg_offset;
2490 static int is_command(enum todo_command command, const char **bol)
2492 const char *str = todo_command_info[command].str;
2493 const char nick = todo_command_info[command].c;
2494 const char *p = *bol;
2496 return (skip_prefix(p, str, &p) || (nick && *p++ == nick)) &&
2497 (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r' || !*p) &&
2498 (*bol = p);
2501 static int check_label_or_ref_arg(enum todo_command command, const char *arg)
2503 switch (command) {
2504 case TODO_LABEL:
2506 * '#' is not a valid label as the merge command uses it to
2507 * separate merge parents from the commit subject.
2509 if (!strcmp(arg, "#") ||
2510 check_refname_format(arg, REFNAME_ALLOW_ONELEVEL))
2511 return error(_("'%s' is not a valid label"), arg);
2512 break;
2514 case TODO_UPDATE_REF:
2515 if (check_refname_format(arg, REFNAME_ALLOW_ONELEVEL))
2516 return error(_("'%s' is not a valid refname"), arg);
2517 if (check_refname_format(arg, 0))
2518 return error(_("update-ref requires a fully qualified "
2519 "refname e.g. refs/heads/%s"), arg);
2520 break;
2522 default:
2523 BUG("unexpected todo_command");
2526 return 0;
2529 static int parse_insn_line(struct repository *r, struct todo_item *item,
2530 const char *buf, const char *bol, char *eol)
2532 struct object_id commit_oid;
2533 char *end_of_object_name;
2534 int i, saved, status, padding;
2536 item->flags = 0;
2538 /* left-trim */
2539 bol += strspn(bol, " \t");
2541 if (bol == eol || *bol == '\r' || *bol == comment_line_char) {
2542 item->command = TODO_COMMENT;
2543 item->commit = NULL;
2544 item->arg_offset = bol - buf;
2545 item->arg_len = eol - bol;
2546 return 0;
2549 for (i = 0; i < TODO_COMMENT; i++)
2550 if (is_command(i, &bol)) {
2551 item->command = i;
2552 break;
2554 if (i >= TODO_COMMENT)
2555 return error(_("invalid command '%.*s'"),
2556 (int)strcspn(bol, " \t\r\n"), bol);
2558 /* Eat up extra spaces/ tabs before object name */
2559 padding = strspn(bol, " \t");
2560 bol += padding;
2562 if (item->command == TODO_NOOP || item->command == TODO_BREAK) {
2563 if (bol != eol)
2564 return error(_("%s does not accept arguments: '%s'"),
2565 command_to_string(item->command), bol);
2566 item->commit = NULL;
2567 item->arg_offset = bol - buf;
2568 item->arg_len = eol - bol;
2569 return 0;
2572 if (!padding)
2573 return error(_("missing arguments for %s"),
2574 command_to_string(item->command));
2576 if (item->command == TODO_EXEC || item->command == TODO_LABEL ||
2577 item->command == TODO_RESET || item->command == TODO_UPDATE_REF) {
2578 int ret = 0;
2580 item->commit = NULL;
2581 item->arg_offset = bol - buf;
2582 item->arg_len = (int)(eol - bol);
2583 if (item->command == TODO_LABEL ||
2584 item->command == TODO_UPDATE_REF) {
2585 saved = *eol;
2586 *eol = '\0';
2587 ret = check_label_or_ref_arg(item->command, bol);
2588 *eol = saved;
2590 return ret;
2593 if (item->command == TODO_FIXUP) {
2594 if (skip_prefix(bol, "-C", &bol)) {
2595 bol += strspn(bol, " \t");
2596 item->flags |= TODO_REPLACE_FIXUP_MSG;
2597 } else if (skip_prefix(bol, "-c", &bol)) {
2598 bol += strspn(bol, " \t");
2599 item->flags |= TODO_EDIT_FIXUP_MSG;
2603 if (item->command == TODO_MERGE) {
2604 if (skip_prefix(bol, "-C", &bol))
2605 bol += strspn(bol, " \t");
2606 else if (skip_prefix(bol, "-c", &bol)) {
2607 bol += strspn(bol, " \t");
2608 item->flags |= TODO_EDIT_MERGE_MSG;
2609 } else {
2610 item->flags |= TODO_EDIT_MERGE_MSG;
2611 item->commit = NULL;
2612 item->arg_offset = bol - buf;
2613 item->arg_len = (int)(eol - bol);
2614 return 0;
2618 end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
2619 saved = *end_of_object_name;
2620 *end_of_object_name = '\0';
2621 status = repo_get_oid(r, bol, &commit_oid);
2622 if (status < 0)
2623 error(_("could not parse '%s'"), bol); /* return later */
2624 *end_of_object_name = saved;
2626 bol = end_of_object_name + strspn(end_of_object_name, " \t");
2627 item->arg_offset = bol - buf;
2628 item->arg_len = (int)(eol - bol);
2630 if (status < 0)
2631 return status;
2633 item->commit = lookup_commit_reference(r, &commit_oid);
2634 return item->commit ? 0 : -1;
2637 int sequencer_get_last_command(struct repository *r, enum replay_action *action)
2639 const char *todo_file, *bol;
2640 struct strbuf buf = STRBUF_INIT;
2641 int ret = 0;
2643 todo_file = git_path_todo_file();
2644 if (strbuf_read_file(&buf, todo_file, 0) < 0) {
2645 if (errno == ENOENT || errno == ENOTDIR)
2646 return -1;
2647 else
2648 return error_errno("unable to open '%s'", todo_file);
2650 bol = buf.buf + strspn(buf.buf, " \t\r\n");
2651 if (is_command(TODO_PICK, &bol) && (*bol == ' ' || *bol == '\t'))
2652 *action = REPLAY_PICK;
2653 else if (is_command(TODO_REVERT, &bol) &&
2654 (*bol == ' ' || *bol == '\t'))
2655 *action = REPLAY_REVERT;
2656 else
2657 ret = -1;
2659 strbuf_release(&buf);
2661 return ret;
2664 int todo_list_parse_insn_buffer(struct repository *r, char *buf,
2665 struct todo_list *todo_list)
2667 struct todo_item *item;
2668 char *p = buf, *next_p;
2669 int i, res = 0, fixup_okay = file_exists(rebase_path_done());
2671 todo_list->current = todo_list->nr = 0;
2673 for (i = 1; *p; i++, p = next_p) {
2674 char *eol = strchrnul(p, '\n');
2676 next_p = *eol ? eol + 1 /* skip LF */ : eol;
2678 if (p != eol && eol[-1] == '\r')
2679 eol--; /* strip Carriage Return */
2681 item = append_new_todo(todo_list);
2682 item->offset_in_buf = p - todo_list->buf.buf;
2683 if (parse_insn_line(r, item, buf, p, eol)) {
2684 res = error(_("invalid line %d: %.*s"),
2685 i, (int)(eol - p), p);
2686 item->command = TODO_COMMENT + 1;
2687 item->arg_offset = p - buf;
2688 item->arg_len = (int)(eol - p);
2689 item->commit = NULL;
2692 if (fixup_okay)
2693 ; /* do nothing */
2694 else if (is_fixup(item->command))
2695 return error(_("cannot '%s' without a previous commit"),
2696 command_to_string(item->command));
2697 else if (!is_noop(item->command))
2698 fixup_okay = 1;
2701 return res;
2704 static int count_commands(struct todo_list *todo_list)
2706 int count = 0, i;
2708 for (i = 0; i < todo_list->nr; i++)
2709 if (todo_list->items[i].command != TODO_COMMENT)
2710 count++;
2712 return count;
2715 static int get_item_line_offset(struct todo_list *todo_list, int index)
2717 return index < todo_list->nr ?
2718 todo_list->items[index].offset_in_buf : todo_list->buf.len;
2721 static const char *get_item_line(struct todo_list *todo_list, int index)
2723 return todo_list->buf.buf + get_item_line_offset(todo_list, index);
2726 static int get_item_line_length(struct todo_list *todo_list, int index)
2728 return get_item_line_offset(todo_list, index + 1)
2729 - get_item_line_offset(todo_list, index);
2732 static ssize_t strbuf_read_file_or_whine(struct strbuf *sb, const char *path)
2734 int fd;
2735 ssize_t len;
2737 fd = open(path, O_RDONLY);
2738 if (fd < 0)
2739 return error_errno(_("could not open '%s'"), path);
2740 len = strbuf_read(sb, fd, 0);
2741 close(fd);
2742 if (len < 0)
2743 return error(_("could not read '%s'."), path);
2744 return len;
2747 static int have_finished_the_last_pick(void)
2749 struct strbuf buf = STRBUF_INIT;
2750 const char *eol;
2751 const char *todo_path = git_path_todo_file();
2752 int ret = 0;
2754 if (strbuf_read_file(&buf, todo_path, 0) < 0) {
2755 if (errno == ENOENT) {
2756 return 0;
2757 } else {
2758 error_errno("unable to open '%s'", todo_path);
2759 return 0;
2762 /* If there is only one line then we are done */
2763 eol = strchr(buf.buf, '\n');
2764 if (!eol || !eol[1])
2765 ret = 1;
2767 strbuf_release(&buf);
2769 return ret;
2772 void sequencer_post_commit_cleanup(struct repository *r, int verbose)
2774 struct replay_opts opts = REPLAY_OPTS_INIT;
2775 int need_cleanup = 0;
2777 if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) {
2778 if (!refs_delete_ref(get_main_ref_store(r), "",
2779 "CHERRY_PICK_HEAD", NULL, 0) &&
2780 verbose)
2781 warning(_("cancelling a cherry picking in progress"));
2782 opts.action = REPLAY_PICK;
2783 need_cleanup = 1;
2786 if (refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
2787 if (!refs_delete_ref(get_main_ref_store(r), "", "REVERT_HEAD",
2788 NULL, 0) &&
2789 verbose)
2790 warning(_("cancelling a revert in progress"));
2791 opts.action = REPLAY_REVERT;
2792 need_cleanup = 1;
2795 unlink(git_path_auto_merge(r));
2797 if (!need_cleanup)
2798 return;
2800 if (!have_finished_the_last_pick())
2801 return;
2803 sequencer_remove_state(&opts);
2806 static void todo_list_write_total_nr(struct todo_list *todo_list)
2808 FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w");
2810 if (f) {
2811 fprintf(f, "%d\n", todo_list->total_nr);
2812 fclose(f);
2816 static int read_populate_todo(struct repository *r,
2817 struct todo_list *todo_list,
2818 struct replay_opts *opts)
2820 const char *todo_file = get_todo_path(opts);
2821 int res;
2823 strbuf_reset(&todo_list->buf);
2824 if (strbuf_read_file_or_whine(&todo_list->buf, todo_file) < 0)
2825 return -1;
2827 res = todo_list_parse_insn_buffer(r, todo_list->buf.buf, todo_list);
2828 if (res) {
2829 if (is_rebase_i(opts))
2830 return error(_("please fix this using "
2831 "'git rebase --edit-todo'."));
2832 return error(_("unusable instruction sheet: '%s'"), todo_file);
2835 if (!todo_list->nr &&
2836 (!is_rebase_i(opts) || !file_exists(rebase_path_done())))
2837 return error(_("no commits parsed."));
2839 if (!is_rebase_i(opts)) {
2840 enum todo_command valid =
2841 opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
2842 int i;
2844 for (i = 0; i < todo_list->nr; i++)
2845 if (valid == todo_list->items[i].command)
2846 continue;
2847 else if (valid == TODO_PICK)
2848 return error(_("cannot cherry-pick during a revert."));
2849 else
2850 return error(_("cannot revert during a cherry-pick."));
2853 if (is_rebase_i(opts)) {
2854 struct todo_list done = TODO_LIST_INIT;
2856 if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 &&
2857 !todo_list_parse_insn_buffer(r, done.buf.buf, &done))
2858 todo_list->done_nr = count_commands(&done);
2859 else
2860 todo_list->done_nr = 0;
2862 todo_list->total_nr = todo_list->done_nr
2863 + count_commands(todo_list);
2864 todo_list_release(&done);
2866 todo_list_write_total_nr(todo_list);
2869 return 0;
2872 static int git_config_string_dup(char **dest,
2873 const char *var, const char *value)
2875 if (!value)
2876 return config_error_nonbool(var);
2877 free(*dest);
2878 *dest = xstrdup(value);
2879 return 0;
2882 static int populate_opts_cb(const char *key, const char *value, void *data)
2884 struct replay_opts *opts = data;
2885 int error_flag = 1;
2887 if (!value)
2888 error_flag = 0;
2889 else if (!strcmp(key, "options.no-commit"))
2890 opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
2891 else if (!strcmp(key, "options.edit"))
2892 opts->edit = git_config_bool_or_int(key, value, &error_flag);
2893 else if (!strcmp(key, "options.allow-empty"))
2894 opts->allow_empty =
2895 git_config_bool_or_int(key, value, &error_flag);
2896 else if (!strcmp(key, "options.allow-empty-message"))
2897 opts->allow_empty_message =
2898 git_config_bool_or_int(key, value, &error_flag);
2899 else if (!strcmp(key, "options.keep-redundant-commits"))
2900 opts->keep_redundant_commits =
2901 git_config_bool_or_int(key, value, &error_flag);
2902 else if (!strcmp(key, "options.signoff"))
2903 opts->signoff = git_config_bool_or_int(key, value, &error_flag);
2904 else if (!strcmp(key, "options.record-origin"))
2905 opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
2906 else if (!strcmp(key, "options.allow-ff"))
2907 opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
2908 else if (!strcmp(key, "options.mainline"))
2909 opts->mainline = git_config_int(key, value);
2910 else if (!strcmp(key, "options.strategy"))
2911 git_config_string_dup(&opts->strategy, key, value);
2912 else if (!strcmp(key, "options.gpg-sign"))
2913 git_config_string_dup(&opts->gpg_sign, key, value);
2914 else if (!strcmp(key, "options.strategy-option")) {
2915 strvec_push(&opts->xopts, value);
2916 } else if (!strcmp(key, "options.allow-rerere-auto"))
2917 opts->allow_rerere_auto =
2918 git_config_bool_or_int(key, value, &error_flag) ?
2919 RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE;
2920 else if (!strcmp(key, "options.default-msg-cleanup")) {
2921 opts->explicit_cleanup = 1;
2922 opts->default_msg_cleanup = get_cleanup_mode(value, 1);
2923 } else
2924 return error(_("invalid key: %s"), key);
2926 if (!error_flag)
2927 return error(_("invalid value for '%s': '%s'"), key, value);
2929 return 0;
2932 static void parse_strategy_opts(struct replay_opts *opts, char *raw_opts)
2934 int i;
2935 int count;
2936 const char **argv;
2937 char *strategy_opts_string = raw_opts;
2939 if (*strategy_opts_string == ' ')
2940 strategy_opts_string++;
2942 count = split_cmdline(strategy_opts_string, &argv);
2943 if (count < 0)
2944 BUG("could not split '%s': %s", strategy_opts_string,
2945 split_cmdline_strerror(count));
2946 for (i = 0; i < count; i++) {
2947 const char *arg = argv[i];
2949 skip_prefix(arg, "--", &arg);
2950 strvec_push(&opts->xopts, arg);
2952 free(argv);
2955 static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf)
2957 strbuf_reset(buf);
2958 if (!read_oneliner(buf, rebase_path_strategy(), 0))
2959 return;
2960 opts->strategy = strbuf_detach(buf, NULL);
2961 if (!read_oneliner(buf, rebase_path_strategy_opts(), 0))
2962 return;
2964 parse_strategy_opts(opts, buf->buf);
2967 static int read_populate_opts(struct replay_opts *opts)
2969 if (is_rebase_i(opts)) {
2970 struct strbuf buf = STRBUF_INIT;
2971 int ret = 0;
2973 if (read_oneliner(&buf, rebase_path_gpg_sign_opt(),
2974 READ_ONELINER_SKIP_IF_EMPTY)) {
2975 if (!starts_with(buf.buf, "-S"))
2976 strbuf_reset(&buf);
2977 else {
2978 free(opts->gpg_sign);
2979 opts->gpg_sign = xstrdup(buf.buf + 2);
2981 strbuf_reset(&buf);
2984 if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(),
2985 READ_ONELINER_SKIP_IF_EMPTY)) {
2986 if (!strcmp(buf.buf, "--rerere-autoupdate"))
2987 opts->allow_rerere_auto = RERERE_AUTOUPDATE;
2988 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
2989 opts->allow_rerere_auto = RERERE_NOAUTOUPDATE;
2990 strbuf_reset(&buf);
2993 if (file_exists(rebase_path_verbose()))
2994 opts->verbose = 1;
2996 if (file_exists(rebase_path_quiet()))
2997 opts->quiet = 1;
2999 if (file_exists(rebase_path_signoff())) {
3000 opts->allow_ff = 0;
3001 opts->signoff = 1;
3004 if (file_exists(rebase_path_cdate_is_adate())) {
3005 opts->allow_ff = 0;
3006 opts->committer_date_is_author_date = 1;
3009 if (file_exists(rebase_path_ignore_date())) {
3010 opts->allow_ff = 0;
3011 opts->ignore_date = 1;
3014 if (file_exists(rebase_path_reschedule_failed_exec()))
3015 opts->reschedule_failed_exec = 1;
3016 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
3017 opts->reschedule_failed_exec = 0;
3019 if (file_exists(rebase_path_drop_redundant_commits()))
3020 opts->drop_redundant_commits = 1;
3022 if (file_exists(rebase_path_keep_redundant_commits()))
3023 opts->keep_redundant_commits = 1;
3025 read_strategy_opts(opts, &buf);
3026 strbuf_reset(&buf);
3028 if (read_oneliner(&opts->current_fixups,
3029 rebase_path_current_fixups(),
3030 READ_ONELINER_SKIP_IF_EMPTY)) {
3031 const char *p = opts->current_fixups.buf;
3032 opts->current_fixup_count = 1;
3033 while ((p = strchr(p, '\n'))) {
3034 opts->current_fixup_count++;
3035 p++;
3039 if (read_oneliner(&buf, rebase_path_squash_onto(), 0)) {
3040 if (repo_get_oid_committish(the_repository, buf.buf, &opts->squash_onto) < 0) {
3041 ret = error(_("unusable squash-onto"));
3042 goto done_rebase_i;
3044 opts->have_squash_onto = 1;
3047 done_rebase_i:
3048 strbuf_release(&buf);
3049 return ret;
3052 if (!file_exists(git_path_opts_file()))
3053 return 0;
3055 * The function git_parse_source(), called from git_config_from_file(),
3056 * may die() in case of a syntactically incorrect file. We do not care
3057 * about this case, though, because we wrote that file ourselves, so we
3058 * are pretty certain that it is syntactically correct.
3060 if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
3061 return error(_("malformed options sheet: '%s'"),
3062 git_path_opts_file());
3063 return 0;
3066 static void write_strategy_opts(struct replay_opts *opts)
3068 struct strbuf buf = STRBUF_INIT;
3071 * Quote strategy options so that they can be read correctly
3072 * by split_cmdline().
3074 quote_cmdline(&buf, opts->xopts.v);
3075 write_file(rebase_path_strategy_opts(), "%s\n", buf.buf);
3076 strbuf_release(&buf);
3079 int write_basic_state(struct replay_opts *opts, const char *head_name,
3080 struct commit *onto, const struct object_id *orig_head)
3082 if (head_name)
3083 write_file(rebase_path_head_name(), "%s\n", head_name);
3084 if (onto)
3085 write_file(rebase_path_onto(), "%s\n",
3086 oid_to_hex(&onto->object.oid));
3087 if (orig_head)
3088 write_file(rebase_path_orig_head(), "%s\n",
3089 oid_to_hex(orig_head));
3091 if (opts->quiet)
3092 write_file(rebase_path_quiet(), "%s", "");
3093 if (opts->verbose)
3094 write_file(rebase_path_verbose(), "%s", "");
3095 if (opts->strategy)
3096 write_file(rebase_path_strategy(), "%s\n", opts->strategy);
3097 if (opts->xopts.nr > 0)
3098 write_strategy_opts(opts);
3100 if (opts->allow_rerere_auto == RERERE_AUTOUPDATE)
3101 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
3102 else if (opts->allow_rerere_auto == RERERE_NOAUTOUPDATE)
3103 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
3105 if (opts->gpg_sign)
3106 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts->gpg_sign);
3107 if (opts->signoff)
3108 write_file(rebase_path_signoff(), "--signoff\n");
3109 if (opts->drop_redundant_commits)
3110 write_file(rebase_path_drop_redundant_commits(), "%s", "");
3111 if (opts->keep_redundant_commits)
3112 write_file(rebase_path_keep_redundant_commits(), "%s", "");
3113 if (opts->committer_date_is_author_date)
3114 write_file(rebase_path_cdate_is_adate(), "%s", "");
3115 if (opts->ignore_date)
3116 write_file(rebase_path_ignore_date(), "%s", "");
3117 if (opts->reschedule_failed_exec)
3118 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
3119 else
3120 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
3122 return 0;
3125 static int walk_revs_populate_todo(struct todo_list *todo_list,
3126 struct replay_opts *opts)
3128 enum todo_command command = opts->action == REPLAY_PICK ?
3129 TODO_PICK : TODO_REVERT;
3130 const char *command_string = todo_command_info[command].str;
3131 const char *encoding;
3132 struct commit *commit;
3134 if (prepare_revs(opts))
3135 return -1;
3137 encoding = get_log_output_encoding();
3139 while ((commit = get_revision(opts->revs))) {
3140 struct todo_item *item = append_new_todo(todo_list);
3141 const char *commit_buffer = repo_logmsg_reencode(the_repository,
3142 commit, NULL,
3143 encoding);
3144 const char *subject;
3145 int subject_len;
3147 item->command = command;
3148 item->commit = commit;
3149 item->arg_offset = 0;
3150 item->arg_len = 0;
3151 item->offset_in_buf = todo_list->buf.len;
3152 subject_len = find_commit_subject(commit_buffer, &subject);
3153 strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
3154 short_commit_name(commit), subject_len, subject);
3155 repo_unuse_commit_buffer(the_repository, commit,
3156 commit_buffer);
3159 if (!todo_list->nr)
3160 return error(_("empty commit set passed"));
3162 return 0;
3165 static int create_seq_dir(struct repository *r)
3167 enum replay_action action;
3168 const char *in_progress_error = NULL;
3169 const char *in_progress_advice = NULL;
3170 unsigned int advise_skip =
3171 refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD") ||
3172 refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD");
3174 if (!sequencer_get_last_command(r, &action)) {
3175 switch (action) {
3176 case REPLAY_REVERT:
3177 in_progress_error = _("revert is already in progress");
3178 in_progress_advice =
3179 _("try \"git revert (--continue | %s--abort | --quit)\"");
3180 break;
3181 case REPLAY_PICK:
3182 in_progress_error = _("cherry-pick is already in progress");
3183 in_progress_advice =
3184 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
3185 break;
3186 default:
3187 BUG("unexpected action in create_seq_dir");
3190 if (in_progress_error) {
3191 error("%s", in_progress_error);
3192 if (advice_enabled(ADVICE_SEQUENCER_IN_USE))
3193 advise(in_progress_advice,
3194 advise_skip ? "--skip | " : "");
3195 return -1;
3197 if (mkdir(git_path_seq_dir(), 0777) < 0)
3198 return error_errno(_("could not create sequencer directory '%s'"),
3199 git_path_seq_dir());
3201 return 0;
3204 static int save_head(const char *head)
3206 return write_message(head, strlen(head), git_path_head_file(), 1);
3209 static int rollback_is_safe(void)
3211 struct strbuf sb = STRBUF_INIT;
3212 struct object_id expected_head, actual_head;
3214 if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) {
3215 strbuf_trim(&sb);
3216 if (get_oid_hex(sb.buf, &expected_head)) {
3217 strbuf_release(&sb);
3218 die(_("could not parse %s"), git_path_abort_safety_file());
3220 strbuf_release(&sb);
3222 else if (errno == ENOENT)
3223 oidclr(&expected_head);
3224 else
3225 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3227 if (repo_get_oid(the_repository, "HEAD", &actual_head))
3228 oidclr(&actual_head);
3230 return oideq(&actual_head, &expected_head);
3233 static int reset_merge(const struct object_id *oid)
3235 struct child_process cmd = CHILD_PROCESS_INIT;
3237 cmd.git_cmd = 1;
3238 strvec_pushl(&cmd.args, "reset", "--merge", NULL);
3240 if (!is_null_oid(oid))
3241 strvec_push(&cmd.args, oid_to_hex(oid));
3243 return run_command(&cmd);
3246 static int rollback_single_pick(struct repository *r)
3248 struct object_id head_oid;
3250 if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") &&
3251 !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD"))
3252 return error(_("no cherry-pick or revert in progress"));
3253 if (read_ref_full("HEAD", 0, &head_oid, NULL))
3254 return error(_("cannot resolve HEAD"));
3255 if (is_null_oid(&head_oid))
3256 return error(_("cannot abort from a branch yet to be born"));
3257 return reset_merge(&head_oid);
3260 static int skip_single_pick(void)
3262 struct object_id head;
3264 if (read_ref_full("HEAD", 0, &head, NULL))
3265 return error(_("cannot resolve HEAD"));
3266 return reset_merge(&head);
3269 int sequencer_rollback(struct repository *r, struct replay_opts *opts)
3271 FILE *f;
3272 struct object_id oid;
3273 struct strbuf buf = STRBUF_INIT;
3274 const char *p;
3276 f = fopen(git_path_head_file(), "r");
3277 if (!f && errno == ENOENT) {
3279 * There is no multiple-cherry-pick in progress.
3280 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3281 * a single-cherry-pick in progress, abort that.
3283 return rollback_single_pick(r);
3285 if (!f)
3286 return error_errno(_("cannot open '%s'"), git_path_head_file());
3287 if (strbuf_getline_lf(&buf, f)) {
3288 error(_("cannot read '%s': %s"), git_path_head_file(),
3289 ferror(f) ? strerror(errno) : _("unexpected end of file"));
3290 fclose(f);
3291 goto fail;
3293 fclose(f);
3294 if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') {
3295 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
3296 git_path_head_file());
3297 goto fail;
3299 if (is_null_oid(&oid)) {
3300 error(_("cannot abort from a branch yet to be born"));
3301 goto fail;
3304 if (!rollback_is_safe()) {
3305 /* Do not error, just do not rollback */
3306 warning(_("You seem to have moved HEAD. "
3307 "Not rewinding, check your HEAD!"));
3308 } else
3309 if (reset_merge(&oid))
3310 goto fail;
3311 strbuf_release(&buf);
3312 return sequencer_remove_state(opts);
3313 fail:
3314 strbuf_release(&buf);
3315 return -1;
3318 int sequencer_skip(struct repository *r, struct replay_opts *opts)
3320 enum replay_action action = -1;
3321 sequencer_get_last_command(r, &action);
3324 * Check whether the subcommand requested to skip the commit is actually
3325 * in progress and that it's safe to skip the commit.
3327 * opts->action tells us which subcommand requested to skip the commit.
3328 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3329 * action is in progress and we can skip the commit.
3331 * Otherwise we check that the last instruction was related to the
3332 * particular subcommand we're trying to execute and barf if that's not
3333 * the case.
3335 * Finally we check that the rollback is "safe", i.e., has the HEAD
3336 * moved? In this case, it doesn't make sense to "reset the merge" and
3337 * "skip the commit" as the user already handled this by committing. But
3338 * we'd not want to barf here, instead give advice on how to proceed. We
3339 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3340 * it gets removed when the user commits, so if it still exists we're
3341 * sure the user can't have committed before.
3343 switch (opts->action) {
3344 case REPLAY_REVERT:
3345 if (!refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
3346 if (action != REPLAY_REVERT)
3347 return error(_("no revert in progress"));
3348 if (!rollback_is_safe())
3349 goto give_advice;
3351 break;
3352 case REPLAY_PICK:
3353 if (!refs_ref_exists(get_main_ref_store(r),
3354 "CHERRY_PICK_HEAD")) {
3355 if (action != REPLAY_PICK)
3356 return error(_("no cherry-pick in progress"));
3357 if (!rollback_is_safe())
3358 goto give_advice;
3360 break;
3361 default:
3362 BUG("unexpected action in sequencer_skip");
3365 if (skip_single_pick())
3366 return error(_("failed to skip the commit"));
3367 if (!is_directory(git_path_seq_dir()))
3368 return 0;
3370 return sequencer_continue(r, opts);
3372 give_advice:
3373 error(_("there is nothing to skip"));
3375 if (advice_enabled(ADVICE_RESOLVE_CONFLICT)) {
3376 advise(_("have you committed already?\n"
3377 "try \"git %s --continue\""),
3378 action == REPLAY_REVERT ? "revert" : "cherry-pick");
3380 return -1;
3383 static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
3385 struct lock_file todo_lock = LOCK_INIT;
3386 const char *todo_path = get_todo_path(opts);
3387 int next = todo_list->current, offset, fd;
3390 * rebase -i writes "git-rebase-todo" without the currently executing
3391 * command, appending it to "done" instead.
3393 if (is_rebase_i(opts))
3394 next++;
3396 fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
3397 if (fd < 0)
3398 return error_errno(_("could not lock '%s'"), todo_path);
3399 offset = get_item_line_offset(todo_list, next);
3400 if (write_in_full(fd, todo_list->buf.buf + offset,
3401 todo_list->buf.len - offset) < 0)
3402 return error_errno(_("could not write to '%s'"), todo_path);
3403 if (commit_lock_file(&todo_lock) < 0)
3404 return error(_("failed to finalize '%s'"), todo_path);
3406 if (is_rebase_i(opts) && next > 0) {
3407 const char *done = rebase_path_done();
3408 int fd = open(done, O_CREAT | O_WRONLY | O_APPEND, 0666);
3409 int ret = 0;
3411 if (fd < 0)
3412 return 0;
3413 if (write_in_full(fd, get_item_line(todo_list, next - 1),
3414 get_item_line_length(todo_list, next - 1))
3415 < 0)
3416 ret = error_errno(_("could not write to '%s'"), done);
3417 if (close(fd) < 0)
3418 ret = error_errno(_("failed to finalize '%s'"), done);
3419 return ret;
3421 return 0;
3424 static int save_opts(struct replay_opts *opts)
3426 const char *opts_file = git_path_opts_file();
3427 int res = 0;
3429 if (opts->no_commit)
3430 res |= git_config_set_in_file_gently(opts_file,
3431 "options.no-commit", "true");
3432 if (opts->edit >= 0)
3433 res |= git_config_set_in_file_gently(opts_file, "options.edit",
3434 opts->edit ? "true" : "false");
3435 if (opts->allow_empty)
3436 res |= git_config_set_in_file_gently(opts_file,
3437 "options.allow-empty", "true");
3438 if (opts->allow_empty_message)
3439 res |= git_config_set_in_file_gently(opts_file,
3440 "options.allow-empty-message", "true");
3441 if (opts->keep_redundant_commits)
3442 res |= git_config_set_in_file_gently(opts_file,
3443 "options.keep-redundant-commits", "true");
3444 if (opts->signoff)
3445 res |= git_config_set_in_file_gently(opts_file,
3446 "options.signoff", "true");
3447 if (opts->record_origin)
3448 res |= git_config_set_in_file_gently(opts_file,
3449 "options.record-origin", "true");
3450 if (opts->allow_ff)
3451 res |= git_config_set_in_file_gently(opts_file,
3452 "options.allow-ff", "true");
3453 if (opts->mainline) {
3454 struct strbuf buf = STRBUF_INIT;
3455 strbuf_addf(&buf, "%d", opts->mainline);
3456 res |= git_config_set_in_file_gently(opts_file,
3457 "options.mainline", buf.buf);
3458 strbuf_release(&buf);
3460 if (opts->strategy)
3461 res |= git_config_set_in_file_gently(opts_file,
3462 "options.strategy", opts->strategy);
3463 if (opts->gpg_sign)
3464 res |= git_config_set_in_file_gently(opts_file,
3465 "options.gpg-sign", opts->gpg_sign);
3466 for (size_t i = 0; i < opts->xopts.nr; i++)
3467 res |= git_config_set_multivar_in_file_gently(opts_file,
3468 "options.strategy-option",
3469 opts->xopts.v[i], "^$", 0);
3470 if (opts->allow_rerere_auto)
3471 res |= git_config_set_in_file_gently(opts_file,
3472 "options.allow-rerere-auto",
3473 opts->allow_rerere_auto == RERERE_AUTOUPDATE ?
3474 "true" : "false");
3476 if (opts->explicit_cleanup)
3477 res |= git_config_set_in_file_gently(opts_file,
3478 "options.default-msg-cleanup",
3479 describe_cleanup_mode(opts->default_msg_cleanup));
3480 return res;
3483 static int make_patch(struct repository *r,
3484 struct commit *commit,
3485 struct replay_opts *opts)
3487 struct rev_info log_tree_opt;
3488 const char *subject;
3489 char hex[GIT_MAX_HEXSZ + 1];
3490 int res = 0;
3492 if (!is_rebase_i(opts))
3493 BUG("make_patch should only be called when rebasing");
3495 oid_to_hex_r(hex, &commit->object.oid);
3496 if (write_message(hex, strlen(hex), rebase_path_stopped_sha(), 1) < 0)
3497 return -1;
3498 res |= write_rebase_head(&commit->object.oid);
3500 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
3501 repo_init_revisions(r, &log_tree_opt, NULL);
3502 log_tree_opt.abbrev = 0;
3503 log_tree_opt.diff = 1;
3504 log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH;
3505 log_tree_opt.disable_stdin = 1;
3506 log_tree_opt.no_commit_id = 1;
3507 log_tree_opt.diffopt.file = fopen(rebase_path_patch(), "w");
3508 log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER;
3509 if (!log_tree_opt.diffopt.file)
3510 res |= error_errno(_("could not open '%s'"),
3511 rebase_path_patch());
3512 else {
3513 res |= log_tree_commit(&log_tree_opt, commit);
3514 fclose(log_tree_opt.diffopt.file);
3517 if (!file_exists(rebase_path_message())) {
3518 const char *encoding = get_commit_output_encoding();
3519 const char *commit_buffer = repo_logmsg_reencode(r,
3520 commit, NULL,
3521 encoding);
3522 find_commit_subject(commit_buffer, &subject);
3523 res |= write_message(subject, strlen(subject), rebase_path_message(), 1);
3524 repo_unuse_commit_buffer(r, commit,
3525 commit_buffer);
3527 release_revisions(&log_tree_opt);
3529 return res;
3532 static int intend_to_amend(void)
3534 struct object_id head;
3535 char *p;
3537 if (repo_get_oid(the_repository, "HEAD", &head))
3538 return error(_("cannot read HEAD"));
3540 p = oid_to_hex(&head);
3541 return write_message(p, strlen(p), rebase_path_amend(), 1);
3544 static int error_with_patch(struct repository *r,
3545 struct commit *commit,
3546 const char *subject, int subject_len,
3547 struct replay_opts *opts,
3548 int exit_code, int to_amend)
3550 if (commit) {
3551 if (make_patch(r, commit, opts))
3552 return -1;
3553 } else if (copy_file(rebase_path_message(),
3554 git_path_merge_msg(r), 0666))
3555 return error(_("unable to copy '%s' to '%s'"),
3556 git_path_merge_msg(r), rebase_path_message());
3558 if (to_amend) {
3559 if (intend_to_amend())
3560 return -1;
3562 fprintf(stderr,
3563 _("You can amend the commit now, with\n"
3564 "\n"
3565 " git commit --amend %s\n"
3566 "\n"
3567 "Once you are satisfied with your changes, run\n"
3568 "\n"
3569 " git rebase --continue\n"),
3570 gpg_sign_opt_quoted(opts));
3571 } else if (exit_code) {
3572 if (commit)
3573 fprintf_ln(stderr, _("Could not apply %s... %.*s"),
3574 short_commit_name(commit), subject_len, subject);
3575 else
3577 * We don't have the hash of the parent so
3578 * just print the line from the todo file.
3580 fprintf_ln(stderr, _("Could not merge %.*s"),
3581 subject_len, subject);
3584 return exit_code;
3587 static int error_failed_squash(struct repository *r,
3588 struct commit *commit,
3589 struct replay_opts *opts,
3590 int subject_len,
3591 const char *subject)
3593 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3594 return error(_("could not copy '%s' to '%s'"),
3595 rebase_path_squash_msg(), rebase_path_message());
3596 unlink(git_path_merge_msg(r));
3597 if (copy_file(git_path_merge_msg(r), rebase_path_message(), 0666))
3598 return error(_("could not copy '%s' to '%s'"),
3599 rebase_path_message(),
3600 git_path_merge_msg(r));
3601 return error_with_patch(r, commit, subject, subject_len, opts, 1, 0);
3604 static int do_exec(struct repository *r, const char *command_line)
3606 struct child_process cmd = CHILD_PROCESS_INIT;
3607 int dirty, status;
3609 fprintf(stderr, _("Executing: %s\n"), command_line);
3610 cmd.use_shell = 1;
3611 strvec_push(&cmd.args, command_line);
3612 status = run_command(&cmd);
3614 /* force re-reading of the cache */
3615 discard_index(r->index);
3616 if (repo_read_index(r) < 0)
3617 return error(_("could not read index"));
3619 dirty = require_clean_work_tree(r, "rebase", NULL, 1, 1);
3621 if (status) {
3622 warning(_("execution failed: %s\n%s"
3623 "You can fix the problem, and then run\n"
3624 "\n"
3625 " git rebase --continue\n"
3626 "\n"),
3627 command_line,
3628 dirty ? N_("and made changes to the index and/or the "
3629 "working tree\n") : "");
3630 if (status == 127)
3631 /* command not found */
3632 status = 1;
3633 } else if (dirty) {
3634 warning(_("execution succeeded: %s\nbut "
3635 "left changes to the index and/or the working tree\n"
3636 "Commit or stash your changes, and then run\n"
3637 "\n"
3638 " git rebase --continue\n"
3639 "\n"), command_line);
3640 status = 1;
3643 return status;
3646 __attribute__((format (printf, 2, 3)))
3647 static int safe_append(const char *filename, const char *fmt, ...)
3649 va_list ap;
3650 struct lock_file lock = LOCK_INIT;
3651 int fd = hold_lock_file_for_update(&lock, filename,
3652 LOCK_REPORT_ON_ERROR);
3653 struct strbuf buf = STRBUF_INIT;
3655 if (fd < 0)
3656 return -1;
3658 if (strbuf_read_file(&buf, filename, 0) < 0 && errno != ENOENT) {
3659 error_errno(_("could not read '%s'"), filename);
3660 rollback_lock_file(&lock);
3661 return -1;
3663 strbuf_complete(&buf, '\n');
3664 va_start(ap, fmt);
3665 strbuf_vaddf(&buf, fmt, ap);
3666 va_end(ap);
3668 if (write_in_full(fd, buf.buf, buf.len) < 0) {
3669 error_errno(_("could not write to '%s'"), filename);
3670 strbuf_release(&buf);
3671 rollback_lock_file(&lock);
3672 return -1;
3674 if (commit_lock_file(&lock) < 0) {
3675 strbuf_release(&buf);
3676 return error(_("failed to finalize '%s'"), filename);
3679 strbuf_release(&buf);
3680 return 0;
3683 static int do_label(struct repository *r, const char *name, int len)
3685 struct ref_store *refs = get_main_ref_store(r);
3686 struct ref_transaction *transaction;
3687 struct strbuf ref_name = STRBUF_INIT, err = STRBUF_INIT;
3688 struct strbuf msg = STRBUF_INIT;
3689 int ret = 0;
3690 struct object_id head_oid;
3692 if (len == 1 && *name == '#')
3693 return error(_("illegal label name: '%.*s'"), len, name);
3695 strbuf_addf(&ref_name, "refs/rewritten/%.*s", len, name);
3696 strbuf_addf(&msg, "rebase (label) '%.*s'", len, name);
3698 transaction = ref_store_transaction_begin(refs, &err);
3699 if (!transaction) {
3700 error("%s", err.buf);
3701 ret = -1;
3702 } else if (repo_get_oid(r, "HEAD", &head_oid)) {
3703 error(_("could not read HEAD"));
3704 ret = -1;
3705 } else if (ref_transaction_update(transaction, ref_name.buf, &head_oid,
3706 NULL, 0, msg.buf, &err) < 0 ||
3707 ref_transaction_commit(transaction, &err)) {
3708 error("%s", err.buf);
3709 ret = -1;
3711 ref_transaction_free(transaction);
3712 strbuf_release(&err);
3713 strbuf_release(&msg);
3715 if (!ret)
3716 ret = safe_append(rebase_path_refs_to_delete(),
3717 "%s\n", ref_name.buf);
3718 strbuf_release(&ref_name);
3720 return ret;
3723 static const char *sequencer_reflog_action(struct replay_opts *opts)
3725 if (!opts->reflog_action) {
3726 opts->reflog_action = getenv(GIT_REFLOG_ACTION);
3727 opts->reflog_action =
3728 xstrdup(opts->reflog_action ? opts->reflog_action
3729 : action_name(opts));
3732 return opts->reflog_action;
3735 __attribute__((format (printf, 3, 4)))
3736 static const char *reflog_message(struct replay_opts *opts,
3737 const char *sub_action, const char *fmt, ...)
3739 va_list ap;
3740 static struct strbuf buf = STRBUF_INIT;
3742 va_start(ap, fmt);
3743 strbuf_reset(&buf);
3744 strbuf_addstr(&buf, sequencer_reflog_action(opts));
3745 if (sub_action)
3746 strbuf_addf(&buf, " (%s)", sub_action);
3747 if (fmt) {
3748 strbuf_addstr(&buf, ": ");
3749 strbuf_vaddf(&buf, fmt, ap);
3751 va_end(ap);
3753 return buf.buf;
3756 static struct commit *lookup_label(struct repository *r, const char *label,
3757 int len, struct strbuf *buf)
3759 struct commit *commit;
3760 struct object_id oid;
3762 strbuf_reset(buf);
3763 strbuf_addf(buf, "refs/rewritten/%.*s", len, label);
3764 if (!read_ref(buf->buf, &oid)) {
3765 commit = lookup_commit_object(r, &oid);
3766 } else {
3767 /* fall back to non-rewritten ref or commit */
3768 strbuf_splice(buf, 0, strlen("refs/rewritten/"), "", 0);
3769 commit = lookup_commit_reference_by_name(buf->buf);
3772 if (!commit)
3773 error(_("could not resolve '%s'"), buf->buf);
3775 return commit;
3778 static int do_reset(struct repository *r,
3779 const char *name, int len,
3780 struct replay_opts *opts)
3782 struct strbuf ref_name = STRBUF_INIT;
3783 struct object_id oid;
3784 struct lock_file lock = LOCK_INIT;
3785 struct tree_desc desc = { 0 };
3786 struct tree *tree;
3787 struct unpack_trees_options unpack_tree_opts = { 0 };
3788 int ret = 0;
3790 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0)
3791 return -1;
3793 if (len == 10 && !strncmp("[new root]", name, len)) {
3794 if (!opts->have_squash_onto) {
3795 const char *hex;
3796 if (commit_tree("", 0, the_hash_algo->empty_tree,
3797 NULL, &opts->squash_onto,
3798 NULL, NULL))
3799 return error(_("writing fake root commit"));
3800 opts->have_squash_onto = 1;
3801 hex = oid_to_hex(&opts->squash_onto);
3802 if (write_message(hex, strlen(hex),
3803 rebase_path_squash_onto(), 0))
3804 return error(_("writing squash-onto"));
3806 oidcpy(&oid, &opts->squash_onto);
3807 } else {
3808 int i;
3809 struct commit *commit;
3811 /* Determine the length of the label */
3812 for (i = 0; i < len; i++)
3813 if (isspace(name[i]))
3814 break;
3815 len = i;
3817 commit = lookup_label(r, name, len, &ref_name);
3818 if (!commit) {
3819 ret = -1;
3820 goto cleanup;
3822 oid = commit->object.oid;
3825 setup_unpack_trees_porcelain(&unpack_tree_opts, "reset");
3826 unpack_tree_opts.head_idx = 1;
3827 unpack_tree_opts.src_index = r->index;
3828 unpack_tree_opts.dst_index = r->index;
3829 unpack_tree_opts.fn = oneway_merge;
3830 unpack_tree_opts.merge = 1;
3831 unpack_tree_opts.update = 1;
3832 unpack_tree_opts.preserve_ignored = 0; /* FIXME: !overwrite_ignore */
3833 unpack_tree_opts.skip_cache_tree_update = 1;
3834 init_checkout_metadata(&unpack_tree_opts.meta, name, &oid, NULL);
3836 if (repo_read_index_unmerged(r)) {
3837 ret = error_resolve_conflict(action_name(opts));
3838 goto cleanup;
3841 if (!fill_tree_descriptor(r, &desc, &oid)) {
3842 ret = error(_("failed to find tree of %s"), oid_to_hex(&oid));
3843 goto cleanup;
3846 if (unpack_trees(1, &desc, &unpack_tree_opts)) {
3847 ret = -1;
3848 goto cleanup;
3851 tree = parse_tree_indirect(&oid);
3852 prime_cache_tree(r, r->index, tree);
3854 if (write_locked_index(r->index, &lock, COMMIT_LOCK) < 0)
3855 ret = error(_("could not write index"));
3857 if (!ret)
3858 ret = update_ref(reflog_message(opts, "reset", "'%.*s'",
3859 len, name), "HEAD", &oid,
3860 NULL, 0, UPDATE_REFS_MSG_ON_ERR);
3861 cleanup:
3862 free((void *)desc.buffer);
3863 if (ret < 0)
3864 rollback_lock_file(&lock);
3865 strbuf_release(&ref_name);
3866 clear_unpack_trees_porcelain(&unpack_tree_opts);
3867 return ret;
3870 static int do_merge(struct repository *r,
3871 struct commit *commit,
3872 const char *arg, int arg_len,
3873 int flags, int *check_todo, struct replay_opts *opts)
3875 int run_commit_flags = 0;
3876 struct strbuf ref_name = STRBUF_INIT;
3877 struct commit *head_commit, *merge_commit, *i;
3878 struct commit_list *bases, *j;
3879 struct commit_list *to_merge = NULL, **tail = &to_merge;
3880 const char *strategy = !opts->xopts.nr &&
3881 (!opts->strategy ||
3882 !strcmp(opts->strategy, "recursive") ||
3883 !strcmp(opts->strategy, "ort")) ?
3884 NULL : opts->strategy;
3885 struct merge_options o;
3886 int merge_arg_len, oneline_offset, can_fast_forward, ret, k;
3887 static struct lock_file lock;
3888 const char *p;
3890 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0) {
3891 ret = -1;
3892 goto leave_merge;
3895 head_commit = lookup_commit_reference_by_name("HEAD");
3896 if (!head_commit) {
3897 ret = error(_("cannot merge without a current revision"));
3898 goto leave_merge;
3902 * For octopus merges, the arg starts with the list of revisions to be
3903 * merged. The list is optionally followed by '#' and the oneline.
3905 merge_arg_len = oneline_offset = arg_len;
3906 for (p = arg; p - arg < arg_len; p += strspn(p, " \t\n")) {
3907 if (!*p)
3908 break;
3909 if (*p == '#' && (!p[1] || isspace(p[1]))) {
3910 p += 1 + strspn(p + 1, " \t\n");
3911 oneline_offset = p - arg;
3912 break;
3914 k = strcspn(p, " \t\n");
3915 if (!k)
3916 continue;
3917 merge_commit = lookup_label(r, p, k, &ref_name);
3918 if (!merge_commit) {
3919 ret = error(_("unable to parse '%.*s'"), k, p);
3920 goto leave_merge;
3922 tail = &commit_list_insert(merge_commit, tail)->next;
3923 p += k;
3924 merge_arg_len = p - arg;
3927 if (!to_merge) {
3928 ret = error(_("nothing to merge: '%.*s'"), arg_len, arg);
3929 goto leave_merge;
3932 if (opts->have_squash_onto &&
3933 oideq(&head_commit->object.oid, &opts->squash_onto)) {
3935 * When the user tells us to "merge" something into a
3936 * "[new root]", let's simply fast-forward to the merge head.
3938 rollback_lock_file(&lock);
3939 if (to_merge->next)
3940 ret = error(_("octopus merge cannot be executed on "
3941 "top of a [new root]"));
3942 else
3943 ret = fast_forward_to(r, &to_merge->item->object.oid,
3944 &head_commit->object.oid, 0,
3945 opts);
3946 goto leave_merge;
3950 * If HEAD is not identical to the first parent of the original merge
3951 * commit, we cannot fast-forward.
3953 can_fast_forward = opts->allow_ff && commit && commit->parents &&
3954 oideq(&commit->parents->item->object.oid,
3955 &head_commit->object.oid);
3958 * If any merge head is different from the original one, we cannot
3959 * fast-forward.
3961 if (can_fast_forward) {
3962 struct commit_list *p = commit->parents->next;
3964 for (j = to_merge; j && p; j = j->next, p = p->next)
3965 if (!oideq(&j->item->object.oid,
3966 &p->item->object.oid)) {
3967 can_fast_forward = 0;
3968 break;
3971 * If the number of merge heads differs from the original merge
3972 * commit, we cannot fast-forward.
3974 if (j || p)
3975 can_fast_forward = 0;
3978 if (can_fast_forward) {
3979 rollback_lock_file(&lock);
3980 ret = fast_forward_to(r, &commit->object.oid,
3981 &head_commit->object.oid, 0, opts);
3982 if (flags & TODO_EDIT_MERGE_MSG)
3983 goto fast_forward_edit;
3985 goto leave_merge;
3988 if (commit) {
3989 const char *encoding = get_commit_output_encoding();
3990 const char *message = repo_logmsg_reencode(r, commit, NULL,
3991 encoding);
3992 const char *body;
3993 int len;
3995 if (!message) {
3996 ret = error(_("could not get commit message of '%s'"),
3997 oid_to_hex(&commit->object.oid));
3998 goto leave_merge;
4000 write_author_script(message);
4001 find_commit_subject(message, &body);
4002 len = strlen(body);
4003 ret = write_message(body, len, git_path_merge_msg(r), 0);
4004 repo_unuse_commit_buffer(r, commit, message);
4005 if (ret) {
4006 error_errno(_("could not write '%s'"),
4007 git_path_merge_msg(r));
4008 goto leave_merge;
4010 } else {
4011 struct strbuf buf = STRBUF_INIT;
4012 int len;
4014 strbuf_addf(&buf, "author %s", git_author_info(0));
4015 write_author_script(buf.buf);
4016 strbuf_reset(&buf);
4018 if (oneline_offset < arg_len) {
4019 p = arg + oneline_offset;
4020 len = arg_len - oneline_offset;
4021 } else {
4022 strbuf_addf(&buf, "Merge %s '%.*s'",
4023 to_merge->next ? "branches" : "branch",
4024 merge_arg_len, arg);
4025 p = buf.buf;
4026 len = buf.len;
4029 ret = write_message(p, len, git_path_merge_msg(r), 0);
4030 strbuf_release(&buf);
4031 if (ret) {
4032 error_errno(_("could not write '%s'"),
4033 git_path_merge_msg(r));
4034 goto leave_merge;
4038 if (strategy || to_merge->next) {
4039 /* Octopus merge */
4040 struct child_process cmd = CHILD_PROCESS_INIT;
4042 if (read_env_script(&cmd.env)) {
4043 const char *gpg_opt = gpg_sign_opt_quoted(opts);
4045 ret = error(_(staged_changes_advice), gpg_opt, gpg_opt);
4046 goto leave_merge;
4049 if (opts->committer_date_is_author_date)
4050 strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s",
4051 opts->ignore_date ?
4052 "" :
4053 author_date_from_env(&cmd.env));
4054 if (opts->ignore_date)
4055 strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
4057 cmd.git_cmd = 1;
4058 strvec_push(&cmd.args, "merge");
4059 strvec_push(&cmd.args, "-s");
4060 if (!strategy)
4061 strvec_push(&cmd.args, "octopus");
4062 else {
4063 strvec_push(&cmd.args, strategy);
4064 for (k = 0; k < opts->xopts.nr; k++)
4065 strvec_pushf(&cmd.args,
4066 "-X%s", opts->xopts.v[k]);
4068 if (!(flags & TODO_EDIT_MERGE_MSG))
4069 strvec_push(&cmd.args, "--no-edit");
4070 else
4071 strvec_push(&cmd.args, "--edit");
4072 strvec_push(&cmd.args, "--no-ff");
4073 strvec_push(&cmd.args, "--no-log");
4074 strvec_push(&cmd.args, "--no-stat");
4075 strvec_push(&cmd.args, "-F");
4076 strvec_push(&cmd.args, git_path_merge_msg(r));
4077 if (opts->gpg_sign)
4078 strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign);
4079 else
4080 strvec_push(&cmd.args, "--no-gpg-sign");
4082 /* Add the tips to be merged */
4083 for (j = to_merge; j; j = j->next)
4084 strvec_push(&cmd.args,
4085 oid_to_hex(&j->item->object.oid));
4087 strbuf_release(&ref_name);
4088 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
4089 NULL, 0);
4090 rollback_lock_file(&lock);
4092 ret = run_command(&cmd);
4094 /* force re-reading of the cache */
4095 if (!ret) {
4096 discard_index(r->index);
4097 if (repo_read_index(r) < 0)
4098 ret = error(_("could not read index"));
4100 goto leave_merge;
4103 merge_commit = to_merge->item;
4104 bases = repo_get_merge_bases(r, head_commit, merge_commit);
4105 if (bases && oideq(&merge_commit->object.oid,
4106 &bases->item->object.oid)) {
4107 ret = 0;
4108 /* skip merging an ancestor of HEAD */
4109 goto leave_merge;
4112 write_message(oid_to_hex(&merge_commit->object.oid), the_hash_algo->hexsz,
4113 git_path_merge_head(r), 0);
4114 write_message("no-ff", 5, git_path_merge_mode(r), 0);
4116 bases = reverse_commit_list(bases);
4118 repo_read_index(r);
4119 init_merge_options(&o, r);
4120 o.branch1 = "HEAD";
4121 o.branch2 = ref_name.buf;
4122 o.buffer_output = 2;
4124 if (!opts->strategy || !strcmp(opts->strategy, "ort")) {
4126 * TODO: Should use merge_incore_recursive() and
4127 * merge_switch_to_result(), skipping the call to
4128 * merge_switch_to_result() when we don't actually need to
4129 * update the index and working copy immediately.
4131 ret = merge_ort_recursive(&o,
4132 head_commit, merge_commit, bases,
4133 &i);
4134 } else {
4135 ret = merge_recursive(&o, head_commit, merge_commit, bases,
4136 &i);
4138 if (ret <= 0)
4139 fputs(o.obuf.buf, stdout);
4140 strbuf_release(&o.obuf);
4141 if (ret < 0) {
4142 error(_("could not even attempt to merge '%.*s'"),
4143 merge_arg_len, arg);
4144 unlink(git_path_merge_msg(r));
4145 goto leave_merge;
4148 * The return value of merge_recursive() is 1 on clean, and 0 on
4149 * unclean merge.
4151 * Let's reverse that, so that do_merge() returns 0 upon success and
4152 * 1 upon failed merge (keeping the return value -1 for the cases where
4153 * we will want to reschedule the `merge` command).
4155 ret = !ret;
4157 if (r->index->cache_changed &&
4158 write_locked_index(r->index, &lock, COMMIT_LOCK)) {
4159 ret = error(_("merge: Unable to write new index file"));
4160 goto leave_merge;
4163 rollback_lock_file(&lock);
4164 if (ret)
4165 repo_rerere(r, opts->allow_rerere_auto);
4166 else
4168 * In case of problems, we now want to return a positive
4169 * value (a negative one would indicate that the `merge`
4170 * command needs to be rescheduled).
4172 ret = !!run_git_commit(git_path_merge_msg(r), opts,
4173 run_commit_flags);
4175 if (!ret && flags & TODO_EDIT_MERGE_MSG) {
4176 fast_forward_edit:
4177 *check_todo = 1;
4178 run_commit_flags |= AMEND_MSG | EDIT_MSG | VERIFY_MSG;
4179 ret = !!run_git_commit(NULL, opts, run_commit_flags);
4183 leave_merge:
4184 strbuf_release(&ref_name);
4185 rollback_lock_file(&lock);
4186 free_commit_list(to_merge);
4187 return ret;
4190 static int write_update_refs_state(struct string_list *refs_to_oids)
4192 int result = 0;
4193 struct lock_file lock = LOCK_INIT;
4194 FILE *fp = NULL;
4195 struct string_list_item *item;
4196 char *path;
4198 path = rebase_path_update_refs(the_repository->gitdir);
4200 if (!refs_to_oids->nr) {
4201 if (unlink(path) && errno != ENOENT)
4202 result = error_errno(_("could not unlink: %s"), path);
4203 goto cleanup;
4206 if (safe_create_leading_directories(path)) {
4207 result = error(_("unable to create leading directories of %s"),
4208 path);
4209 goto cleanup;
4212 if (hold_lock_file_for_update(&lock, path, 0) < 0) {
4213 result = error(_("another 'rebase' process appears to be running; "
4214 "'%s.lock' already exists"),
4215 path);
4216 goto cleanup;
4219 fp = fdopen_lock_file(&lock, "w");
4220 if (!fp) {
4221 result = error_errno(_("could not open '%s' for writing"), path);
4222 rollback_lock_file(&lock);
4223 goto cleanup;
4226 for_each_string_list_item(item, refs_to_oids) {
4227 struct update_ref_record *rec = item->util;
4228 fprintf(fp, "%s\n%s\n%s\n", item->string,
4229 oid_to_hex(&rec->before), oid_to_hex(&rec->after));
4232 result = commit_lock_file(&lock);
4234 cleanup:
4235 free(path);
4236 return result;
4240 * Parse the update-refs file for the current rebase, then remove the
4241 * refs that do not appear in the todo_list (and have not had updated
4242 * values stored) and add refs that are in the todo_list but not
4243 * represented in the update-refs file.
4245 * If there are changes to the update-refs list, then write the new state
4246 * to disk.
4248 void todo_list_filter_update_refs(struct repository *r,
4249 struct todo_list *todo_list)
4251 int i;
4252 int updated = 0;
4253 struct string_list update_refs = STRING_LIST_INIT_DUP;
4255 sequencer_get_update_refs_state(r->gitdir, &update_refs);
4258 * For each item in the update_refs list, if it has no updated
4259 * value and does not appear in the todo_list, then remove it
4260 * from the update_refs list.
4262 for (i = 0; i < update_refs.nr; i++) {
4263 int j;
4264 int found = 0;
4265 const char *ref = update_refs.items[i].string;
4266 size_t reflen = strlen(ref);
4267 struct update_ref_record *rec = update_refs.items[i].util;
4269 /* OID already stored as updated. */
4270 if (!is_null_oid(&rec->after))
4271 continue;
4273 for (j = 0; !found && j < todo_list->total_nr; j++) {
4274 struct todo_item *item = &todo_list->items[j];
4275 const char *arg = todo_list->buf.buf + item->arg_offset;
4277 if (item->command != TODO_UPDATE_REF)
4278 continue;
4280 if (item->arg_len != reflen ||
4281 strncmp(arg, ref, reflen))
4282 continue;
4284 found = 1;
4287 if (!found) {
4288 free(update_refs.items[i].string);
4289 free(update_refs.items[i].util);
4291 update_refs.nr--;
4292 MOVE_ARRAY(update_refs.items + i, update_refs.items + i + 1, update_refs.nr - i);
4294 updated = 1;
4295 i--;
4300 * For each todo_item, check if its ref is in the update_refs list.
4301 * If not, then add it as an un-updated ref.
4303 for (i = 0; i < todo_list->total_nr; i++) {
4304 struct todo_item *item = &todo_list->items[i];
4305 const char *arg = todo_list->buf.buf + item->arg_offset;
4306 int j, found = 0;
4308 if (item->command != TODO_UPDATE_REF)
4309 continue;
4311 for (j = 0; !found && j < update_refs.nr; j++) {
4312 const char *ref = update_refs.items[j].string;
4314 found = strlen(ref) == item->arg_len &&
4315 !strncmp(ref, arg, item->arg_len);
4318 if (!found) {
4319 struct string_list_item *inserted;
4320 struct strbuf argref = STRBUF_INIT;
4322 strbuf_add(&argref, arg, item->arg_len);
4323 inserted = string_list_insert(&update_refs, argref.buf);
4324 inserted->util = init_update_ref_record(argref.buf);
4325 strbuf_release(&argref);
4326 updated = 1;
4330 if (updated)
4331 write_update_refs_state(&update_refs);
4332 string_list_clear(&update_refs, 1);
4335 static int do_update_ref(struct repository *r, const char *refname)
4337 struct string_list_item *item;
4338 struct string_list list = STRING_LIST_INIT_DUP;
4340 if (sequencer_get_update_refs_state(r->gitdir, &list))
4341 return -1;
4343 for_each_string_list_item(item, &list) {
4344 if (!strcmp(item->string, refname)) {
4345 struct update_ref_record *rec = item->util;
4346 if (read_ref("HEAD", &rec->after))
4347 return -1;
4348 break;
4352 write_update_refs_state(&list);
4353 string_list_clear(&list, 1);
4354 return 0;
4357 static int do_update_refs(struct repository *r, int quiet)
4359 int res = 0;
4360 struct string_list_item *item;
4361 struct string_list refs_to_oids = STRING_LIST_INIT_DUP;
4362 struct ref_store *refs = get_main_ref_store(r);
4363 struct strbuf update_msg = STRBUF_INIT;
4364 struct strbuf error_msg = STRBUF_INIT;
4366 if ((res = sequencer_get_update_refs_state(r->gitdir, &refs_to_oids)))
4367 return res;
4369 for_each_string_list_item(item, &refs_to_oids) {
4370 struct update_ref_record *rec = item->util;
4371 int loop_res;
4373 loop_res = refs_update_ref(refs, "rewritten during rebase",
4374 item->string,
4375 &rec->after, &rec->before,
4376 0, UPDATE_REFS_MSG_ON_ERR);
4377 res |= loop_res;
4379 if (quiet)
4380 continue;
4382 if (loop_res)
4383 strbuf_addf(&error_msg, "\t%s\n", item->string);
4384 else
4385 strbuf_addf(&update_msg, "\t%s\n", item->string);
4388 if (!quiet &&
4389 (update_msg.len || error_msg.len)) {
4390 fprintf(stderr,
4391 _("Updated the following refs with %s:\n%s"),
4392 "--update-refs",
4393 update_msg.buf);
4395 if (res)
4396 fprintf(stderr,
4397 _("Failed to update the following refs with %s:\n%s"),
4398 "--update-refs",
4399 error_msg.buf);
4402 string_list_clear(&refs_to_oids, 1);
4403 strbuf_release(&update_msg);
4404 strbuf_release(&error_msg);
4405 return res;
4408 static int is_final_fixup(struct todo_list *todo_list)
4410 int i = todo_list->current;
4412 if (!is_fixup(todo_list->items[i].command))
4413 return 0;
4415 while (++i < todo_list->nr)
4416 if (is_fixup(todo_list->items[i].command))
4417 return 0;
4418 else if (!is_noop(todo_list->items[i].command))
4419 break;
4420 return 1;
4423 static enum todo_command peek_command(struct todo_list *todo_list, int offset)
4425 int i;
4427 for (i = todo_list->current + offset; i < todo_list->nr; i++)
4428 if (!is_noop(todo_list->items[i].command))
4429 return todo_list->items[i].command;
4431 return -1;
4434 void create_autostash(struct repository *r, const char *path)
4436 struct strbuf buf = STRBUF_INIT;
4437 struct lock_file lock_file = LOCK_INIT;
4438 int fd;
4440 fd = repo_hold_locked_index(r, &lock_file, 0);
4441 refresh_index(r->index, REFRESH_QUIET, NULL, NULL, NULL);
4442 if (0 <= fd)
4443 repo_update_index_if_able(r, &lock_file);
4444 rollback_lock_file(&lock_file);
4446 if (has_unstaged_changes(r, 1) ||
4447 has_uncommitted_changes(r, 1)) {
4448 struct child_process stash = CHILD_PROCESS_INIT;
4449 struct reset_head_opts ropts = { .flags = RESET_HEAD_HARD };
4450 struct object_id oid;
4452 strvec_pushl(&stash.args,
4453 "stash", "create", "autostash", NULL);
4454 stash.git_cmd = 1;
4455 stash.no_stdin = 1;
4456 strbuf_reset(&buf);
4457 if (capture_command(&stash, &buf, GIT_MAX_HEXSZ))
4458 die(_("Cannot autostash"));
4459 strbuf_trim_trailing_newline(&buf);
4460 if (repo_get_oid(r, buf.buf, &oid))
4461 die(_("Unexpected stash response: '%s'"),
4462 buf.buf);
4463 strbuf_reset(&buf);
4464 strbuf_add_unique_abbrev(&buf, &oid, DEFAULT_ABBREV);
4466 if (safe_create_leading_directories_const(path))
4467 die(_("Could not create directory for '%s'"),
4468 path);
4469 write_file(path, "%s", oid_to_hex(&oid));
4470 printf(_("Created autostash: %s\n"), buf.buf);
4471 if (reset_head(r, &ropts) < 0)
4472 die(_("could not reset --hard"));
4473 discard_index(r->index);
4474 if (repo_read_index(r) < 0)
4475 die(_("could not read index"));
4477 strbuf_release(&buf);
4480 static int apply_save_autostash_oid(const char *stash_oid, int attempt_apply)
4482 struct child_process child = CHILD_PROCESS_INIT;
4483 int ret = 0;
4485 if (attempt_apply) {
4486 child.git_cmd = 1;
4487 child.no_stdout = 1;
4488 child.no_stderr = 1;
4489 strvec_push(&child.args, "stash");
4490 strvec_push(&child.args, "apply");
4491 strvec_push(&child.args, stash_oid);
4492 ret = run_command(&child);
4495 if (attempt_apply && !ret)
4496 fprintf(stderr, _("Applied autostash.\n"));
4497 else {
4498 struct child_process store = CHILD_PROCESS_INIT;
4500 store.git_cmd = 1;
4501 strvec_push(&store.args, "stash");
4502 strvec_push(&store.args, "store");
4503 strvec_push(&store.args, "-m");
4504 strvec_push(&store.args, "autostash");
4505 strvec_push(&store.args, "-q");
4506 strvec_push(&store.args, stash_oid);
4507 if (run_command(&store))
4508 ret = error(_("cannot store %s"), stash_oid);
4509 else
4510 fprintf(stderr,
4511 _("%s\n"
4512 "Your changes are safe in the stash.\n"
4513 "You can run \"git stash pop\" or"
4514 " \"git stash drop\" at any time.\n"),
4515 attempt_apply ?
4516 _("Applying autostash resulted in conflicts.") :
4517 _("Autostash exists; creating a new stash entry."));
4520 return ret;
4523 static int apply_save_autostash(const char *path, int attempt_apply)
4525 struct strbuf stash_oid = STRBUF_INIT;
4526 int ret = 0;
4528 if (!read_oneliner(&stash_oid, path,
4529 READ_ONELINER_SKIP_IF_EMPTY)) {
4530 strbuf_release(&stash_oid);
4531 return 0;
4533 strbuf_trim(&stash_oid);
4535 ret = apply_save_autostash_oid(stash_oid.buf, attempt_apply);
4537 unlink(path);
4538 strbuf_release(&stash_oid);
4539 return ret;
4542 int save_autostash(const char *path)
4544 return apply_save_autostash(path, 0);
4547 int apply_autostash(const char *path)
4549 return apply_save_autostash(path, 1);
4552 int apply_autostash_oid(const char *stash_oid)
4554 return apply_save_autostash_oid(stash_oid, 1);
4557 static int checkout_onto(struct repository *r, struct replay_opts *opts,
4558 const char *onto_name, const struct object_id *onto,
4559 const struct object_id *orig_head)
4561 struct reset_head_opts ropts = {
4562 .oid = onto,
4563 .orig_head = orig_head,
4564 .flags = RESET_HEAD_DETACH | RESET_ORIG_HEAD |
4565 RESET_HEAD_RUN_POST_CHECKOUT_HOOK,
4566 .head_msg = reflog_message(opts, "start", "checkout %s",
4567 onto_name),
4568 .default_reflog_action = sequencer_reflog_action(opts)
4570 if (reset_head(r, &ropts)) {
4571 apply_autostash(rebase_path_autostash());
4572 sequencer_remove_state(opts);
4573 return error(_("could not detach HEAD"));
4576 return 0;
4579 static int stopped_at_head(struct repository *r)
4581 struct object_id head;
4582 struct commit *commit;
4583 struct commit_message message;
4585 if (repo_get_oid(r, "HEAD", &head) ||
4586 !(commit = lookup_commit(r, &head)) ||
4587 repo_parse_commit(r, commit) || get_message(commit, &message))
4588 fprintf(stderr, _("Stopped at HEAD\n"));
4589 else {
4590 fprintf(stderr, _("Stopped at %s\n"), message.label);
4591 free_message(commit, &message);
4593 return 0;
4597 static int reread_todo_if_changed(struct repository *r,
4598 struct todo_list *todo_list,
4599 struct replay_opts *opts)
4601 int offset;
4602 struct strbuf buf = STRBUF_INIT;
4604 if (strbuf_read_file_or_whine(&buf, get_todo_path(opts)) < 0)
4605 return -1;
4606 offset = get_item_line_offset(todo_list, todo_list->current + 1);
4607 if (buf.len != todo_list->buf.len - offset ||
4608 memcmp(buf.buf, todo_list->buf.buf + offset, buf.len)) {
4609 /* Reread the todo file if it has changed. */
4610 todo_list_release(todo_list);
4611 if (read_populate_todo(r, todo_list, opts))
4612 return -1; /* message was printed */
4613 /* `current` will be incremented on return */
4614 todo_list->current = -1;
4616 strbuf_release(&buf);
4618 return 0;
4621 static const char rescheduled_advice[] =
4622 N_("Could not execute the todo command\n"
4623 "\n"
4624 " %.*s"
4625 "\n"
4626 "It has been rescheduled; To edit the command before continuing, please\n"
4627 "edit the todo list first:\n"
4628 "\n"
4629 " git rebase --edit-todo\n"
4630 " git rebase --continue\n");
4632 static int pick_one_commit(struct repository *r,
4633 struct todo_list *todo_list,
4634 struct replay_opts *opts,
4635 int *check_todo, int* reschedule)
4637 int res;
4638 struct todo_item *item = todo_list->items + todo_list->current;
4639 const char *arg = todo_item_get_arg(todo_list, item);
4640 if (is_rebase_i(opts))
4641 opts->reflog_message = reflog_message(
4642 opts, command_to_string(item->command), NULL);
4644 res = do_pick_commit(r, item, opts, is_final_fixup(todo_list),
4645 check_todo);
4646 if (is_rebase_i(opts) && res < 0) {
4647 /* Reschedule */
4648 *reschedule = 1;
4649 return -1;
4651 if (item->command == TODO_EDIT) {
4652 struct commit *commit = item->commit;
4653 if (!res) {
4654 if (!opts->verbose)
4655 term_clear_line();
4656 fprintf(stderr, _("Stopped at %s... %.*s\n"),
4657 short_commit_name(commit), item->arg_len, arg);
4659 return error_with_patch(r, commit,
4660 arg, item->arg_len, opts, res, !res);
4662 if (is_rebase_i(opts) && !res)
4663 record_in_rewritten(&item->commit->object.oid,
4664 peek_command(todo_list, 1));
4665 if (res && is_fixup(item->command)) {
4666 if (res == 1)
4667 intend_to_amend();
4668 return error_failed_squash(r, item->commit, opts,
4669 item->arg_len, arg);
4670 } else if (res && is_rebase_i(opts) && item->commit) {
4671 int to_amend = 0;
4672 struct object_id oid;
4675 * If we are rewording and have either
4676 * fast-forwarded already, or are about to
4677 * create a new root commit, we want to amend,
4678 * otherwise we do not.
4680 if (item->command == TODO_REWORD &&
4681 !repo_get_oid(r, "HEAD", &oid) &&
4682 (oideq(&item->commit->object.oid, &oid) ||
4683 (opts->have_squash_onto &&
4684 oideq(&opts->squash_onto, &oid))))
4685 to_amend = 1;
4687 return res | error_with_patch(r, item->commit,
4688 arg, item->arg_len, opts,
4689 res, to_amend);
4691 return res;
4694 static int pick_commits(struct repository *r,
4695 struct todo_list *todo_list,
4696 struct replay_opts *opts)
4698 int res = 0, reschedule = 0;
4700 opts->reflog_message = sequencer_reflog_action(opts);
4701 if (opts->allow_ff)
4702 assert(!(opts->signoff || opts->no_commit ||
4703 opts->record_origin || should_edit(opts) ||
4704 opts->committer_date_is_author_date ||
4705 opts->ignore_date));
4706 if (read_and_refresh_cache(r, opts))
4707 return -1;
4709 unlink(rebase_path_message());
4710 unlink(rebase_path_stopped_sha());
4711 unlink(rebase_path_amend());
4712 unlink(rebase_path_patch());
4714 while (todo_list->current < todo_list->nr) {
4715 struct todo_item *item = todo_list->items + todo_list->current;
4716 const char *arg = todo_item_get_arg(todo_list, item);
4717 int check_todo = 0;
4719 if (save_todo(todo_list, opts))
4720 return -1;
4721 if (is_rebase_i(opts)) {
4722 if (item->command != TODO_COMMENT) {
4723 FILE *f = fopen(rebase_path_msgnum(), "w");
4725 todo_list->done_nr++;
4727 if (f) {
4728 fprintf(f, "%d\n", todo_list->done_nr);
4729 fclose(f);
4731 if (!opts->quiet)
4732 fprintf(stderr, _("Rebasing (%d/%d)%s"),
4733 todo_list->done_nr,
4734 todo_list->total_nr,
4735 opts->verbose ? "\n" : "\r");
4737 unlink(rebase_path_author_script());
4738 unlink(git_path_merge_head(r));
4739 unlink(git_path_auto_merge(r));
4740 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
4742 if (item->command == TODO_BREAK) {
4743 if (!opts->verbose)
4744 term_clear_line();
4745 return stopped_at_head(r);
4748 if (item->command <= TODO_SQUASH) {
4749 res = pick_one_commit(r, todo_list, opts, &check_todo,
4750 &reschedule);
4751 if (!res && item->command == TODO_EDIT)
4752 return 0;
4753 } else if (item->command == TODO_EXEC) {
4754 char *end_of_arg = (char *)(arg + item->arg_len);
4755 int saved = *end_of_arg;
4757 if (!opts->verbose)
4758 term_clear_line();
4759 *end_of_arg = '\0';
4760 res = do_exec(r, arg);
4761 *end_of_arg = saved;
4763 if (res) {
4764 if (opts->reschedule_failed_exec)
4765 reschedule = 1;
4767 check_todo = 1;
4768 } else if (item->command == TODO_LABEL) {
4769 if ((res = do_label(r, arg, item->arg_len)))
4770 reschedule = 1;
4771 } else if (item->command == TODO_RESET) {
4772 if ((res = do_reset(r, arg, item->arg_len, opts)))
4773 reschedule = 1;
4774 } else if (item->command == TODO_MERGE) {
4775 if ((res = do_merge(r, item->commit, arg, item->arg_len,
4776 item->flags, &check_todo, opts)) < 0)
4777 reschedule = 1;
4778 else if (item->commit)
4779 record_in_rewritten(&item->commit->object.oid,
4780 peek_command(todo_list, 1));
4781 if (res > 0)
4782 /* failed with merge conflicts */
4783 return error_with_patch(r, item->commit,
4784 arg, item->arg_len,
4785 opts, res, 0);
4786 } else if (item->command == TODO_UPDATE_REF) {
4787 struct strbuf ref = STRBUF_INIT;
4788 strbuf_add(&ref, arg, item->arg_len);
4789 if ((res = do_update_ref(r, ref.buf)))
4790 reschedule = 1;
4791 strbuf_release(&ref);
4792 } else if (!is_noop(item->command))
4793 return error(_("unknown command %d"), item->command);
4795 if (reschedule) {
4796 advise(_(rescheduled_advice),
4797 get_item_line_length(todo_list,
4798 todo_list->current),
4799 get_item_line(todo_list, todo_list->current));
4800 todo_list->current--;
4801 if (save_todo(todo_list, opts))
4802 return -1;
4803 if (item->commit)
4804 write_rebase_head(&item->commit->object.oid);
4805 } else if (is_rebase_i(opts) && check_todo && !res &&
4806 reread_todo_if_changed(r, todo_list, opts)) {
4807 return -1;
4810 if (res)
4811 return res;
4813 todo_list->current++;
4816 if (is_rebase_i(opts)) {
4817 struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT;
4818 struct stat st;
4820 /* Stopped in the middle, as planned? */
4821 if (todo_list->current < todo_list->nr)
4822 return 0;
4824 if (read_oneliner(&head_ref, rebase_path_head_name(), 0) &&
4825 starts_with(head_ref.buf, "refs/")) {
4826 const char *msg;
4827 struct object_id head, orig;
4828 int res;
4830 if (repo_get_oid(r, "HEAD", &head)) {
4831 res = error(_("cannot read HEAD"));
4832 cleanup_head_ref:
4833 strbuf_release(&head_ref);
4834 strbuf_release(&buf);
4835 return res;
4837 if (!read_oneliner(&buf, rebase_path_orig_head(), 0) ||
4838 get_oid_hex(buf.buf, &orig)) {
4839 res = error(_("could not read orig-head"));
4840 goto cleanup_head_ref;
4842 strbuf_reset(&buf);
4843 if (!read_oneliner(&buf, rebase_path_onto(), 0)) {
4844 res = error(_("could not read 'onto'"));
4845 goto cleanup_head_ref;
4847 msg = reflog_message(opts, "finish", "%s onto %s",
4848 head_ref.buf, buf.buf);
4849 if (update_ref(msg, head_ref.buf, &head, &orig,
4850 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) {
4851 res = error(_("could not update %s"),
4852 head_ref.buf);
4853 goto cleanup_head_ref;
4855 msg = reflog_message(opts, "finish", "returning to %s",
4856 head_ref.buf);
4857 if (create_symref("HEAD", head_ref.buf, msg)) {
4858 res = error(_("could not update HEAD to %s"),
4859 head_ref.buf);
4860 goto cleanup_head_ref;
4862 strbuf_reset(&buf);
4865 if (opts->verbose) {
4866 struct rev_info log_tree_opt;
4867 struct object_id orig, head;
4869 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
4870 repo_init_revisions(r, &log_tree_opt, NULL);
4871 log_tree_opt.diff = 1;
4872 log_tree_opt.diffopt.output_format =
4873 DIFF_FORMAT_DIFFSTAT;
4874 log_tree_opt.disable_stdin = 1;
4876 if (read_oneliner(&buf, rebase_path_orig_head(), 0) &&
4877 !repo_get_oid(r, buf.buf, &orig) &&
4878 !repo_get_oid(r, "HEAD", &head)) {
4879 diff_tree_oid(&orig, &head, "",
4880 &log_tree_opt.diffopt);
4881 log_tree_diff_flush(&log_tree_opt);
4883 release_revisions(&log_tree_opt);
4885 flush_rewritten_pending();
4886 if (!stat(rebase_path_rewritten_list(), &st) &&
4887 st.st_size > 0) {
4888 struct child_process child = CHILD_PROCESS_INIT;
4889 struct run_hooks_opt hook_opt = RUN_HOOKS_OPT_INIT;
4891 child.in = open(rebase_path_rewritten_list(), O_RDONLY);
4892 child.git_cmd = 1;
4893 strvec_push(&child.args, "notes");
4894 strvec_push(&child.args, "copy");
4895 strvec_push(&child.args, "--for-rewrite=rebase");
4896 /* we don't care if this copying failed */
4897 run_command(&child);
4899 hook_opt.path_to_stdin = rebase_path_rewritten_list();
4900 strvec_push(&hook_opt.args, "rebase");
4901 run_hooks_opt("post-rewrite", &hook_opt);
4903 apply_autostash(rebase_path_autostash());
4905 if (!opts->quiet) {
4906 if (!opts->verbose)
4907 term_clear_line();
4908 fprintf(stderr,
4909 _("Successfully rebased and updated %s.\n"),
4910 head_ref.buf);
4913 strbuf_release(&buf);
4914 strbuf_release(&head_ref);
4916 if (do_update_refs(r, opts->quiet))
4917 return -1;
4921 * Sequence of picks finished successfully; cleanup by
4922 * removing the .git/sequencer directory
4924 return sequencer_remove_state(opts);
4927 static int continue_single_pick(struct repository *r, struct replay_opts *opts)
4929 struct child_process cmd = CHILD_PROCESS_INIT;
4931 if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") &&
4932 !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD"))
4933 return error(_("no cherry-pick or revert in progress"));
4935 cmd.git_cmd = 1;
4936 strvec_push(&cmd.args, "commit");
4939 * continue_single_pick() handles the case of recovering from a
4940 * conflict. should_edit() doesn't handle that case; for a conflict,
4941 * we want to edit if the user asked for it, or if they didn't specify
4942 * and stdin is a tty.
4944 if (!opts->edit || (opts->edit < 0 && !isatty(0)))
4946 * Include --cleanup=strip as well because we don't want the
4947 * "# Conflicts:" messages.
4949 strvec_pushl(&cmd.args, "--no-edit", "--cleanup=strip", NULL);
4951 return run_command(&cmd);
4954 static int commit_staged_changes(struct repository *r,
4955 struct replay_opts *opts,
4956 struct todo_list *todo_list)
4958 unsigned int flags = ALLOW_EMPTY | EDIT_MSG;
4959 unsigned int final_fixup = 0, is_clean;
4961 if (has_unstaged_changes(r, 1))
4962 return error(_("cannot rebase: You have unstaged changes."));
4964 is_clean = !has_uncommitted_changes(r, 0);
4966 if (file_exists(rebase_path_amend())) {
4967 struct strbuf rev = STRBUF_INIT;
4968 struct object_id head, to_amend;
4970 if (repo_get_oid(r, "HEAD", &head))
4971 return error(_("cannot amend non-existing commit"));
4972 if (!read_oneliner(&rev, rebase_path_amend(), 0))
4973 return error(_("invalid file: '%s'"), rebase_path_amend());
4974 if (get_oid_hex(rev.buf, &to_amend))
4975 return error(_("invalid contents: '%s'"),
4976 rebase_path_amend());
4977 if (!is_clean && !oideq(&head, &to_amend))
4978 return error(_("\nYou have uncommitted changes in your "
4979 "working tree. Please, commit them\n"
4980 "first and then run 'git rebase "
4981 "--continue' again."));
4983 * When skipping a failed fixup/squash, we need to edit the
4984 * commit message, the current fixup list and count, and if it
4985 * was the last fixup/squash in the chain, we need to clean up
4986 * the commit message and if there was a squash, let the user
4987 * edit it.
4989 if (!is_clean || !opts->current_fixup_count)
4990 ; /* this is not the final fixup */
4991 else if (!oideq(&head, &to_amend) ||
4992 !file_exists(rebase_path_stopped_sha())) {
4993 /* was a final fixup or squash done manually? */
4994 if (!is_fixup(peek_command(todo_list, 0))) {
4995 unlink(rebase_path_fixup_msg());
4996 unlink(rebase_path_squash_msg());
4997 unlink(rebase_path_current_fixups());
4998 strbuf_reset(&opts->current_fixups);
4999 opts->current_fixup_count = 0;
5001 } else {
5002 /* we are in a fixup/squash chain */
5003 const char *p = opts->current_fixups.buf;
5004 int len = opts->current_fixups.len;
5006 opts->current_fixup_count--;
5007 if (!len)
5008 BUG("Incorrect current_fixups:\n%s", p);
5009 while (len && p[len - 1] != '\n')
5010 len--;
5011 strbuf_setlen(&opts->current_fixups, len);
5012 if (write_message(p, len, rebase_path_current_fixups(),
5013 0) < 0)
5014 return error(_("could not write file: '%s'"),
5015 rebase_path_current_fixups());
5018 * If a fixup/squash in a fixup/squash chain failed, the
5019 * commit message is already correct, no need to commit
5020 * it again.
5022 * Only if it is the final command in the fixup/squash
5023 * chain, and only if the chain is longer than a single
5024 * fixup/squash command (which was just skipped), do we
5025 * actually need to re-commit with a cleaned up commit
5026 * message.
5028 if (opts->current_fixup_count > 0 &&
5029 !is_fixup(peek_command(todo_list, 0))) {
5030 final_fixup = 1;
5032 * If there was not a single "squash" in the
5033 * chain, we only need to clean up the commit
5034 * message, no need to bother the user with
5035 * opening the commit message in the editor.
5037 if (!starts_with(p, "squash ") &&
5038 !strstr(p, "\nsquash "))
5039 flags = (flags & ~EDIT_MSG) | CLEANUP_MSG;
5040 } else if (is_fixup(peek_command(todo_list, 0))) {
5042 * We need to update the squash message to skip
5043 * the latest commit message.
5045 struct commit *commit;
5046 const char *path = rebase_path_squash_msg();
5047 const char *encoding = get_commit_output_encoding();
5049 if (parse_head(r, &commit) ||
5050 !(p = repo_logmsg_reencode(r, commit, NULL, encoding)) ||
5051 write_message(p, strlen(p), path, 0)) {
5052 repo_unuse_commit_buffer(r, commit, p);
5053 return error(_("could not write file: "
5054 "'%s'"), path);
5056 repo_unuse_commit_buffer(r,
5057 commit, p);
5061 strbuf_release(&rev);
5062 flags |= AMEND_MSG;
5065 if (is_clean) {
5066 if (refs_ref_exists(get_main_ref_store(r),
5067 "CHERRY_PICK_HEAD") &&
5068 refs_delete_ref(get_main_ref_store(r), "",
5069 "CHERRY_PICK_HEAD", NULL, 0))
5070 return error(_("could not remove CHERRY_PICK_HEAD"));
5071 if (unlink(git_path_merge_msg(r)) && errno != ENOENT)
5072 return error_errno(_("could not remove '%s'"),
5073 git_path_merge_msg(r));
5074 if (!final_fixup)
5075 return 0;
5078 if (run_git_commit(final_fixup ? NULL : rebase_path_message(),
5079 opts, flags))
5080 return error(_("could not commit staged changes."));
5081 unlink(rebase_path_amend());
5082 unlink(git_path_merge_head(r));
5083 unlink(git_path_auto_merge(r));
5084 if (final_fixup) {
5085 unlink(rebase_path_fixup_msg());
5086 unlink(rebase_path_squash_msg());
5088 if (opts->current_fixup_count > 0) {
5090 * Whether final fixup or not, we just cleaned up the commit
5091 * message...
5093 unlink(rebase_path_current_fixups());
5094 strbuf_reset(&opts->current_fixups);
5095 opts->current_fixup_count = 0;
5097 return 0;
5100 int sequencer_continue(struct repository *r, struct replay_opts *opts)
5102 struct todo_list todo_list = TODO_LIST_INIT;
5103 int res;
5105 if (read_and_refresh_cache(r, opts))
5106 return -1;
5108 if (read_populate_opts(opts))
5109 return -1;
5110 if (is_rebase_i(opts)) {
5111 if ((res = read_populate_todo(r, &todo_list, opts)))
5112 goto release_todo_list;
5114 if (file_exists(rebase_path_dropped())) {
5115 if ((res = todo_list_check_against_backup(r, &todo_list)))
5116 goto release_todo_list;
5118 unlink(rebase_path_dropped());
5121 opts->reflog_message = reflog_message(opts, "continue", NULL);
5122 if (commit_staged_changes(r, opts, &todo_list)) {
5123 res = -1;
5124 goto release_todo_list;
5126 } else if (!file_exists(get_todo_path(opts)))
5127 return continue_single_pick(r, opts);
5128 else if ((res = read_populate_todo(r, &todo_list, opts)))
5129 goto release_todo_list;
5131 if (!is_rebase_i(opts)) {
5132 /* Verify that the conflict has been resolved */
5133 if (refs_ref_exists(get_main_ref_store(r),
5134 "CHERRY_PICK_HEAD") ||
5135 refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
5136 res = continue_single_pick(r, opts);
5137 if (res)
5138 goto release_todo_list;
5140 if (index_differs_from(r, "HEAD", NULL, 0)) {
5141 res = error_dirty_index(r, opts);
5142 goto release_todo_list;
5144 todo_list.current++;
5145 } else if (file_exists(rebase_path_stopped_sha())) {
5146 struct strbuf buf = STRBUF_INIT;
5147 struct object_id oid;
5149 if (read_oneliner(&buf, rebase_path_stopped_sha(),
5150 READ_ONELINER_SKIP_IF_EMPTY) &&
5151 !get_oid_hex(buf.buf, &oid))
5152 record_in_rewritten(&oid, peek_command(&todo_list, 0));
5153 strbuf_release(&buf);
5156 res = pick_commits(r, &todo_list, opts);
5157 release_todo_list:
5158 todo_list_release(&todo_list);
5159 return res;
5162 static int single_pick(struct repository *r,
5163 struct commit *cmit,
5164 struct replay_opts *opts)
5166 int check_todo;
5167 struct todo_item item;
5169 item.command = opts->action == REPLAY_PICK ?
5170 TODO_PICK : TODO_REVERT;
5171 item.commit = cmit;
5173 opts->reflog_message = sequencer_reflog_action(opts);
5174 return do_pick_commit(r, &item, opts, 0, &check_todo);
5177 int sequencer_pick_revisions(struct repository *r,
5178 struct replay_opts *opts)
5180 struct todo_list todo_list = TODO_LIST_INIT;
5181 struct object_id oid;
5182 int i, res;
5184 assert(opts->revs);
5185 if (read_and_refresh_cache(r, opts))
5186 return -1;
5188 for (i = 0; i < opts->revs->pending.nr; i++) {
5189 struct object_id oid;
5190 const char *name = opts->revs->pending.objects[i].name;
5192 /* This happens when using --stdin. */
5193 if (!strlen(name))
5194 continue;
5196 if (!repo_get_oid(r, name, &oid)) {
5197 if (!lookup_commit_reference_gently(r, &oid, 1)) {
5198 enum object_type type = oid_object_info(r,
5199 &oid,
5200 NULL);
5201 return error(_("%s: can't cherry-pick a %s"),
5202 name, type_name(type));
5204 } else
5205 return error(_("%s: bad revision"), name);
5209 * If we were called as "git cherry-pick <commit>", just
5210 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
5211 * REVERT_HEAD, and don't touch the sequencer state.
5212 * This means it is possible to cherry-pick in the middle
5213 * of a cherry-pick sequence.
5215 if (opts->revs->cmdline.nr == 1 &&
5216 opts->revs->cmdline.rev->whence == REV_CMD_REV &&
5217 opts->revs->no_walk &&
5218 !opts->revs->cmdline.rev->flags) {
5219 struct commit *cmit;
5220 if (prepare_revision_walk(opts->revs))
5221 return error(_("revision walk setup failed"));
5222 cmit = get_revision(opts->revs);
5223 if (!cmit)
5224 return error(_("empty commit set passed"));
5225 if (get_revision(opts->revs))
5226 BUG("unexpected extra commit from walk");
5227 return single_pick(r, cmit, opts);
5231 * Start a new cherry-pick/ revert sequence; but
5232 * first, make sure that an existing one isn't in
5233 * progress
5236 if (walk_revs_populate_todo(&todo_list, opts) ||
5237 create_seq_dir(r) < 0)
5238 return -1;
5239 if (repo_get_oid(r, "HEAD", &oid) && (opts->action == REPLAY_REVERT))
5240 return error(_("can't revert as initial commit"));
5241 if (save_head(oid_to_hex(&oid)))
5242 return -1;
5243 if (save_opts(opts))
5244 return -1;
5245 update_abort_safety_file();
5246 res = pick_commits(r, &todo_list, opts);
5247 todo_list_release(&todo_list);
5248 return res;
5251 void append_signoff(struct strbuf *msgbuf, size_t ignore_footer, unsigned flag)
5253 unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
5254 struct strbuf sob = STRBUF_INIT;
5255 int has_footer;
5257 strbuf_addstr(&sob, sign_off_header);
5258 strbuf_addstr(&sob, fmt_name(WANT_COMMITTER_IDENT));
5259 strbuf_addch(&sob, '\n');
5261 if (!ignore_footer)
5262 strbuf_complete_line(msgbuf);
5265 * If the whole message buffer is equal to the sob, pretend that we
5266 * found a conforming footer with a matching sob
5268 if (msgbuf->len - ignore_footer == sob.len &&
5269 !strncmp(msgbuf->buf, sob.buf, sob.len))
5270 has_footer = 3;
5271 else
5272 has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
5274 if (!has_footer) {
5275 const char *append_newlines = NULL;
5276 size_t len = msgbuf->len - ignore_footer;
5278 if (!len) {
5280 * The buffer is completely empty. Leave foom for
5281 * the title and body to be filled in by the user.
5283 append_newlines = "\n\n";
5284 } else if (len == 1) {
5286 * Buffer contains a single newline. Add another
5287 * so that we leave room for the title and body.
5289 append_newlines = "\n";
5290 } else if (msgbuf->buf[len - 2] != '\n') {
5292 * Buffer ends with a single newline. Add another
5293 * so that there is an empty line between the message
5294 * body and the sob.
5296 append_newlines = "\n";
5297 } /* else, the buffer already ends with two newlines. */
5299 if (append_newlines)
5300 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
5301 append_newlines, strlen(append_newlines));
5304 if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
5305 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
5306 sob.buf, sob.len);
5308 strbuf_release(&sob);
5311 struct labels_entry {
5312 struct hashmap_entry entry;
5313 char label[FLEX_ARRAY];
5316 static int labels_cmp(const void *fndata UNUSED,
5317 const struct hashmap_entry *eptr,
5318 const struct hashmap_entry *entry_or_key, const void *key)
5320 const struct labels_entry *a, *b;
5322 a = container_of(eptr, const struct labels_entry, entry);
5323 b = container_of(entry_or_key, const struct labels_entry, entry);
5325 return key ? strcmp(a->label, key) : strcmp(a->label, b->label);
5328 struct string_entry {
5329 struct oidmap_entry entry;
5330 char string[FLEX_ARRAY];
5333 struct label_state {
5334 struct oidmap commit2label;
5335 struct hashmap labels;
5336 struct strbuf buf;
5339 static const char *label_oid(struct object_id *oid, const char *label,
5340 struct label_state *state)
5342 struct labels_entry *labels_entry;
5343 struct string_entry *string_entry;
5344 struct object_id dummy;
5345 int i;
5347 string_entry = oidmap_get(&state->commit2label, oid);
5348 if (string_entry)
5349 return string_entry->string;
5352 * For "uninteresting" commits, i.e. commits that are not to be
5353 * rebased, and which can therefore not be labeled, we use a unique
5354 * abbreviation of the commit name. This is slightly more complicated
5355 * than calling repo_find_unique_abbrev() because we also need to make
5356 * sure that the abbreviation does not conflict with any other
5357 * label.
5359 * We disallow "interesting" commits to be labeled by a string that
5360 * is a valid full-length hash, to ensure that we always can find an
5361 * abbreviation for any uninteresting commit's names that does not
5362 * clash with any other label.
5364 strbuf_reset(&state->buf);
5365 if (!label) {
5366 char *p;
5368 strbuf_grow(&state->buf, GIT_MAX_HEXSZ);
5369 label = p = state->buf.buf;
5371 repo_find_unique_abbrev_r(the_repository, p, oid,
5372 default_abbrev);
5375 * We may need to extend the abbreviated hash so that there is
5376 * no conflicting label.
5378 if (hashmap_get_from_hash(&state->labels, strihash(p), p)) {
5379 size_t i = strlen(p) + 1;
5381 oid_to_hex_r(p, oid);
5382 for (; i < the_hash_algo->hexsz; i++) {
5383 char save = p[i];
5384 p[i] = '\0';
5385 if (!hashmap_get_from_hash(&state->labels,
5386 strihash(p), p))
5387 break;
5388 p[i] = save;
5391 } else {
5392 struct strbuf *buf = &state->buf;
5395 * Sanitize labels by replacing non-alpha-numeric characters
5396 * (including white-space ones) by dashes, as they might be
5397 * illegal in file names (and hence in ref names).
5399 * Note that we retain non-ASCII UTF-8 characters (identified
5400 * via the most significant bit). They should be all acceptable
5401 * in file names. We do not validate the UTF-8 here, that's not
5402 * the job of this function.
5404 for (; *label; label++)
5405 if ((*label & 0x80) || isalnum(*label))
5406 strbuf_addch(buf, *label);
5407 /* avoid leading dash and double-dashes */
5408 else if (buf->len && buf->buf[buf->len - 1] != '-')
5409 strbuf_addch(buf, '-');
5410 if (!buf->len) {
5411 strbuf_addstr(buf, "rev-");
5412 strbuf_add_unique_abbrev(buf, oid, default_abbrev);
5414 label = buf->buf;
5416 if ((buf->len == the_hash_algo->hexsz &&
5417 !get_oid_hex(label, &dummy)) ||
5418 (buf->len == 1 && *label == '#') ||
5419 hashmap_get_from_hash(&state->labels,
5420 strihash(label), label)) {
5422 * If the label already exists, or if the label is a
5423 * valid full OID, or the label is a '#' (which we use
5424 * as a separator between merge heads and oneline), we
5425 * append a dash and a number to make it unique.
5427 size_t len = buf->len;
5429 for (i = 2; ; i++) {
5430 strbuf_setlen(buf, len);
5431 strbuf_addf(buf, "-%d", i);
5432 if (!hashmap_get_from_hash(&state->labels,
5433 strihash(buf->buf),
5434 buf->buf))
5435 break;
5438 label = buf->buf;
5442 FLEX_ALLOC_STR(labels_entry, label, label);
5443 hashmap_entry_init(&labels_entry->entry, strihash(label));
5444 hashmap_add(&state->labels, &labels_entry->entry);
5446 FLEX_ALLOC_STR(string_entry, string, label);
5447 oidcpy(&string_entry->entry.oid, oid);
5448 oidmap_put(&state->commit2label, string_entry);
5450 return string_entry->string;
5453 static int make_script_with_merges(struct pretty_print_context *pp,
5454 struct rev_info *revs, struct strbuf *out,
5455 unsigned flags)
5457 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
5458 int rebase_cousins = flags & TODO_LIST_REBASE_COUSINS;
5459 int root_with_onto = flags & TODO_LIST_ROOT_WITH_ONTO;
5460 int skipped_commit = 0;
5461 struct strbuf buf = STRBUF_INIT, oneline = STRBUF_INIT;
5462 struct strbuf label = STRBUF_INIT;
5463 struct commit_list *commits = NULL, **tail = &commits, *iter;
5464 struct commit_list *tips = NULL, **tips_tail = &tips;
5465 struct commit *commit;
5466 struct oidmap commit2todo = OIDMAP_INIT;
5467 struct string_entry *entry;
5468 struct oidset interesting = OIDSET_INIT, child_seen = OIDSET_INIT,
5469 shown = OIDSET_INIT;
5470 struct label_state state = { OIDMAP_INIT, { NULL }, STRBUF_INIT };
5472 int abbr = flags & TODO_LIST_ABBREVIATE_CMDS;
5473 const char *cmd_pick = abbr ? "p" : "pick",
5474 *cmd_label = abbr ? "l" : "label",
5475 *cmd_reset = abbr ? "t" : "reset",
5476 *cmd_merge = abbr ? "m" : "merge";
5478 oidmap_init(&commit2todo, 0);
5479 oidmap_init(&state.commit2label, 0);
5480 hashmap_init(&state.labels, labels_cmp, NULL, 0);
5481 strbuf_init(&state.buf, 32);
5483 if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) {
5484 struct labels_entry *onto_label_entry;
5485 struct object_id *oid = &revs->cmdline.rev[0].item->oid;
5486 FLEX_ALLOC_STR(entry, string, "onto");
5487 oidcpy(&entry->entry.oid, oid);
5488 oidmap_put(&state.commit2label, entry);
5490 FLEX_ALLOC_STR(onto_label_entry, label, "onto");
5491 hashmap_entry_init(&onto_label_entry->entry, strihash("onto"));
5492 hashmap_add(&state.labels, &onto_label_entry->entry);
5496 * First phase:
5497 * - get onelines for all commits
5498 * - gather all branch tips (i.e. 2nd or later parents of merges)
5499 * - label all branch tips
5501 while ((commit = get_revision(revs))) {
5502 struct commit_list *to_merge;
5503 const char *p1, *p2;
5504 struct object_id *oid;
5505 int is_empty;
5507 tail = &commit_list_insert(commit, tail)->next;
5508 oidset_insert(&interesting, &commit->object.oid);
5510 is_empty = is_original_commit_empty(commit);
5511 if (!is_empty && (commit->object.flags & PATCHSAME)) {
5512 if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS)
5513 warning(_("skipped previously applied commit %s"),
5514 short_commit_name(commit));
5515 skipped_commit = 1;
5516 continue;
5518 if (is_empty && !keep_empty)
5519 continue;
5521 strbuf_reset(&oneline);
5522 pretty_print_commit(pp, commit, &oneline);
5524 to_merge = commit->parents ? commit->parents->next : NULL;
5525 if (!to_merge) {
5526 /* non-merge commit: easy case */
5527 strbuf_reset(&buf);
5528 strbuf_addf(&buf, "%s %s %s", cmd_pick,
5529 oid_to_hex(&commit->object.oid),
5530 oneline.buf);
5531 if (is_empty)
5532 strbuf_addf(&buf, " %c empty",
5533 comment_line_char);
5535 FLEX_ALLOC_STR(entry, string, buf.buf);
5536 oidcpy(&entry->entry.oid, &commit->object.oid);
5537 oidmap_put(&commit2todo, entry);
5539 continue;
5542 /* Create a label */
5543 strbuf_reset(&label);
5544 if (skip_prefix(oneline.buf, "Merge ", &p1) &&
5545 (p1 = strchr(p1, '\'')) &&
5546 (p2 = strchr(++p1, '\'')))
5547 strbuf_add(&label, p1, p2 - p1);
5548 else if (skip_prefix(oneline.buf, "Merge pull request ",
5549 &p1) &&
5550 (p1 = strstr(p1, " from ")))
5551 strbuf_addstr(&label, p1 + strlen(" from "));
5552 else
5553 strbuf_addbuf(&label, &oneline);
5555 strbuf_reset(&buf);
5556 strbuf_addf(&buf, "%s -C %s",
5557 cmd_merge, oid_to_hex(&commit->object.oid));
5559 /* label the tips of merged branches */
5560 for (; to_merge; to_merge = to_merge->next) {
5561 oid = &to_merge->item->object.oid;
5562 strbuf_addch(&buf, ' ');
5564 if (!oidset_contains(&interesting, oid)) {
5565 strbuf_addstr(&buf, label_oid(oid, NULL,
5566 &state));
5567 continue;
5570 tips_tail = &commit_list_insert(to_merge->item,
5571 tips_tail)->next;
5573 strbuf_addstr(&buf, label_oid(oid, label.buf, &state));
5575 strbuf_addf(&buf, " # %s", oneline.buf);
5577 FLEX_ALLOC_STR(entry, string, buf.buf);
5578 oidcpy(&entry->entry.oid, &commit->object.oid);
5579 oidmap_put(&commit2todo, entry);
5581 if (skipped_commit)
5582 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS,
5583 _("use --reapply-cherry-picks to include skipped commits"));
5586 * Second phase:
5587 * - label branch points
5588 * - add HEAD to the branch tips
5590 for (iter = commits; iter; iter = iter->next) {
5591 struct commit_list *parent = iter->item->parents;
5592 for (; parent; parent = parent->next) {
5593 struct object_id *oid = &parent->item->object.oid;
5594 if (!oidset_contains(&interesting, oid))
5595 continue;
5596 if (oidset_insert(&child_seen, oid))
5597 label_oid(oid, "branch-point", &state);
5600 /* Add HEAD as implicit "tip of branch" */
5601 if (!iter->next)
5602 tips_tail = &commit_list_insert(iter->item,
5603 tips_tail)->next;
5607 * Third phase: output the todo list. This is a bit tricky, as we
5608 * want to avoid jumping back and forth between revisions. To
5609 * accomplish that goal, we walk backwards from the branch tips,
5610 * gathering commits not yet shown, reversing the list on the fly,
5611 * then outputting that list (labeling revisions as needed).
5613 strbuf_addf(out, "%s onto\n", cmd_label);
5614 for (iter = tips; iter; iter = iter->next) {
5615 struct commit_list *list = NULL, *iter2;
5617 commit = iter->item;
5618 if (oidset_contains(&shown, &commit->object.oid))
5619 continue;
5620 entry = oidmap_get(&state.commit2label, &commit->object.oid);
5622 if (entry)
5623 strbuf_addf(out, "\n%c Branch %s\n", comment_line_char, entry->string);
5624 else
5625 strbuf_addch(out, '\n');
5627 while (oidset_contains(&interesting, &commit->object.oid) &&
5628 !oidset_contains(&shown, &commit->object.oid)) {
5629 commit_list_insert(commit, &list);
5630 if (!commit->parents) {
5631 commit = NULL;
5632 break;
5634 commit = commit->parents->item;
5637 if (!commit)
5638 strbuf_addf(out, "%s %s\n", cmd_reset,
5639 rebase_cousins || root_with_onto ?
5640 "onto" : "[new root]");
5641 else {
5642 const char *to = NULL;
5644 entry = oidmap_get(&state.commit2label,
5645 &commit->object.oid);
5646 if (entry)
5647 to = entry->string;
5648 else if (!rebase_cousins)
5649 to = label_oid(&commit->object.oid, NULL,
5650 &state);
5652 if (!to || !strcmp(to, "onto"))
5653 strbuf_addf(out, "%s onto\n", cmd_reset);
5654 else {
5655 strbuf_reset(&oneline);
5656 pretty_print_commit(pp, commit, &oneline);
5657 strbuf_addf(out, "%s %s # %s\n",
5658 cmd_reset, to, oneline.buf);
5662 for (iter2 = list; iter2; iter2 = iter2->next) {
5663 struct object_id *oid = &iter2->item->object.oid;
5664 entry = oidmap_get(&commit2todo, oid);
5665 /* only show if not already upstream */
5666 if (entry)
5667 strbuf_addf(out, "%s\n", entry->string);
5668 entry = oidmap_get(&state.commit2label, oid);
5669 if (entry)
5670 strbuf_addf(out, "%s %s\n",
5671 cmd_label, entry->string);
5672 oidset_insert(&shown, oid);
5675 free_commit_list(list);
5678 free_commit_list(commits);
5679 free_commit_list(tips);
5681 strbuf_release(&label);
5682 strbuf_release(&oneline);
5683 strbuf_release(&buf);
5685 oidmap_free(&commit2todo, 1);
5686 oidmap_free(&state.commit2label, 1);
5687 hashmap_clear_and_free(&state.labels, struct labels_entry, entry);
5688 strbuf_release(&state.buf);
5690 return 0;
5693 int sequencer_make_script(struct repository *r, struct strbuf *out, int argc,
5694 const char **argv, unsigned flags)
5696 char *format = NULL;
5697 struct pretty_print_context pp = {0};
5698 struct rev_info revs;
5699 struct commit *commit;
5700 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
5701 const char *insn = flags & TODO_LIST_ABBREVIATE_CMDS ? "p" : "pick";
5702 int rebase_merges = flags & TODO_LIST_REBASE_MERGES;
5703 int reapply_cherry_picks = flags & TODO_LIST_REAPPLY_CHERRY_PICKS;
5704 int skipped_commit = 0;
5705 int ret = 0;
5707 repo_init_revisions(r, &revs, NULL);
5708 revs.verbose_header = 1;
5709 if (!rebase_merges)
5710 revs.max_parents = 1;
5711 revs.cherry_mark = !reapply_cherry_picks;
5712 revs.limited = 1;
5713 revs.reverse = 1;
5714 revs.right_only = 1;
5715 revs.sort_order = REV_SORT_IN_GRAPH_ORDER;
5716 revs.topo_order = 1;
5718 revs.pretty_given = 1;
5719 git_config_get_string("rebase.instructionFormat", &format);
5720 if (!format || !*format) {
5721 free(format);
5722 format = xstrdup("%s");
5724 get_commit_format(format, &revs);
5725 free(format);
5726 pp.fmt = revs.commit_format;
5727 pp.output_encoding = get_log_output_encoding();
5729 if (setup_revisions(argc, argv, &revs, NULL) > 1) {
5730 ret = error(_("make_script: unhandled options"));
5731 goto cleanup;
5734 if (prepare_revision_walk(&revs) < 0) {
5735 ret = error(_("make_script: error preparing revisions"));
5736 goto cleanup;
5739 if (rebase_merges) {
5740 ret = make_script_with_merges(&pp, &revs, out, flags);
5741 goto cleanup;
5744 while ((commit = get_revision(&revs))) {
5745 int is_empty = is_original_commit_empty(commit);
5747 if (!is_empty && (commit->object.flags & PATCHSAME)) {
5748 if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS)
5749 warning(_("skipped previously applied commit %s"),
5750 short_commit_name(commit));
5751 skipped_commit = 1;
5752 continue;
5754 if (is_empty && !keep_empty)
5755 continue;
5756 strbuf_addf(out, "%s %s ", insn,
5757 oid_to_hex(&commit->object.oid));
5758 pretty_print_commit(&pp, commit, out);
5759 if (is_empty)
5760 strbuf_addf(out, " %c empty", comment_line_char);
5761 strbuf_addch(out, '\n');
5763 if (skipped_commit)
5764 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS,
5765 _("use --reapply-cherry-picks to include skipped commits"));
5766 cleanup:
5767 release_revisions(&revs);
5768 return ret;
5772 * Add commands after pick and (series of) squash/fixup commands
5773 * in the todo list.
5775 static void todo_list_add_exec_commands(struct todo_list *todo_list,
5776 struct string_list *commands)
5778 struct strbuf *buf = &todo_list->buf;
5779 size_t base_offset = buf->len;
5780 int i, insert, nr = 0, alloc = 0;
5781 struct todo_item *items = NULL, *base_items = NULL;
5783 CALLOC_ARRAY(base_items, commands->nr);
5784 for (i = 0; i < commands->nr; i++) {
5785 size_t command_len = strlen(commands->items[i].string);
5787 strbuf_addstr(buf, commands->items[i].string);
5788 strbuf_addch(buf, '\n');
5790 base_items[i].command = TODO_EXEC;
5791 base_items[i].offset_in_buf = base_offset;
5792 base_items[i].arg_offset = base_offset;
5793 base_items[i].arg_len = command_len;
5795 base_offset += command_len + 1;
5799 * Insert <commands> after every pick. Here, fixup/squash chains
5800 * are considered part of the pick, so we insert the commands *after*
5801 * those chains if there are any.
5803 * As we insert the exec commands immediately after rearranging
5804 * any fixups and before the user edits the list, a fixup chain
5805 * can never contain comments (any comments are empty picks that
5806 * have been commented out because the user did not specify
5807 * --keep-empty). So, it is safe to insert an exec command
5808 * without looking at the command following a comment.
5810 insert = 0;
5811 for (i = 0; i < todo_list->nr; i++) {
5812 enum todo_command command = todo_list->items[i].command;
5813 if (insert && !is_fixup(command)) {
5814 ALLOC_GROW(items, nr + commands->nr, alloc);
5815 COPY_ARRAY(items + nr, base_items, commands->nr);
5816 nr += commands->nr;
5818 insert = 0;
5821 ALLOC_GROW(items, nr + 1, alloc);
5822 items[nr++] = todo_list->items[i];
5824 if (command == TODO_PICK || command == TODO_MERGE)
5825 insert = 1;
5828 /* insert or append final <commands> */
5829 if (insert) {
5830 ALLOC_GROW(items, nr + commands->nr, alloc);
5831 COPY_ARRAY(items + nr, base_items, commands->nr);
5832 nr += commands->nr;
5835 free(base_items);
5836 FREE_AND_NULL(todo_list->items);
5837 todo_list->items = items;
5838 todo_list->nr = nr;
5839 todo_list->alloc = alloc;
5842 static void todo_list_to_strbuf(struct repository *r, struct todo_list *todo_list,
5843 struct strbuf *buf, int num, unsigned flags)
5845 struct todo_item *item;
5846 int i, max = todo_list->nr;
5848 if (num > 0 && num < max)
5849 max = num;
5851 for (item = todo_list->items, i = 0; i < max; i++, item++) {
5852 char cmd;
5854 /* if the item is not a command write it and continue */
5855 if (item->command >= TODO_COMMENT) {
5856 strbuf_addf(buf, "%.*s\n", item->arg_len,
5857 todo_item_get_arg(todo_list, item));
5858 continue;
5861 /* add command to the buffer */
5862 cmd = command_to_char(item->command);
5863 if ((flags & TODO_LIST_ABBREVIATE_CMDS) && cmd)
5864 strbuf_addch(buf, cmd);
5865 else
5866 strbuf_addstr(buf, command_to_string(item->command));
5868 /* add commit id */
5869 if (item->commit) {
5870 const char *oid = flags & TODO_LIST_SHORTEN_IDS ?
5871 short_commit_name(item->commit) :
5872 oid_to_hex(&item->commit->object.oid);
5874 if (item->command == TODO_FIXUP) {
5875 if (item->flags & TODO_EDIT_FIXUP_MSG)
5876 strbuf_addstr(buf, " -c");
5877 else if (item->flags & TODO_REPLACE_FIXUP_MSG) {
5878 strbuf_addstr(buf, " -C");
5882 if (item->command == TODO_MERGE) {
5883 if (item->flags & TODO_EDIT_MERGE_MSG)
5884 strbuf_addstr(buf, " -c");
5885 else
5886 strbuf_addstr(buf, " -C");
5889 strbuf_addf(buf, " %s", oid);
5892 /* add all the rest */
5893 if (!item->arg_len)
5894 strbuf_addch(buf, '\n');
5895 else
5896 strbuf_addf(buf, " %.*s\n", item->arg_len,
5897 todo_item_get_arg(todo_list, item));
5901 int todo_list_write_to_file(struct repository *r, struct todo_list *todo_list,
5902 const char *file, const char *shortrevisions,
5903 const char *shortonto, int num, unsigned flags)
5905 int res;
5906 struct strbuf buf = STRBUF_INIT;
5908 todo_list_to_strbuf(r, todo_list, &buf, num, flags);
5909 if (flags & TODO_LIST_APPEND_TODO_HELP)
5910 append_todo_help(count_commands(todo_list),
5911 shortrevisions, shortonto, &buf);
5913 res = write_message(buf.buf, buf.len, file, 0);
5914 strbuf_release(&buf);
5916 return res;
5919 /* skip picking commits whose parents are unchanged */
5920 static int skip_unnecessary_picks(struct repository *r,
5921 struct todo_list *todo_list,
5922 struct object_id *base_oid)
5924 struct object_id *parent_oid;
5925 int i;
5927 for (i = 0; i < todo_list->nr; i++) {
5928 struct todo_item *item = todo_list->items + i;
5930 if (item->command >= TODO_NOOP)
5931 continue;
5932 if (item->command != TODO_PICK)
5933 break;
5934 if (repo_parse_commit(r, item->commit)) {
5935 return error(_("could not parse commit '%s'"),
5936 oid_to_hex(&item->commit->object.oid));
5938 if (!item->commit->parents)
5939 break; /* root commit */
5940 if (item->commit->parents->next)
5941 break; /* merge commit */
5942 parent_oid = &item->commit->parents->item->object.oid;
5943 if (!oideq(parent_oid, base_oid))
5944 break;
5945 oidcpy(base_oid, &item->commit->object.oid);
5947 if (i > 0) {
5948 const char *done_path = rebase_path_done();
5950 if (todo_list_write_to_file(r, todo_list, done_path, NULL, NULL, i, 0)) {
5951 error_errno(_("could not write to '%s'"), done_path);
5952 return -1;
5955 MOVE_ARRAY(todo_list->items, todo_list->items + i, todo_list->nr - i);
5956 todo_list->nr -= i;
5957 todo_list->current = 0;
5958 todo_list->done_nr += i;
5960 if (is_fixup(peek_command(todo_list, 0)))
5961 record_in_rewritten(base_oid, peek_command(todo_list, 0));
5964 return 0;
5967 struct todo_add_branch_context {
5968 struct todo_item *items;
5969 size_t items_nr;
5970 size_t items_alloc;
5971 struct strbuf *buf;
5972 struct commit *commit;
5973 struct string_list refs_to_oids;
5976 static int add_decorations_to_list(const struct commit *commit,
5977 struct todo_add_branch_context *ctx)
5979 const struct name_decoration *decoration = get_name_decoration(&commit->object);
5980 const char *head_ref = resolve_ref_unsafe("HEAD",
5981 RESOLVE_REF_READING,
5982 NULL,
5983 NULL);
5985 while (decoration) {
5986 struct todo_item *item;
5987 const char *path;
5988 size_t base_offset = ctx->buf->len;
5991 * If the branch is the current HEAD, then it will be
5992 * updated by the default rebase behavior.
5994 if (head_ref && !strcmp(head_ref, decoration->name)) {
5995 decoration = decoration->next;
5996 continue;
5999 ALLOC_GROW(ctx->items,
6000 ctx->items_nr + 1,
6001 ctx->items_alloc);
6002 item = &ctx->items[ctx->items_nr];
6003 memset(item, 0, sizeof(*item));
6005 /* If the branch is checked out, then leave a comment instead. */
6006 if ((path = branch_checked_out(decoration->name))) {
6007 item->command = TODO_COMMENT;
6008 strbuf_addf(ctx->buf, "# Ref %s checked out at '%s'\n",
6009 decoration->name, path);
6010 } else {
6011 struct string_list_item *sti;
6012 item->command = TODO_UPDATE_REF;
6013 strbuf_addf(ctx->buf, "%s\n", decoration->name);
6015 sti = string_list_insert(&ctx->refs_to_oids,
6016 decoration->name);
6017 sti->util = init_update_ref_record(decoration->name);
6020 item->offset_in_buf = base_offset;
6021 item->arg_offset = base_offset;
6022 item->arg_len = ctx->buf->len - base_offset;
6023 ctx->items_nr++;
6025 decoration = decoration->next;
6028 return 0;
6032 * For each 'pick' command, find out if the commit has a decoration in
6033 * refs/heads/. If so, then add a 'label for-update-refs/' command.
6035 static int todo_list_add_update_ref_commands(struct todo_list *todo_list)
6037 int i, res;
6038 static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP;
6039 static struct string_list decorate_refs_exclude_config = STRING_LIST_INIT_NODUP;
6040 static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP;
6041 struct decoration_filter decoration_filter = {
6042 .include_ref_pattern = &decorate_refs_include,
6043 .exclude_ref_pattern = &decorate_refs_exclude,
6044 .exclude_ref_config_pattern = &decorate_refs_exclude_config,
6046 struct todo_add_branch_context ctx = {
6047 .buf = &todo_list->buf,
6048 .refs_to_oids = STRING_LIST_INIT_DUP,
6051 ctx.items_alloc = 2 * todo_list->nr + 1;
6052 ALLOC_ARRAY(ctx.items, ctx.items_alloc);
6054 string_list_append(&decorate_refs_include, "refs/heads/");
6055 load_ref_decorations(&decoration_filter, 0);
6057 for (i = 0; i < todo_list->nr; ) {
6058 struct todo_item *item = &todo_list->items[i];
6060 /* insert ith item into new list */
6061 ALLOC_GROW(ctx.items,
6062 ctx.items_nr + 1,
6063 ctx.items_alloc);
6065 ctx.items[ctx.items_nr++] = todo_list->items[i++];
6067 if (item->commit) {
6068 ctx.commit = item->commit;
6069 add_decorations_to_list(item->commit, &ctx);
6073 res = write_update_refs_state(&ctx.refs_to_oids);
6075 string_list_clear(&ctx.refs_to_oids, 1);
6077 if (res) {
6078 /* we failed, so clean up the new list. */
6079 free(ctx.items);
6080 return res;
6083 free(todo_list->items);
6084 todo_list->items = ctx.items;
6085 todo_list->nr = ctx.items_nr;
6086 todo_list->alloc = ctx.items_alloc;
6088 return 0;
6091 int complete_action(struct repository *r, struct replay_opts *opts, unsigned flags,
6092 const char *shortrevisions, const char *onto_name,
6093 struct commit *onto, const struct object_id *orig_head,
6094 struct string_list *commands, unsigned autosquash,
6095 unsigned update_refs,
6096 struct todo_list *todo_list)
6098 char shortonto[GIT_MAX_HEXSZ + 1];
6099 const char *todo_file = rebase_path_todo();
6100 struct todo_list new_todo = TODO_LIST_INIT;
6101 struct strbuf *buf = &todo_list->buf, buf2 = STRBUF_INIT;
6102 struct object_id oid = onto->object.oid;
6103 int res;
6105 repo_find_unique_abbrev_r(r, shortonto, &oid,
6106 DEFAULT_ABBREV);
6108 if (buf->len == 0) {
6109 struct todo_item *item = append_new_todo(todo_list);
6110 item->command = TODO_NOOP;
6111 item->commit = NULL;
6112 item->arg_len = item->arg_offset = item->flags = item->offset_in_buf = 0;
6115 if (update_refs && todo_list_add_update_ref_commands(todo_list))
6116 return -1;
6118 if (autosquash && todo_list_rearrange_squash(todo_list))
6119 return -1;
6121 if (commands->nr)
6122 todo_list_add_exec_commands(todo_list, commands);
6124 if (count_commands(todo_list) == 0) {
6125 apply_autostash(rebase_path_autostash());
6126 sequencer_remove_state(opts);
6128 return error(_("nothing to do"));
6131 res = edit_todo_list(r, todo_list, &new_todo, shortrevisions,
6132 shortonto, flags);
6133 if (res == -1)
6134 return -1;
6135 else if (res == -2) {
6136 apply_autostash(rebase_path_autostash());
6137 sequencer_remove_state(opts);
6139 return -1;
6140 } else if (res == -3) {
6141 apply_autostash(rebase_path_autostash());
6142 sequencer_remove_state(opts);
6143 todo_list_release(&new_todo);
6145 return error(_("nothing to do"));
6146 } else if (res == -4) {
6147 checkout_onto(r, opts, onto_name, &onto->object.oid, orig_head);
6148 todo_list_release(&new_todo);
6150 return -1;
6153 /* Expand the commit IDs */
6154 todo_list_to_strbuf(r, &new_todo, &buf2, -1, 0);
6155 strbuf_swap(&new_todo.buf, &buf2);
6156 strbuf_release(&buf2);
6157 new_todo.total_nr -= new_todo.nr;
6158 if (todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo) < 0)
6159 BUG("invalid todo list after expanding IDs:\n%s",
6160 new_todo.buf.buf);
6162 if (opts->allow_ff && skip_unnecessary_picks(r, &new_todo, &oid)) {
6163 todo_list_release(&new_todo);
6164 return error(_("could not skip unnecessary pick commands"));
6167 if (todo_list_write_to_file(r, &new_todo, todo_file, NULL, NULL, -1,
6168 flags & ~(TODO_LIST_SHORTEN_IDS))) {
6169 todo_list_release(&new_todo);
6170 return error_errno(_("could not write '%s'"), todo_file);
6173 res = -1;
6175 if (checkout_onto(r, opts, onto_name, &oid, orig_head))
6176 goto cleanup;
6178 if (require_clean_work_tree(r, "rebase", "", 1, 1))
6179 goto cleanup;
6181 todo_list_write_total_nr(&new_todo);
6182 res = pick_commits(r, &new_todo, opts);
6184 cleanup:
6185 todo_list_release(&new_todo);
6187 return res;
6190 struct subject2item_entry {
6191 struct hashmap_entry entry;
6192 int i;
6193 char subject[FLEX_ARRAY];
6196 static int subject2item_cmp(const void *fndata UNUSED,
6197 const struct hashmap_entry *eptr,
6198 const struct hashmap_entry *entry_or_key,
6199 const void *key)
6201 const struct subject2item_entry *a, *b;
6203 a = container_of(eptr, const struct subject2item_entry, entry);
6204 b = container_of(entry_or_key, const struct subject2item_entry, entry);
6206 return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
6209 define_commit_slab(commit_todo_item, struct todo_item *);
6211 static int skip_fixupish(const char *subject, const char **p) {
6212 return skip_prefix(subject, "fixup! ", p) ||
6213 skip_prefix(subject, "amend! ", p) ||
6214 skip_prefix(subject, "squash! ", p);
6218 * Rearrange the todo list that has both "pick commit-id msg" and "pick
6219 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
6220 * after the former, and change "pick" to "fixup"/"squash".
6222 * Note that if the config has specified a custom instruction format, each log
6223 * message will have to be retrieved from the commit (as the oneline in the
6224 * script cannot be trusted) in order to normalize the autosquash arrangement.
6226 int todo_list_rearrange_squash(struct todo_list *todo_list)
6228 struct hashmap subject2item;
6229 int rearranged = 0, *next, *tail, i, nr = 0, alloc = 0;
6230 char **subjects;
6231 struct commit_todo_item commit_todo;
6232 struct todo_item *items = NULL;
6234 init_commit_todo_item(&commit_todo);
6236 * The hashmap maps onelines to the respective todo list index.
6238 * If any items need to be rearranged, the next[i] value will indicate
6239 * which item was moved directly after the i'th.
6241 * In that case, last[i] will indicate the index of the latest item to
6242 * be moved to appear after the i'th.
6244 hashmap_init(&subject2item, subject2item_cmp, NULL, todo_list->nr);
6245 ALLOC_ARRAY(next, todo_list->nr);
6246 ALLOC_ARRAY(tail, todo_list->nr);
6247 ALLOC_ARRAY(subjects, todo_list->nr);
6248 for (i = 0; i < todo_list->nr; i++) {
6249 struct strbuf buf = STRBUF_INIT;
6250 struct todo_item *item = todo_list->items + i;
6251 const char *commit_buffer, *subject, *p;
6252 size_t subject_len;
6253 int i2 = -1;
6254 struct subject2item_entry *entry;
6256 next[i] = tail[i] = -1;
6257 if (!item->commit || item->command == TODO_DROP) {
6258 subjects[i] = NULL;
6259 continue;
6262 if (is_fixup(item->command)) {
6263 clear_commit_todo_item(&commit_todo);
6264 return error(_("the script was already rearranged."));
6267 repo_parse_commit(the_repository, item->commit);
6268 commit_buffer = repo_logmsg_reencode(the_repository,
6269 item->commit, NULL,
6270 "UTF-8");
6271 find_commit_subject(commit_buffer, &subject);
6272 format_subject(&buf, subject, " ");
6273 subject = subjects[i] = strbuf_detach(&buf, &subject_len);
6274 repo_unuse_commit_buffer(the_repository, item->commit,
6275 commit_buffer);
6276 if (skip_fixupish(subject, &p)) {
6277 struct commit *commit2;
6279 for (;;) {
6280 while (isspace(*p))
6281 p++;
6282 if (!skip_fixupish(p, &p))
6283 break;
6286 entry = hashmap_get_entry_from_hash(&subject2item,
6287 strhash(p), p,
6288 struct subject2item_entry,
6289 entry);
6290 if (entry)
6291 /* found by title */
6292 i2 = entry->i;
6293 else if (!strchr(p, ' ') &&
6294 (commit2 =
6295 lookup_commit_reference_by_name(p)) &&
6296 *commit_todo_item_at(&commit_todo, commit2))
6297 /* found by commit name */
6298 i2 = *commit_todo_item_at(&commit_todo, commit2)
6299 - todo_list->items;
6300 else {
6301 /* copy can be a prefix of the commit subject */
6302 for (i2 = 0; i2 < i; i2++)
6303 if (subjects[i2] &&
6304 starts_with(subjects[i2], p))
6305 break;
6306 if (i2 == i)
6307 i2 = -1;
6310 if (i2 >= 0) {
6311 rearranged = 1;
6312 if (starts_with(subject, "fixup!")) {
6313 todo_list->items[i].command = TODO_FIXUP;
6314 } else if (starts_with(subject, "amend!")) {
6315 todo_list->items[i].command = TODO_FIXUP;
6316 todo_list->items[i].flags = TODO_REPLACE_FIXUP_MSG;
6317 } else {
6318 todo_list->items[i].command = TODO_SQUASH;
6320 if (tail[i2] < 0) {
6321 next[i] = next[i2];
6322 next[i2] = i;
6323 } else {
6324 next[i] = next[tail[i2]];
6325 next[tail[i2]] = i;
6327 tail[i2] = i;
6328 } else if (!hashmap_get_from_hash(&subject2item,
6329 strhash(subject), subject)) {
6330 FLEX_ALLOC_MEM(entry, subject, subject, subject_len);
6331 entry->i = i;
6332 hashmap_entry_init(&entry->entry,
6333 strhash(entry->subject));
6334 hashmap_put(&subject2item, &entry->entry);
6337 *commit_todo_item_at(&commit_todo, item->commit) = item;
6340 if (rearranged) {
6341 for (i = 0; i < todo_list->nr; i++) {
6342 enum todo_command command = todo_list->items[i].command;
6343 int cur = i;
6346 * Initially, all commands are 'pick's. If it is a
6347 * fixup or a squash now, we have rearranged it.
6349 if (is_fixup(command))
6350 continue;
6352 while (cur >= 0) {
6353 ALLOC_GROW(items, nr + 1, alloc);
6354 items[nr++] = todo_list->items[cur];
6355 cur = next[cur];
6359 FREE_AND_NULL(todo_list->items);
6360 todo_list->items = items;
6361 todo_list->nr = nr;
6362 todo_list->alloc = alloc;
6365 free(next);
6366 free(tail);
6367 for (i = 0; i < todo_list->nr; i++)
6368 free(subjects[i]);
6369 free(subjects);
6370 hashmap_clear_and_free(&subject2item, struct subject2item_entry, entry);
6372 clear_commit_todo_item(&commit_todo);
6374 return 0;
6377 int sequencer_determine_whence(struct repository *r, enum commit_whence *whence)
6379 if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) {
6380 struct object_id cherry_pick_head, rebase_head;
6382 if (file_exists(git_path_seq_dir()))
6383 *whence = FROM_CHERRY_PICK_MULTI;
6384 if (file_exists(rebase_path()) &&
6385 !repo_get_oid(r, "REBASE_HEAD", &rebase_head) &&
6386 !repo_get_oid(r, "CHERRY_PICK_HEAD", &cherry_pick_head) &&
6387 oideq(&rebase_head, &cherry_pick_head))
6388 *whence = FROM_REBASE_PICK;
6389 else
6390 *whence = FROM_CHERRY_PICK_SINGLE;
6392 return 1;
6395 return 0;
6398 int sequencer_get_update_refs_state(const char *wt_dir,
6399 struct string_list *refs)
6401 int result = 0;
6402 FILE *fp = NULL;
6403 struct strbuf ref = STRBUF_INIT;
6404 struct strbuf hash = STRBUF_INIT;
6405 struct update_ref_record *rec = NULL;
6407 char *path = rebase_path_update_refs(wt_dir);
6409 fp = fopen(path, "r");
6410 if (!fp)
6411 goto cleanup;
6413 while (strbuf_getline(&ref, fp) != EOF) {
6414 struct string_list_item *item;
6416 CALLOC_ARRAY(rec, 1);
6418 if (strbuf_getline(&hash, fp) == EOF ||
6419 get_oid_hex(hash.buf, &rec->before)) {
6420 warning(_("update-refs file at '%s' is invalid"),
6421 path);
6422 result = -1;
6423 goto cleanup;
6426 if (strbuf_getline(&hash, fp) == EOF ||
6427 get_oid_hex(hash.buf, &rec->after)) {
6428 warning(_("update-refs file at '%s' is invalid"),
6429 path);
6430 result = -1;
6431 goto cleanup;
6434 item = string_list_insert(refs, ref.buf);
6435 item->util = rec;
6436 rec = NULL;
6439 cleanup:
6440 if (fp)
6441 fclose(fp);
6442 free(path);
6443 free(rec);
6444 strbuf_release(&ref);
6445 strbuf_release(&hash);
6446 return result;