9 #include "run-command.h"
12 #include "cache-tree.h"
16 #include "merge-recursive.h"
18 #include "argv-array.h"
22 #include "wt-status.h"
25 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
27 const char sign_off_header
[] = "Signed-off-by: ";
28 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
30 GIT_PATH_FUNC(git_path_seq_dir
, "sequencer")
32 static GIT_PATH_FUNC(git_path_todo_file
, "sequencer/todo")
33 static GIT_PATH_FUNC(git_path_opts_file
, "sequencer/opts")
34 static GIT_PATH_FUNC(git_path_head_file
, "sequencer/head")
35 static GIT_PATH_FUNC(git_path_abort_safety_file
, "sequencer/abort-safety")
37 static GIT_PATH_FUNC(rebase_path
, "rebase-merge")
39 * The file containing rebase commands, comments, and empty lines.
40 * This file is created by "git rebase -i" then edited by the user. As
41 * the lines are processed, they are removed from the front of this
42 * file and written to the tail of 'done'.
44 static GIT_PATH_FUNC(rebase_path_todo
, "rebase-merge/git-rebase-todo")
46 * The rebase command lines that have already been processed. A line
47 * is moved here when it is first handled, before any associated user
50 static GIT_PATH_FUNC(rebase_path_done
, "rebase-merge/done")
52 * The file to keep track of how many commands were already processed (e.g.
55 static GIT_PATH_FUNC(rebase_path_msgnum
, "rebase-merge/msgnum");
57 * The file to keep track of how many commands are to be processed in total
58 * (e.g. for the prompt).
60 static GIT_PATH_FUNC(rebase_path_msgtotal
, "rebase-merge/end");
62 * The commit message that is planned to be used for any changes that
63 * need to be committed following a user interaction.
65 static GIT_PATH_FUNC(rebase_path_message
, "rebase-merge/message")
67 * The file into which is accumulated the suggested commit message for
68 * squash/fixup commands. When the first of a series of squash/fixups
69 * is seen, the file is created and the commit message from the
70 * previous commit and from the first squash/fixup commit are written
71 * to it. The commit message for each subsequent squash/fixup commit
72 * is appended to the file as it is processed.
74 * The first line of the file is of the form
75 * # This is a combination of $count commits.
76 * where $count is the number of commits whose messages have been
77 * written to the file so far (including the initial "pick" commit).
78 * Each time that a commit message is processed, this line is read and
79 * updated. It is deleted just before the combined commit is made.
81 static GIT_PATH_FUNC(rebase_path_squash_msg
, "rebase-merge/message-squash")
83 * If the current series of squash/fixups has not yet included a squash
84 * command, then this file exists and holds the commit message of the
85 * original "pick" commit. (If the series ends without a "squash"
86 * command, then this can be used as the commit message of the combined
87 * commit without opening the editor.)
89 static GIT_PATH_FUNC(rebase_path_fixup_msg
, "rebase-merge/message-fixup")
91 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
92 * GIT_AUTHOR_DATE that will be used for the commit that is currently
95 static GIT_PATH_FUNC(rebase_path_author_script
, "rebase-merge/author-script")
97 * When an "edit" rebase command is being processed, the SHA1 of the
98 * commit to be edited is recorded in this file. When "git rebase
99 * --continue" is executed, if there are any staged changes then they
100 * will be amended to the HEAD commit, but only provided the HEAD
101 * commit is still the commit to be edited. When any other rebase
102 * command is processed, this file is deleted.
104 static GIT_PATH_FUNC(rebase_path_amend
, "rebase-merge/amend")
106 * When we stop at a given patch via the "edit" command, this file contains
107 * the abbreviated commit name of the corresponding patch.
109 static GIT_PATH_FUNC(rebase_path_stopped_sha
, "rebase-merge/stopped-sha")
111 * For the post-rewrite hook, we make a list of rewritten commits and
112 * their new sha1s. The rewritten-pending list keeps the sha1s of
113 * commits that have been processed, but not committed yet,
114 * e.g. because they are waiting for a 'squash' command.
116 static GIT_PATH_FUNC(rebase_path_rewritten_list
, "rebase-merge/rewritten-list")
117 static GIT_PATH_FUNC(rebase_path_rewritten_pending
,
118 "rebase-merge/rewritten-pending")
120 * The following files are written by git-rebase just after parsing the
121 * command-line (and are only consumed, not modified, by the sequencer).
123 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt
, "rebase-merge/gpg_sign_opt")
124 static GIT_PATH_FUNC(rebase_path_orig_head
, "rebase-merge/orig-head")
125 static GIT_PATH_FUNC(rebase_path_verbose
, "rebase-merge/verbose")
126 static GIT_PATH_FUNC(rebase_path_head_name
, "rebase-merge/head-name")
127 static GIT_PATH_FUNC(rebase_path_onto
, "rebase-merge/onto")
128 static GIT_PATH_FUNC(rebase_path_autostash
, "rebase-merge/autostash")
129 static GIT_PATH_FUNC(rebase_path_strategy
, "rebase-merge/strategy")
130 static GIT_PATH_FUNC(rebase_path_strategy_opts
, "rebase-merge/strategy_opts")
131 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate
, "rebase-merge/allow_rerere_autoupdate")
133 static inline int is_rebase_i(const struct replay_opts
*opts
)
135 return opts
->action
== REPLAY_INTERACTIVE_REBASE
;
138 static const char *get_dir(const struct replay_opts
*opts
)
140 if (is_rebase_i(opts
))
141 return rebase_path();
142 return git_path_seq_dir();
145 static const char *get_todo_path(const struct replay_opts
*opts
)
147 if (is_rebase_i(opts
))
148 return rebase_path_todo();
149 return git_path_todo_file();
153 * Returns 0 for non-conforming footer
154 * Returns 1 for conforming footer
155 * Returns 2 when sob exists within conforming footer
156 * Returns 3 when sob exists within conforming footer as last entry
158 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
161 struct trailer_info info
;
163 int found_sob
= 0, found_sob_last
= 0;
165 trailer_info_get(&info
, sb
->buf
);
167 if (info
.trailer_start
== info
.trailer_end
)
170 for (i
= 0; i
< info
.trailer_nr
; i
++)
171 if (sob
&& !strncmp(info
.trailers
[i
], sob
->buf
, sob
->len
)) {
173 if (i
== info
.trailer_nr
- 1)
177 trailer_info_release(&info
);
186 static const char *gpg_sign_opt_quoted(struct replay_opts
*opts
)
188 static struct strbuf buf
= STRBUF_INIT
;
192 sq_quotef(&buf
, "-S%s", opts
->gpg_sign
);
196 int sequencer_remove_state(struct replay_opts
*opts
)
198 struct strbuf dir
= STRBUF_INIT
;
201 free(opts
->gpg_sign
);
202 free(opts
->strategy
);
203 for (i
= 0; i
< opts
->xopts_nr
; i
++)
204 free(opts
->xopts
[i
]);
207 strbuf_addstr(&dir
, get_dir(opts
));
208 remove_dir_recursively(&dir
, 0);
209 strbuf_release(&dir
);
214 static const char *action_name(const struct replay_opts
*opts
)
216 switch (opts
->action
) {
220 return N_("cherry-pick");
221 case REPLAY_INTERACTIVE_REBASE
:
222 return N_("rebase -i");
224 die(_("Unknown action: %d"), opts
->action
);
227 struct commit_message
{
234 static const char *short_commit_name(struct commit
*commit
)
236 return find_unique_abbrev(commit
->object
.oid
.hash
, DEFAULT_ABBREV
);
239 static int get_message(struct commit
*commit
, struct commit_message
*out
)
241 const char *abbrev
, *subject
;
244 out
->message
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
245 abbrev
= short_commit_name(commit
);
247 subject_len
= find_commit_subject(out
->message
, &subject
);
249 out
->subject
= xmemdupz(subject
, subject_len
);
250 out
->label
= xstrfmt("%s... %s", abbrev
, out
->subject
);
251 out
->parent_label
= xstrfmt("parent of %s", out
->label
);
256 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
258 free(msg
->parent_label
);
261 unuse_commit_buffer(commit
, msg
->message
);
264 static void print_advice(int show_hint
, struct replay_opts
*opts
)
266 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
269 fprintf(stderr
, "%s\n", msg
);
271 * A conflict has occurred but the porcelain
272 * (typically rebase --interactive) wants to take care
273 * of the commit itself so remove CHERRY_PICK_HEAD
275 unlink(git_path_cherry_pick_head());
281 advise(_("after resolving the conflicts, mark the corrected paths\n"
282 "with 'git add <paths>' or 'git rm <paths>'"));
284 advise(_("after resolving the conflicts, mark the corrected paths\n"
285 "with 'git add <paths>' or 'git rm <paths>'\n"
286 "and commit the result with 'git commit'"));
290 static int write_message(const void *buf
, size_t len
, const char *filename
,
293 static struct lock_file msg_file
;
295 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
, 0);
297 return error_errno(_("could not lock '%s'"), filename
);
298 if (write_in_full(msg_fd
, buf
, len
) < 0) {
299 rollback_lock_file(&msg_file
);
300 return error_errno(_("could not write to '%s'"), filename
);
302 if (append_eol
&& write(msg_fd
, "\n", 1) < 0) {
303 rollback_lock_file(&msg_file
);
304 return error_errno(_("could not write eol to '%s'"), filename
);
306 if (commit_lock_file(&msg_file
) < 0) {
307 rollback_lock_file(&msg_file
);
308 return error(_("failed to finalize '%s'."), filename
);
315 * Reads a file that was presumably written by a shell script, i.e. with an
316 * end-of-line marker that needs to be stripped.
318 * Note that only the last end-of-line marker is stripped, consistent with the
319 * behavior of "$(cat path)" in a shell script.
321 * Returns 1 if the file was read, 0 if it could not be read or does not exist.
323 static int read_oneliner(struct strbuf
*buf
,
324 const char *path
, int skip_if_empty
)
326 int orig_len
= buf
->len
;
328 if (!file_exists(path
))
331 if (strbuf_read_file(buf
, path
, 0) < 0) {
332 warning_errno(_("could not read '%s'"), path
);
336 if (buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\n') {
337 if (--buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\r')
339 buf
->buf
[buf
->len
] = '\0';
342 if (skip_if_empty
&& buf
->len
== orig_len
)
348 static struct tree
*empty_tree(void)
350 return lookup_tree(&empty_tree_oid
);
353 static int error_dirty_index(struct replay_opts
*opts
)
355 if (read_cache_unmerged())
356 return error_resolve_conflict(_(action_name(opts
)));
358 error(_("your local changes would be overwritten by %s."),
359 _(action_name(opts
)));
361 if (advice_commit_before_merge
)
362 advise(_("commit your changes or stash them to proceed."));
366 static void update_abort_safety_file(void)
368 struct object_id head
;
370 /* Do nothing on a single-pick */
371 if (!file_exists(git_path_seq_dir()))
374 if (!get_oid("HEAD", &head
))
375 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head
));
377 write_file(git_path_abort_safety_file(), "%s", "");
380 static int fast_forward_to(const struct object_id
*to
, const struct object_id
*from
,
381 int unborn
, struct replay_opts
*opts
)
383 struct ref_transaction
*transaction
;
384 struct strbuf sb
= STRBUF_INIT
;
385 struct strbuf err
= STRBUF_INIT
;
388 if (checkout_fast_forward(from
, to
, 1))
389 return -1; /* the callee should have complained already */
391 strbuf_addf(&sb
, _("%s: fast-forward"), _(action_name(opts
)));
393 transaction
= ref_transaction_begin(&err
);
395 ref_transaction_update(transaction
, "HEAD",
396 to
->hash
, unborn
? null_sha1
: from
->hash
,
398 ref_transaction_commit(transaction
, &err
)) {
399 ref_transaction_free(transaction
);
400 error("%s", err
.buf
);
402 strbuf_release(&err
);
407 strbuf_release(&err
);
408 ref_transaction_free(transaction
);
409 update_abort_safety_file();
413 void append_conflicts_hint(struct strbuf
*msgbuf
)
417 strbuf_addch(msgbuf
, '\n');
418 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
419 for (i
= 0; i
< active_nr
;) {
420 const struct cache_entry
*ce
= active_cache
[i
++];
422 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
423 while (i
< active_nr
&& !strcmp(ce
->name
,
424 active_cache
[i
]->name
))
430 static int do_recursive_merge(struct commit
*base
, struct commit
*next
,
431 const char *base_label
, const char *next_label
,
432 struct object_id
*head
, struct strbuf
*msgbuf
,
433 struct replay_opts
*opts
)
435 struct merge_options o
;
436 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
439 static struct lock_file index_lock
;
441 if (hold_locked_index(&index_lock
, LOCK_REPORT_ON_ERROR
) < 0)
446 init_merge_options(&o
);
447 o
.ancestor
= base
? base_label
: "(empty tree)";
449 o
.branch2
= next
? next_label
: "(empty tree)";
450 if (is_rebase_i(opts
))
453 head_tree
= parse_tree_indirect(head
);
454 next_tree
= next
? next
->tree
: empty_tree();
455 base_tree
= base
? base
->tree
: empty_tree();
457 for (xopt
= opts
->xopts
; xopt
!= opts
->xopts
+ opts
->xopts_nr
; xopt
++)
458 parse_merge_opt(&o
, *xopt
);
460 clean
= merge_trees(&o
,
462 next_tree
, base_tree
, &result
);
463 if (is_rebase_i(opts
) && clean
<= 0)
464 fputs(o
.obuf
.buf
, stdout
);
465 strbuf_release(&o
.obuf
);
469 if (active_cache_changed
&&
470 write_locked_index(&the_index
, &index_lock
, COMMIT_LOCK
))
472 * TRANSLATORS: %s will be "revert", "cherry-pick" or
475 return error(_("%s: Unable to write new index file"),
476 _(action_name(opts
)));
477 rollback_lock_file(&index_lock
);
480 append_signoff(msgbuf
, 0, 0);
483 append_conflicts_hint(msgbuf
);
488 static int is_index_unchanged(void)
490 struct object_id head_oid
;
491 struct commit
*head_commit
;
493 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, head_oid
.hash
, NULL
))
494 return error(_("could not resolve HEAD commit\n"));
496 head_commit
= lookup_commit(&head_oid
);
499 * If head_commit is NULL, check_commit, called from
500 * lookup_commit, would have indicated that head_commit is not
501 * a commit object already. parse_commit() will return failure
502 * without further complaints in such a case. Otherwise, if
503 * the commit is invalid, parse_commit() will complain. So
504 * there is nothing for us to say here. Just return failure.
506 if (parse_commit(head_commit
))
509 if (!active_cache_tree
)
510 active_cache_tree
= cache_tree();
512 if (!cache_tree_fully_valid(active_cache_tree
))
513 if (cache_tree_update(&the_index
, 0))
514 return error(_("unable to update cache tree\n"));
516 return !oidcmp(&active_cache_tree
->oid
,
517 &head_commit
->tree
->object
.oid
);
520 static int write_author_script(const char *message
)
522 struct strbuf buf
= STRBUF_INIT
;
527 if (!*message
|| starts_with(message
, "\n")) {
529 /* Missing 'author' line? */
530 unlink(rebase_path_author_script());
532 } else if (skip_prefix(message
, "author ", &message
))
534 else if ((eol
= strchr(message
, '\n')))
539 strbuf_addstr(&buf
, "GIT_AUTHOR_NAME='");
540 while (*message
&& *message
!= '\n' && *message
!= '\r')
541 if (skip_prefix(message
, " <", &message
))
543 else if (*message
!= '\'')
544 strbuf_addch(&buf
, *(message
++));
546 strbuf_addf(&buf
, "'\\\\%c'", *(message
++));
547 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_EMAIL='");
548 while (*message
&& *message
!= '\n' && *message
!= '\r')
549 if (skip_prefix(message
, "> ", &message
))
551 else if (*message
!= '\'')
552 strbuf_addch(&buf
, *(message
++));
554 strbuf_addf(&buf
, "'\\\\%c'", *(message
++));
555 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_DATE='@");
556 while (*message
&& *message
!= '\n' && *message
!= '\r')
557 if (*message
!= '\'')
558 strbuf_addch(&buf
, *(message
++));
560 strbuf_addf(&buf
, "'\\\\%c'", *(message
++));
561 res
= write_message(buf
.buf
, buf
.len
, rebase_path_author_script(), 1);
562 strbuf_release(&buf
);
567 * Read a list of environment variable assignments (such as the author-script
568 * file) into an environment block. Returns -1 on error, 0 otherwise.
570 static int read_env_script(struct argv_array
*env
)
572 struct strbuf script
= STRBUF_INIT
;
576 if (strbuf_read_file(&script
, rebase_path_author_script(), 256) <= 0)
579 for (p
= script
.buf
; *p
; p
++)
580 if (skip_prefix(p
, "'\\\\''", (const char **)&p2
))
581 strbuf_splice(&script
, p
- script
.buf
, p2
- p
, "'", 1);
583 strbuf_splice(&script
, p
-- - script
.buf
, 1, "", 0);
584 else if (*p
== '\n') {
589 for (i
= 0, p
= script
.buf
; i
< count
; i
++) {
590 argv_array_push(env
, p
);
597 static const char staged_changes_advice
[] =
598 N_("you have staged changes in your working tree\n"
599 "If these changes are meant to be squashed into the previous commit, run:\n"
601 " git commit --amend %s\n"
603 "If they are meant to go into a new commit, run:\n"
607 "In both cases, once you're done, continue with:\n"
609 " git rebase --continue\n");
611 #define ALLOW_EMPTY (1<<0)
612 #define EDIT_MSG (1<<1)
613 #define AMEND_MSG (1<<2)
614 #define CLEANUP_MSG (1<<3)
615 #define VERIFY_MSG (1<<4)
618 * If we are cherry-pick, and if the merge did not result in
619 * hand-editing, we will hit this commit and inherit the original
620 * author date and name.
622 * If we are revert, or if our cherry-pick results in a hand merge,
623 * we had better say that the current user is responsible for that.
625 * An exception is when run_git_commit() is called during an
626 * interactive rebase: in that case, we will want to retain the
629 static int run_git_commit(const char *defmsg
, struct replay_opts
*opts
,
632 struct child_process cmd
= CHILD_PROCESS_INIT
;
637 if (is_rebase_i(opts
)) {
638 if (!(flags
& EDIT_MSG
)) {
639 cmd
.stdout_to_stderr
= 1;
643 if (read_env_script(&cmd
.env_array
)) {
644 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
646 return error(_(staged_changes_advice
),
651 argv_array_push(&cmd
.args
, "commit");
653 if (!(flags
& VERIFY_MSG
))
654 argv_array_push(&cmd
.args
, "-n");
655 if ((flags
& AMEND_MSG
))
656 argv_array_push(&cmd
.args
, "--amend");
658 argv_array_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
660 argv_array_push(&cmd
.args
, "-s");
662 argv_array_pushl(&cmd
.args
, "-F", defmsg
, NULL
);
663 if ((flags
& CLEANUP_MSG
))
664 argv_array_push(&cmd
.args
, "--cleanup=strip");
665 if ((flags
& EDIT_MSG
))
666 argv_array_push(&cmd
.args
, "-e");
667 else if (!(flags
& CLEANUP_MSG
) &&
668 !opts
->signoff
&& !opts
->record_origin
&&
669 git_config_get_value("commit.cleanup", &value
))
670 argv_array_push(&cmd
.args
, "--cleanup=verbatim");
672 if ((flags
& ALLOW_EMPTY
))
673 argv_array_push(&cmd
.args
, "--allow-empty");
675 if (opts
->allow_empty_message
)
676 argv_array_push(&cmd
.args
, "--allow-empty-message");
679 /* hide stderr on success */
680 struct strbuf buf
= STRBUF_INIT
;
681 int rc
= pipe_command(&cmd
,
683 /* stdout is already redirected */
687 fputs(buf
.buf
, stderr
);
688 strbuf_release(&buf
);
692 return run_command(&cmd
);
695 static int is_original_commit_empty(struct commit
*commit
)
697 const struct object_id
*ptree_oid
;
699 if (parse_commit(commit
))
700 return error(_("could not parse commit %s\n"),
701 oid_to_hex(&commit
->object
.oid
));
702 if (commit
->parents
) {
703 struct commit
*parent
= commit
->parents
->item
;
704 if (parse_commit(parent
))
705 return error(_("could not parse parent commit %s\n"),
706 oid_to_hex(&parent
->object
.oid
));
707 ptree_oid
= &parent
->tree
->object
.oid
;
709 ptree_oid
= &empty_tree_oid
; /* commit is root */
712 return !oidcmp(ptree_oid
, &commit
->tree
->object
.oid
);
716 * Do we run "git commit" with "--allow-empty"?
718 static int allow_empty(struct replay_opts
*opts
, struct commit
*commit
)
720 int index_unchanged
, empty_commit
;
725 * (1) we do not allow empty at all and error out.
727 * (2) we allow ones that were initially empty, but
728 * forbid the ones that become empty;
732 if (!opts
->allow_empty
)
733 return 0; /* let "git commit" barf as necessary */
735 index_unchanged
= is_index_unchanged();
736 if (index_unchanged
< 0)
737 return index_unchanged
;
738 if (!index_unchanged
)
739 return 0; /* we do not have to say --allow-empty */
741 if (opts
->keep_redundant_commits
)
744 empty_commit
= is_original_commit_empty(commit
);
745 if (empty_commit
< 0)
754 * Note that ordering matters in this enum. Not only must it match the mapping
755 * below, it is also divided into several sections that matter. When adding
756 * new commands, make sure you add it in the right section.
759 /* commands that handle commits */
766 /* commands that do something else than handling a single commit */
768 /* commands that do nothing but are counted for reporting progress */
771 /* comments (not counted for reporting progress) */
778 } todo_command_info
[] = {
791 static const char *command_to_string(const enum todo_command command
)
793 if (command
< TODO_COMMENT
)
794 return todo_command_info
[command
].str
;
795 die("Unknown command: %d", command
);
798 static int is_noop(const enum todo_command command
)
800 return TODO_NOOP
<= command
;
803 static int is_fixup(enum todo_command command
)
805 return command
== TODO_FIXUP
|| command
== TODO_SQUASH
;
808 static int update_squash_messages(enum todo_command command
,
809 struct commit
*commit
, struct replay_opts
*opts
)
811 struct strbuf buf
= STRBUF_INIT
;
813 const char *message
, *body
;
815 if (file_exists(rebase_path_squash_msg())) {
816 struct strbuf header
= STRBUF_INIT
;
819 if (strbuf_read_file(&buf
, rebase_path_squash_msg(), 2048) <= 0)
820 return error(_("could not read '%s'"),
821 rebase_path_squash_msg());
824 eol
= strchrnul(buf
.buf
, '\n');
825 if (buf
.buf
[0] != comment_line_char
||
826 (p
+= strcspn(p
, "0123456789\n")) == eol
)
827 return error(_("unexpected 1st line of squash message:"
829 (int)(eol
- buf
.buf
), buf
.buf
);
830 count
= strtol(p
, NULL
, 10);
833 return error(_("invalid 1st line of squash message:\n"
835 (int)(eol
- buf
.buf
), buf
.buf
);
837 strbuf_addf(&header
, "%c ", comment_line_char
);
839 _("This is a combination of %d commits."), ++count
);
840 strbuf_splice(&buf
, 0, eol
- buf
.buf
, header
.buf
, header
.len
);
841 strbuf_release(&header
);
843 struct object_id head
;
844 struct commit
*head_commit
;
845 const char *head_message
, *body
;
847 if (get_oid("HEAD", &head
))
848 return error(_("need a HEAD to fixup"));
849 if (!(head_commit
= lookup_commit_reference(&head
)))
850 return error(_("could not read HEAD"));
851 if (!(head_message
= get_commit_buffer(head_commit
, NULL
)))
852 return error(_("could not read HEAD's commit message"));
854 find_commit_subject(head_message
, &body
);
855 if (write_message(body
, strlen(body
),
856 rebase_path_fixup_msg(), 0)) {
857 unuse_commit_buffer(head_commit
, head_message
);
858 return error(_("cannot write '%s'"),
859 rebase_path_fixup_msg());
863 strbuf_addf(&buf
, "%c ", comment_line_char
);
864 strbuf_addf(&buf
, _("This is a combination of %d commits."),
866 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
867 strbuf_addstr(&buf
, _("This is the 1st commit message:"));
868 strbuf_addstr(&buf
, "\n\n");
869 strbuf_addstr(&buf
, body
);
871 unuse_commit_buffer(head_commit
, head_message
);
874 if (!(message
= get_commit_buffer(commit
, NULL
)))
875 return error(_("could not read commit message of %s"),
876 oid_to_hex(&commit
->object
.oid
));
877 find_commit_subject(message
, &body
);
879 if (command
== TODO_SQUASH
) {
880 unlink(rebase_path_fixup_msg());
881 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
882 strbuf_addf(&buf
, _("This is the commit message #%d:"), count
);
883 strbuf_addstr(&buf
, "\n\n");
884 strbuf_addstr(&buf
, body
);
885 } else if (command
== TODO_FIXUP
) {
886 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
887 strbuf_addf(&buf
, _("The commit message #%d will be skipped:"),
889 strbuf_addstr(&buf
, "\n\n");
890 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
892 return error(_("unknown command: %d"), command
);
893 unuse_commit_buffer(commit
, message
);
895 res
= write_message(buf
.buf
, buf
.len
, rebase_path_squash_msg(), 0);
896 strbuf_release(&buf
);
900 static void flush_rewritten_pending(void) {
901 struct strbuf buf
= STRBUF_INIT
;
902 struct object_id newoid
;
905 if (strbuf_read_file(&buf
, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ
+ 1) * 2) > 0 &&
906 !get_oid("HEAD", &newoid
) &&
907 (out
= fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
908 char *bol
= buf
.buf
, *eol
;
911 eol
= strchrnul(bol
, '\n');
912 fprintf(out
, "%.*s %s\n", (int)(eol
- bol
),
913 bol
, oid_to_hex(&newoid
));
919 unlink(rebase_path_rewritten_pending());
921 strbuf_release(&buf
);
924 static void record_in_rewritten(struct object_id
*oid
,
925 enum todo_command next_command
) {
926 FILE *out
= fopen_or_warn(rebase_path_rewritten_pending(), "a");
931 fprintf(out
, "%s\n", oid_to_hex(oid
));
934 if (!is_fixup(next_command
))
935 flush_rewritten_pending();
938 static int do_pick_commit(enum todo_command command
, struct commit
*commit
,
939 struct replay_opts
*opts
, int final_fixup
)
941 unsigned int flags
= opts
->edit
? EDIT_MSG
: 0;
942 const char *msg_file
= opts
->edit
? NULL
: git_path_merge_msg();
943 struct object_id head
;
944 struct commit
*base
, *next
, *parent
;
945 const char *base_label
, *next_label
;
946 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
947 struct strbuf msgbuf
= STRBUF_INIT
;
948 int res
, unborn
= 0, allow
;
950 if (opts
->no_commit
) {
952 * We do not intend to commit immediately. We just want to
953 * merge the differences in, so let's compute the tree
954 * that represents the "current" state for merge-recursive
957 if (write_cache_as_tree(head
.hash
, 0, NULL
))
958 return error(_("your index file is unmerged."));
960 unborn
= get_oid("HEAD", &head
);
962 oidcpy(&head
, &empty_tree_oid
);
963 if (index_differs_from(unborn
? EMPTY_TREE_SHA1_HEX
: "HEAD", 0, 0))
964 return error_dirty_index(opts
);
968 if (!commit
->parents
)
970 else if (commit
->parents
->next
) {
971 /* Reverting or cherry-picking a merge commit */
973 struct commit_list
*p
;
976 return error(_("commit %s is a merge but no -m option was given."),
977 oid_to_hex(&commit
->object
.oid
));
979 for (cnt
= 1, p
= commit
->parents
;
980 cnt
!= opts
->mainline
&& p
;
983 if (cnt
!= opts
->mainline
|| !p
)
984 return error(_("commit %s does not have parent %d"),
985 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
987 } else if (0 < opts
->mainline
)
988 return error(_("mainline was specified but commit %s is not a merge."),
989 oid_to_hex(&commit
->object
.oid
));
991 parent
= commit
->parents
->item
;
993 if (get_message(commit
, &msg
) != 0)
994 return error(_("cannot get commit message for %s"),
995 oid_to_hex(&commit
->object
.oid
));
997 if (opts
->allow_ff
&& !is_fixup(command
) &&
998 ((parent
&& !oidcmp(&parent
->object
.oid
, &head
)) ||
999 (!parent
&& unborn
))) {
1000 if (is_rebase_i(opts
))
1001 write_author_script(msg
.message
);
1002 res
= fast_forward_to(&commit
->object
.oid
, &head
, unborn
,
1004 if (res
|| command
!= TODO_REWORD
)
1006 flags
|= EDIT_MSG
| AMEND_MSG
;
1007 if (command
== TODO_REWORD
)
1008 flags
|= VERIFY_MSG
;
1010 goto fast_forward_edit
;
1012 if (parent
&& parse_commit(parent
) < 0)
1013 /* TRANSLATORS: The first %s will be a "todo" command like
1014 "revert" or "pick", the second %s a SHA1. */
1015 return error(_("%s: cannot parse parent commit %s"),
1016 command_to_string(command
),
1017 oid_to_hex(&parent
->object
.oid
));
1020 * "commit" is an existing commit. We would want to apply
1021 * the difference it introduces since its first parent "prev"
1022 * on top of the current HEAD if we are cherry-pick. Or the
1023 * reverse of it if we are revert.
1026 if (command
== TODO_REVERT
) {
1028 base_label
= msg
.label
;
1030 next_label
= msg
.parent_label
;
1031 strbuf_addstr(&msgbuf
, "Revert \"");
1032 strbuf_addstr(&msgbuf
, msg
.subject
);
1033 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
1034 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
1036 if (commit
->parents
&& commit
->parents
->next
) {
1037 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
1038 strbuf_addstr(&msgbuf
, oid_to_hex(&parent
->object
.oid
));
1040 strbuf_addstr(&msgbuf
, ".\n");
1045 base_label
= msg
.parent_label
;
1047 next_label
= msg
.label
;
1049 /* Append the commit log message to msgbuf. */
1050 if (find_commit_subject(msg
.message
, &p
))
1051 strbuf_addstr(&msgbuf
, p
);
1053 if (opts
->record_origin
) {
1054 strbuf_complete_line(&msgbuf
);
1055 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
1056 strbuf_addch(&msgbuf
, '\n');
1057 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
1058 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
1059 strbuf_addstr(&msgbuf
, ")\n");
1063 if (command
== TODO_REWORD
)
1064 flags
|= EDIT_MSG
| VERIFY_MSG
;
1065 else if (is_fixup(command
)) {
1066 if (update_squash_messages(command
, commit
, opts
))
1070 msg_file
= rebase_path_squash_msg();
1071 else if (file_exists(rebase_path_fixup_msg())) {
1072 flags
|= CLEANUP_MSG
;
1073 msg_file
= rebase_path_fixup_msg();
1075 const char *dest
= git_path_squash_msg();
1077 if (copy_file(dest
, rebase_path_squash_msg(), 0666))
1078 return error(_("could not rename '%s' to '%s'"),
1079 rebase_path_squash_msg(), dest
);
1080 unlink(git_path_merge_msg());
1086 if (is_rebase_i(opts
) && write_author_script(msg
.message
) < 0)
1088 else if (!opts
->strategy
|| !strcmp(opts
->strategy
, "recursive") || command
== TODO_REVERT
) {
1089 res
= do_recursive_merge(base
, next
, base_label
, next_label
,
1090 &head
, &msgbuf
, opts
);
1093 res
|= write_message(msgbuf
.buf
, msgbuf
.len
,
1094 git_path_merge_msg(), 0);
1096 struct commit_list
*common
= NULL
;
1097 struct commit_list
*remotes
= NULL
;
1099 res
= write_message(msgbuf
.buf
, msgbuf
.len
,
1100 git_path_merge_msg(), 0);
1102 commit_list_insert(base
, &common
);
1103 commit_list_insert(next
, &remotes
);
1104 res
|= try_merge_command(opts
->strategy
,
1105 opts
->xopts_nr
, (const char **)opts
->xopts
,
1106 common
, oid_to_hex(&head
), remotes
);
1107 free_commit_list(common
);
1108 free_commit_list(remotes
);
1110 strbuf_release(&msgbuf
);
1113 * If the merge was clean or if it failed due to conflict, we write
1114 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
1115 * However, if the merge did not even start, then we don't want to
1118 if (command
== TODO_PICK
&& !opts
->no_commit
&& (res
== 0 || res
== 1) &&
1119 update_ref(NULL
, "CHERRY_PICK_HEAD", commit
->object
.oid
.hash
, NULL
,
1120 REF_NODEREF
, UPDATE_REFS_MSG_ON_ERR
))
1122 if (command
== TODO_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1) &&
1123 update_ref(NULL
, "REVERT_HEAD", commit
->object
.oid
.hash
, NULL
,
1124 REF_NODEREF
, UPDATE_REFS_MSG_ON_ERR
))
1128 error(command
== TODO_REVERT
1129 ? _("could not revert %s... %s")
1130 : _("could not apply %s... %s"),
1131 short_commit_name(commit
), msg
.subject
);
1132 print_advice(res
== 1, opts
);
1133 rerere(opts
->allow_rerere_auto
);
1137 allow
= allow_empty(opts
, commit
);
1142 flags
|= ALLOW_EMPTY
;
1143 if (!opts
->no_commit
)
1145 res
= run_git_commit(msg_file
, opts
, flags
);
1147 if (!res
&& final_fixup
) {
1148 unlink(rebase_path_fixup_msg());
1149 unlink(rebase_path_squash_msg());
1153 free_message(commit
, &msg
);
1154 update_abort_safety_file();
1159 static int prepare_revs(struct replay_opts
*opts
)
1162 * picking (but not reverting) ranges (but not individual revisions)
1163 * should be done in reverse
1165 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
1166 opts
->revs
->reverse
^= 1;
1168 if (prepare_revision_walk(opts
->revs
))
1169 return error(_("revision walk setup failed"));
1171 if (!opts
->revs
->commits
)
1172 return error(_("empty commit set passed"));
1176 static int read_and_refresh_cache(struct replay_opts
*opts
)
1178 static struct lock_file index_lock
;
1179 int index_fd
= hold_locked_index(&index_lock
, 0);
1180 if (read_index_preload(&the_index
, NULL
) < 0) {
1181 rollback_lock_file(&index_lock
);
1182 return error(_("git %s: failed to read the index"),
1183 _(action_name(opts
)));
1185 refresh_index(&the_index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
1186 if (the_index
.cache_changed
&& index_fd
>= 0) {
1187 if (write_locked_index(&the_index
, &index_lock
, COMMIT_LOCK
)) {
1188 rollback_lock_file(&index_lock
);
1189 return error(_("git %s: failed to refresh the index"),
1190 _(action_name(opts
)));
1193 rollback_lock_file(&index_lock
);
1198 enum todo_command command
;
1199 struct commit
*commit
;
1202 size_t offset_in_buf
;
1207 struct todo_item
*items
;
1208 int nr
, alloc
, current
;
1209 int done_nr
, total_nr
;
1210 struct stat_data stat
;
1213 #define TODO_LIST_INIT { STRBUF_INIT }
1215 static void todo_list_release(struct todo_list
*todo_list
)
1217 strbuf_release(&todo_list
->buf
);
1218 FREE_AND_NULL(todo_list
->items
);
1219 todo_list
->nr
= todo_list
->alloc
= 0;
1222 static struct todo_item
*append_new_todo(struct todo_list
*todo_list
)
1224 ALLOC_GROW(todo_list
->items
, todo_list
->nr
+ 1, todo_list
->alloc
);
1225 return todo_list
->items
+ todo_list
->nr
++;
1228 static int parse_insn_line(struct todo_item
*item
, const char *bol
, char *eol
)
1230 struct object_id commit_oid
;
1231 char *end_of_object_name
;
1232 int i
, saved
, status
, padding
;
1235 bol
+= strspn(bol
, " \t");
1237 if (bol
== eol
|| *bol
== '\r' || *bol
== comment_line_char
) {
1238 item
->command
= TODO_COMMENT
;
1239 item
->commit
= NULL
;
1241 item
->arg_len
= eol
- bol
;
1245 for (i
= 0; i
< TODO_COMMENT
; i
++)
1246 if (skip_prefix(bol
, todo_command_info
[i
].str
, &bol
)) {
1249 } else if (bol
[1] == ' ' && *bol
== todo_command_info
[i
].c
) {
1254 if (i
>= TODO_COMMENT
)
1257 if (item
->command
== TODO_NOOP
) {
1258 item
->commit
= NULL
;
1260 item
->arg_len
= eol
- bol
;
1264 /* Eat up extra spaces/ tabs before object name */
1265 padding
= strspn(bol
, " \t");
1270 if (item
->command
== TODO_EXEC
) {
1272 item
->arg_len
= (int)(eol
- bol
);
1276 end_of_object_name
= (char *) bol
+ strcspn(bol
, " \t\n");
1277 saved
= *end_of_object_name
;
1278 *end_of_object_name
= '\0';
1279 status
= get_oid(bol
, &commit_oid
);
1280 *end_of_object_name
= saved
;
1282 item
->arg
= end_of_object_name
+ strspn(end_of_object_name
, " \t");
1283 item
->arg_len
= (int)(eol
- item
->arg
);
1288 item
->commit
= lookup_commit_reference(&commit_oid
);
1289 return !item
->commit
;
1292 static int parse_insn_buffer(char *buf
, struct todo_list
*todo_list
)
1294 struct todo_item
*item
;
1295 char *p
= buf
, *next_p
;
1296 int i
, res
= 0, fixup_okay
= file_exists(rebase_path_done());
1298 for (i
= 1; *p
; i
++, p
= next_p
) {
1299 char *eol
= strchrnul(p
, '\n');
1301 next_p
= *eol
? eol
+ 1 /* skip LF */ : eol
;
1303 if (p
!= eol
&& eol
[-1] == '\r')
1304 eol
--; /* strip Carriage Return */
1306 item
= append_new_todo(todo_list
);
1307 item
->offset_in_buf
= p
- todo_list
->buf
.buf
;
1308 if (parse_insn_line(item
, p
, eol
)) {
1309 res
= error(_("invalid line %d: %.*s"),
1310 i
, (int)(eol
- p
), p
);
1311 item
->command
= TODO_NOOP
;
1316 else if (is_fixup(item
->command
))
1317 return error(_("cannot '%s' without a previous commit"),
1318 command_to_string(item
->command
));
1319 else if (!is_noop(item
->command
))
1326 static int count_commands(struct todo_list
*todo_list
)
1330 for (i
= 0; i
< todo_list
->nr
; i
++)
1331 if (todo_list
->items
[i
].command
!= TODO_COMMENT
)
1337 static int read_populate_todo(struct todo_list
*todo_list
,
1338 struct replay_opts
*opts
)
1341 const char *todo_file
= get_todo_path(opts
);
1344 strbuf_reset(&todo_list
->buf
);
1345 fd
= open(todo_file
, O_RDONLY
);
1347 return error_errno(_("could not open '%s'"), todo_file
);
1348 if (strbuf_read(&todo_list
->buf
, fd
, 0) < 0) {
1350 return error(_("could not read '%s'."), todo_file
);
1354 res
= stat(todo_file
, &st
);
1356 return error(_("could not stat '%s'"), todo_file
);
1357 fill_stat_data(&todo_list
->stat
, &st
);
1359 res
= parse_insn_buffer(todo_list
->buf
.buf
, todo_list
);
1361 if (is_rebase_i(opts
))
1362 return error(_("please fix this using "
1363 "'git rebase --edit-todo'."));
1364 return error(_("unusable instruction sheet: '%s'"), todo_file
);
1367 if (!todo_list
->nr
&&
1368 (!is_rebase_i(opts
) || !file_exists(rebase_path_done())))
1369 return error(_("no commits parsed."));
1371 if (!is_rebase_i(opts
)) {
1372 enum todo_command valid
=
1373 opts
->action
== REPLAY_PICK
? TODO_PICK
: TODO_REVERT
;
1376 for (i
= 0; i
< todo_list
->nr
; i
++)
1377 if (valid
== todo_list
->items
[i
].command
)
1379 else if (valid
== TODO_PICK
)
1380 return error(_("cannot cherry-pick during a revert."));
1382 return error(_("cannot revert during a cherry-pick."));
1385 if (is_rebase_i(opts
)) {
1386 struct todo_list done
= TODO_LIST_INIT
;
1387 FILE *f
= fopen_or_warn(rebase_path_msgtotal(), "w");
1389 if (strbuf_read_file(&done
.buf
, rebase_path_done(), 0) > 0 &&
1390 !parse_insn_buffer(done
.buf
.buf
, &done
))
1391 todo_list
->done_nr
= count_commands(&done
);
1393 todo_list
->done_nr
= 0;
1395 todo_list
->total_nr
= todo_list
->done_nr
1396 + count_commands(todo_list
);
1397 todo_list_release(&done
);
1400 fprintf(f
, "%d\n", todo_list
->total_nr
);
1408 static int git_config_string_dup(char **dest
,
1409 const char *var
, const char *value
)
1412 return config_error_nonbool(var
);
1414 *dest
= xstrdup(value
);
1418 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
1420 struct replay_opts
*opts
= data
;
1425 else if (!strcmp(key
, "options.no-commit"))
1426 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
1427 else if (!strcmp(key
, "options.edit"))
1428 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
1429 else if (!strcmp(key
, "options.signoff"))
1430 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
1431 else if (!strcmp(key
, "options.record-origin"))
1432 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
1433 else if (!strcmp(key
, "options.allow-ff"))
1434 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
1435 else if (!strcmp(key
, "options.mainline"))
1436 opts
->mainline
= git_config_int(key
, value
);
1437 else if (!strcmp(key
, "options.strategy"))
1438 git_config_string_dup(&opts
->strategy
, key
, value
);
1439 else if (!strcmp(key
, "options.gpg-sign"))
1440 git_config_string_dup(&opts
->gpg_sign
, key
, value
);
1441 else if (!strcmp(key
, "options.strategy-option")) {
1442 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
1443 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
1444 } else if (!strcmp(key
, "options.allow-rerere-auto"))
1445 opts
->allow_rerere_auto
=
1446 git_config_bool_or_int(key
, value
, &error_flag
) ?
1447 RERERE_AUTOUPDATE
: RERERE_NOAUTOUPDATE
;
1449 return error(_("invalid key: %s"), key
);
1452 return error(_("invalid value for %s: %s"), key
, value
);
1457 static void read_strategy_opts(struct replay_opts
*opts
, struct strbuf
*buf
)
1462 if (!read_oneliner(buf
, rebase_path_strategy(), 0))
1464 opts
->strategy
= strbuf_detach(buf
, NULL
);
1465 if (!read_oneliner(buf
, rebase_path_strategy_opts(), 0))
1468 opts
->xopts_nr
= split_cmdline(buf
->buf
, (const char ***)&opts
->xopts
);
1469 for (i
= 0; i
< opts
->xopts_nr
; i
++) {
1470 const char *arg
= opts
->xopts
[i
];
1472 skip_prefix(arg
, "--", &arg
);
1473 opts
->xopts
[i
] = xstrdup(arg
);
1477 static int read_populate_opts(struct replay_opts
*opts
)
1479 if (is_rebase_i(opts
)) {
1480 struct strbuf buf
= STRBUF_INIT
;
1482 if (read_oneliner(&buf
, rebase_path_gpg_sign_opt(), 1)) {
1483 if (!starts_with(buf
.buf
, "-S"))
1486 free(opts
->gpg_sign
);
1487 opts
->gpg_sign
= xstrdup(buf
.buf
+ 2);
1492 if (read_oneliner(&buf
, rebase_path_allow_rerere_autoupdate(), 1)) {
1493 if (!strcmp(buf
.buf
, "--rerere-autoupdate"))
1494 opts
->allow_rerere_auto
= RERERE_AUTOUPDATE
;
1495 else if (!strcmp(buf
.buf
, "--no-rerere-autoupdate"))
1496 opts
->allow_rerere_auto
= RERERE_NOAUTOUPDATE
;
1500 if (file_exists(rebase_path_verbose()))
1503 read_strategy_opts(opts
, &buf
);
1504 strbuf_release(&buf
);
1509 if (!file_exists(git_path_opts_file()))
1512 * The function git_parse_source(), called from git_config_from_file(),
1513 * may die() in case of a syntactically incorrect file. We do not care
1514 * about this case, though, because we wrote that file ourselves, so we
1515 * are pretty certain that it is syntactically correct.
1517 if (git_config_from_file(populate_opts_cb
, git_path_opts_file(), opts
) < 0)
1518 return error(_("malformed options sheet: '%s'"),
1519 git_path_opts_file());
1523 static int walk_revs_populate_todo(struct todo_list
*todo_list
,
1524 struct replay_opts
*opts
)
1526 enum todo_command command
= opts
->action
== REPLAY_PICK
?
1527 TODO_PICK
: TODO_REVERT
;
1528 const char *command_string
= todo_command_info
[command
].str
;
1529 struct commit
*commit
;
1531 if (prepare_revs(opts
))
1534 while ((commit
= get_revision(opts
->revs
))) {
1535 struct todo_item
*item
= append_new_todo(todo_list
);
1536 const char *commit_buffer
= get_commit_buffer(commit
, NULL
);
1537 const char *subject
;
1540 item
->command
= command
;
1541 item
->commit
= commit
;
1544 item
->offset_in_buf
= todo_list
->buf
.len
;
1545 subject_len
= find_commit_subject(commit_buffer
, &subject
);
1546 strbuf_addf(&todo_list
->buf
, "%s %s %.*s\n", command_string
,
1547 short_commit_name(commit
), subject_len
, subject
);
1548 unuse_commit_buffer(commit
, commit_buffer
);
1553 static int create_seq_dir(void)
1555 if (file_exists(git_path_seq_dir())) {
1556 error(_("a cherry-pick or revert is already in progress"));
1557 advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
1559 } else if (mkdir(git_path_seq_dir(), 0777) < 0)
1560 return error_errno(_("could not create sequencer directory '%s'"),
1561 git_path_seq_dir());
1565 static int save_head(const char *head
)
1567 static struct lock_file head_lock
;
1568 struct strbuf buf
= STRBUF_INIT
;
1572 fd
= hold_lock_file_for_update(&head_lock
, git_path_head_file(), 0);
1574 rollback_lock_file(&head_lock
);
1575 return error_errno(_("could not lock HEAD"));
1577 strbuf_addf(&buf
, "%s\n", head
);
1578 written
= write_in_full(fd
, buf
.buf
, buf
.len
);
1579 strbuf_release(&buf
);
1581 rollback_lock_file(&head_lock
);
1582 return error_errno(_("could not write to '%s'"),
1583 git_path_head_file());
1585 if (commit_lock_file(&head_lock
) < 0) {
1586 rollback_lock_file(&head_lock
);
1587 return error(_("failed to finalize '%s'."), git_path_head_file());
1592 static int rollback_is_safe(void)
1594 struct strbuf sb
= STRBUF_INIT
;
1595 struct object_id expected_head
, actual_head
;
1597 if (strbuf_read_file(&sb
, git_path_abort_safety_file(), 0) >= 0) {
1599 if (get_oid_hex(sb
.buf
, &expected_head
)) {
1600 strbuf_release(&sb
);
1601 die(_("could not parse %s"), git_path_abort_safety_file());
1603 strbuf_release(&sb
);
1605 else if (errno
== ENOENT
)
1606 oidclr(&expected_head
);
1608 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
1610 if (get_oid("HEAD", &actual_head
))
1611 oidclr(&actual_head
);
1613 return !oidcmp(&actual_head
, &expected_head
);
1616 static int reset_for_rollback(const struct object_id
*oid
)
1618 const char *argv
[4]; /* reset --merge <arg> + NULL */
1621 argv
[1] = "--merge";
1622 argv
[2] = oid_to_hex(oid
);
1624 return run_command_v_opt(argv
, RUN_GIT_CMD
);
1627 static int rollback_single_pick(void)
1629 struct object_id head_oid
;
1631 if (!file_exists(git_path_cherry_pick_head()) &&
1632 !file_exists(git_path_revert_head()))
1633 return error(_("no cherry-pick or revert in progress"));
1634 if (read_ref_full("HEAD", 0, head_oid
.hash
, NULL
))
1635 return error(_("cannot resolve HEAD"));
1636 if (is_null_oid(&head_oid
))
1637 return error(_("cannot abort from a branch yet to be born"));
1638 return reset_for_rollback(&head_oid
);
1641 int sequencer_rollback(struct replay_opts
*opts
)
1644 struct object_id oid
;
1645 struct strbuf buf
= STRBUF_INIT
;
1648 f
= fopen(git_path_head_file(), "r");
1649 if (!f
&& errno
== ENOENT
) {
1651 * There is no multiple-cherry-pick in progress.
1652 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
1653 * a single-cherry-pick in progress, abort that.
1655 return rollback_single_pick();
1658 return error_errno(_("cannot open '%s'"), git_path_head_file());
1659 if (strbuf_getline_lf(&buf
, f
)) {
1660 error(_("cannot read '%s': %s"), git_path_head_file(),
1661 ferror(f
) ? strerror(errno
) : _("unexpected end of file"));
1666 if (parse_oid_hex(buf
.buf
, &oid
, &p
) || *p
!= '\0') {
1667 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
1668 git_path_head_file());
1671 if (is_null_oid(&oid
)) {
1672 error(_("cannot abort from a branch yet to be born"));
1676 if (!rollback_is_safe()) {
1677 /* Do not error, just do not rollback */
1678 warning(_("You seem to have moved HEAD. "
1679 "Not rewinding, check your HEAD!"));
1681 if (reset_for_rollback(&oid
))
1683 strbuf_release(&buf
);
1684 return sequencer_remove_state(opts
);
1686 strbuf_release(&buf
);
1690 static int save_todo(struct todo_list
*todo_list
, struct replay_opts
*opts
)
1692 static struct lock_file todo_lock
;
1693 const char *todo_path
= get_todo_path(opts
);
1694 int next
= todo_list
->current
, offset
, fd
;
1697 * rebase -i writes "git-rebase-todo" without the currently executing
1698 * command, appending it to "done" instead.
1700 if (is_rebase_i(opts
))
1703 fd
= hold_lock_file_for_update(&todo_lock
, todo_path
, 0);
1705 return error_errno(_("could not lock '%s'"), todo_path
);
1706 offset
= next
< todo_list
->nr
?
1707 todo_list
->items
[next
].offset_in_buf
: todo_list
->buf
.len
;
1708 if (write_in_full(fd
, todo_list
->buf
.buf
+ offset
,
1709 todo_list
->buf
.len
- offset
) < 0)
1710 return error_errno(_("could not write to '%s'"), todo_path
);
1711 if (commit_lock_file(&todo_lock
) < 0)
1712 return error(_("failed to finalize '%s'."), todo_path
);
1714 if (is_rebase_i(opts
)) {
1715 const char *done_path
= rebase_path_done();
1716 int fd
= open(done_path
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
1717 int prev_offset
= !next
? 0 :
1718 todo_list
->items
[next
- 1].offset_in_buf
;
1720 if (fd
>= 0 && offset
> prev_offset
&&
1721 write_in_full(fd
, todo_list
->buf
.buf
+ prev_offset
,
1722 offset
- prev_offset
) < 0) {
1724 return error_errno(_("could not write to '%s'"),
1733 static int save_opts(struct replay_opts
*opts
)
1735 const char *opts_file
= git_path_opts_file();
1738 if (opts
->no_commit
)
1739 res
|= git_config_set_in_file_gently(opts_file
, "options.no-commit", "true");
1741 res
|= git_config_set_in_file_gently(opts_file
, "options.edit", "true");
1743 res
|= git_config_set_in_file_gently(opts_file
, "options.signoff", "true");
1744 if (opts
->record_origin
)
1745 res
|= git_config_set_in_file_gently(opts_file
, "options.record-origin", "true");
1747 res
|= git_config_set_in_file_gently(opts_file
, "options.allow-ff", "true");
1748 if (opts
->mainline
) {
1749 struct strbuf buf
= STRBUF_INIT
;
1750 strbuf_addf(&buf
, "%d", opts
->mainline
);
1751 res
|= git_config_set_in_file_gently(opts_file
, "options.mainline", buf
.buf
);
1752 strbuf_release(&buf
);
1755 res
|= git_config_set_in_file_gently(opts_file
, "options.strategy", opts
->strategy
);
1757 res
|= git_config_set_in_file_gently(opts_file
, "options.gpg-sign", opts
->gpg_sign
);
1760 for (i
= 0; i
< opts
->xopts_nr
; i
++)
1761 res
|= git_config_set_multivar_in_file_gently(opts_file
,
1762 "options.strategy-option",
1763 opts
->xopts
[i
], "^$", 0);
1765 if (opts
->allow_rerere_auto
)
1766 res
|= git_config_set_in_file_gently(opts_file
, "options.allow-rerere-auto",
1767 opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
?
1772 static int make_patch(struct commit
*commit
, struct replay_opts
*opts
)
1774 struct strbuf buf
= STRBUF_INIT
;
1775 struct rev_info log_tree_opt
;
1776 const char *subject
, *p
;
1779 p
= short_commit_name(commit
);
1780 if (write_message(p
, strlen(p
), rebase_path_stopped_sha(), 1) < 0)
1783 strbuf_addf(&buf
, "%s/patch", get_dir(opts
));
1784 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
1785 init_revisions(&log_tree_opt
, NULL
);
1786 log_tree_opt
.abbrev
= 0;
1787 log_tree_opt
.diff
= 1;
1788 log_tree_opt
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1789 log_tree_opt
.disable_stdin
= 1;
1790 log_tree_opt
.no_commit_id
= 1;
1791 log_tree_opt
.diffopt
.file
= fopen(buf
.buf
, "w");
1792 log_tree_opt
.diffopt
.use_color
= GIT_COLOR_NEVER
;
1793 if (!log_tree_opt
.diffopt
.file
)
1794 res
|= error_errno(_("could not open '%s'"), buf
.buf
);
1796 res
|= log_tree_commit(&log_tree_opt
, commit
);
1797 fclose(log_tree_opt
.diffopt
.file
);
1801 strbuf_addf(&buf
, "%s/message", get_dir(opts
));
1802 if (!file_exists(buf
.buf
)) {
1803 const char *commit_buffer
= get_commit_buffer(commit
, NULL
);
1804 find_commit_subject(commit_buffer
, &subject
);
1805 res
|= write_message(subject
, strlen(subject
), buf
.buf
, 1);
1806 unuse_commit_buffer(commit
, commit_buffer
);
1808 strbuf_release(&buf
);
1813 static int intend_to_amend(void)
1815 struct object_id head
;
1818 if (get_oid("HEAD", &head
))
1819 return error(_("cannot read HEAD"));
1821 p
= oid_to_hex(&head
);
1822 return write_message(p
, strlen(p
), rebase_path_amend(), 1);
1825 static int error_with_patch(struct commit
*commit
,
1826 const char *subject
, int subject_len
,
1827 struct replay_opts
*opts
, int exit_code
, int to_amend
)
1829 if (make_patch(commit
, opts
))
1833 if (intend_to_amend())
1836 fprintf(stderr
, "You can amend the commit now, with\n"
1838 " git commit --amend %s\n"
1840 "Once you are satisfied with your changes, run\n"
1842 " git rebase --continue\n", gpg_sign_opt_quoted(opts
));
1843 } else if (exit_code
)
1844 fprintf(stderr
, "Could not apply %s... %.*s\n",
1845 short_commit_name(commit
), subject_len
, subject
);
1850 static int error_failed_squash(struct commit
*commit
,
1851 struct replay_opts
*opts
, int subject_len
, const char *subject
)
1853 if (rename(rebase_path_squash_msg(), rebase_path_message()))
1854 return error(_("could not rename '%s' to '%s'"),
1855 rebase_path_squash_msg(), rebase_path_message());
1856 unlink(rebase_path_fixup_msg());
1857 unlink(git_path_merge_msg());
1858 if (copy_file(git_path_merge_msg(), rebase_path_message(), 0666))
1859 return error(_("could not copy '%s' to '%s'"),
1860 rebase_path_message(), git_path_merge_msg());
1861 return error_with_patch(commit
, subject
, subject_len
, opts
, 1, 0);
1864 static int do_exec(const char *command_line
)
1866 struct argv_array child_env
= ARGV_ARRAY_INIT
;
1867 const char *child_argv
[] = { NULL
, NULL
};
1870 fprintf(stderr
, "Executing: %s\n", command_line
);
1871 child_argv
[0] = command_line
;
1872 argv_array_pushf(&child_env
, "GIT_DIR=%s", absolute_path(get_git_dir()));
1873 status
= run_command_v_opt_cd_env(child_argv
, RUN_USING_SHELL
, NULL
,
1876 /* force re-reading of the cache */
1877 if (discard_cache() < 0 || read_cache() < 0)
1878 return error(_("could not read index"));
1880 dirty
= require_clean_work_tree("rebase", NULL
, 1, 1);
1883 warning(_("execution failed: %s\n%s"
1884 "You can fix the problem, and then run\n"
1886 " git rebase --continue\n"
1889 dirty
? N_("and made changes to the index and/or the "
1890 "working tree\n") : "");
1892 /* command not found */
1895 warning(_("execution succeeded: %s\nbut "
1896 "left changes to the index and/or the working tree\n"
1897 "Commit or stash your changes, and then run\n"
1899 " git rebase --continue\n"
1900 "\n"), command_line
);
1904 argv_array_clear(&child_env
);
1909 static int is_final_fixup(struct todo_list
*todo_list
)
1911 int i
= todo_list
->current
;
1913 if (!is_fixup(todo_list
->items
[i
].command
))
1916 while (++i
< todo_list
->nr
)
1917 if (is_fixup(todo_list
->items
[i
].command
))
1919 else if (!is_noop(todo_list
->items
[i
].command
))
1924 static enum todo_command
peek_command(struct todo_list
*todo_list
, int offset
)
1928 for (i
= todo_list
->current
+ offset
; i
< todo_list
->nr
; i
++)
1929 if (!is_noop(todo_list
->items
[i
].command
))
1930 return todo_list
->items
[i
].command
;
1935 static int apply_autostash(struct replay_opts
*opts
)
1937 struct strbuf stash_sha1
= STRBUF_INIT
;
1938 struct child_process child
= CHILD_PROCESS_INIT
;
1941 if (!read_oneliner(&stash_sha1
, rebase_path_autostash(), 1)) {
1942 strbuf_release(&stash_sha1
);
1945 strbuf_trim(&stash_sha1
);
1948 child
.no_stdout
= 1;
1949 child
.no_stderr
= 1;
1950 argv_array_push(&child
.args
, "stash");
1951 argv_array_push(&child
.args
, "apply");
1952 argv_array_push(&child
.args
, stash_sha1
.buf
);
1953 if (!run_command(&child
))
1954 fprintf(stderr
, _("Applied autostash.\n"));
1956 struct child_process store
= CHILD_PROCESS_INIT
;
1959 argv_array_push(&store
.args
, "stash");
1960 argv_array_push(&store
.args
, "store");
1961 argv_array_push(&store
.args
, "-m");
1962 argv_array_push(&store
.args
, "autostash");
1963 argv_array_push(&store
.args
, "-q");
1964 argv_array_push(&store
.args
, stash_sha1
.buf
);
1965 if (run_command(&store
))
1966 ret
= error(_("cannot store %s"), stash_sha1
.buf
);
1969 _("Applying autostash resulted in conflicts.\n"
1970 "Your changes are safe in the stash.\n"
1971 "You can run \"git stash pop\" or"
1972 " \"git stash drop\" at any time.\n"));
1975 strbuf_release(&stash_sha1
);
1979 static const char *reflog_message(struct replay_opts
*opts
,
1980 const char *sub_action
, const char *fmt
, ...)
1983 static struct strbuf buf
= STRBUF_INIT
;
1987 strbuf_addstr(&buf
, action_name(opts
));
1989 strbuf_addf(&buf
, " (%s)", sub_action
);
1991 strbuf_addstr(&buf
, ": ");
1992 strbuf_vaddf(&buf
, fmt
, ap
);
1999 static int pick_commits(struct todo_list
*todo_list
, struct replay_opts
*opts
)
2003 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
2005 assert(!(opts
->signoff
|| opts
->no_commit
||
2006 opts
->record_origin
|| opts
->edit
));
2007 if (read_and_refresh_cache(opts
))
2010 while (todo_list
->current
< todo_list
->nr
) {
2011 struct todo_item
*item
= todo_list
->items
+ todo_list
->current
;
2012 if (save_todo(todo_list
, opts
))
2014 if (is_rebase_i(opts
)) {
2015 if (item
->command
!= TODO_COMMENT
) {
2016 FILE *f
= fopen(rebase_path_msgnum(), "w");
2018 todo_list
->done_nr
++;
2021 fprintf(f
, "%d\n", todo_list
->done_nr
);
2024 fprintf(stderr
, "Rebasing (%d/%d)%s",
2026 todo_list
->total_nr
,
2027 opts
->verbose
? "\n" : "\r");
2029 unlink(rebase_path_message());
2030 unlink(rebase_path_author_script());
2031 unlink(rebase_path_stopped_sha());
2032 unlink(rebase_path_amend());
2034 if (item
->command
<= TODO_SQUASH
) {
2035 if (is_rebase_i(opts
))
2036 setenv("GIT_REFLOG_ACTION", reflog_message(opts
,
2037 command_to_string(item
->command
), NULL
),
2039 res
= do_pick_commit(item
->command
, item
->commit
,
2040 opts
, is_final_fixup(todo_list
));
2041 if (is_rebase_i(opts
) && res
< 0) {
2043 todo_list
->current
--;
2044 if (save_todo(todo_list
, opts
))
2047 if (item
->command
== TODO_EDIT
) {
2048 struct commit
*commit
= item
->commit
;
2051 _("Stopped at %s... %.*s\n"),
2052 short_commit_name(commit
),
2053 item
->arg_len
, item
->arg
);
2054 return error_with_patch(commit
,
2055 item
->arg
, item
->arg_len
, opts
, res
,
2058 if (is_rebase_i(opts
) && !res
)
2059 record_in_rewritten(&item
->commit
->object
.oid
,
2060 peek_command(todo_list
, 1));
2061 if (res
&& is_fixup(item
->command
)) {
2064 return error_failed_squash(item
->commit
, opts
,
2065 item
->arg_len
, item
->arg
);
2066 } else if (res
&& is_rebase_i(opts
))
2067 return res
| error_with_patch(item
->commit
,
2068 item
->arg
, item
->arg_len
, opts
, res
,
2069 item
->command
== TODO_REWORD
);
2070 } else if (item
->command
== TODO_EXEC
) {
2071 char *end_of_arg
= (char *)(item
->arg
+ item
->arg_len
);
2072 int saved
= *end_of_arg
;
2076 res
= do_exec(item
->arg
);
2077 *end_of_arg
= saved
;
2079 /* Reread the todo file if it has changed. */
2081 ; /* fall through */
2082 else if (stat(get_todo_path(opts
), &st
))
2083 res
= error_errno(_("could not stat '%s'"),
2084 get_todo_path(opts
));
2085 else if (match_stat_data(&todo_list
->stat
, &st
)) {
2086 todo_list_release(todo_list
);
2087 if (read_populate_todo(todo_list
, opts
))
2088 res
= -1; /* message was printed */
2089 /* `current` will be incremented below */
2090 todo_list
->current
= -1;
2092 } else if (!is_noop(item
->command
))
2093 return error(_("unknown command %d"), item
->command
);
2095 todo_list
->current
++;
2100 if (is_rebase_i(opts
)) {
2101 struct strbuf head_ref
= STRBUF_INIT
, buf
= STRBUF_INIT
;
2104 /* Stopped in the middle, as planned? */
2105 if (todo_list
->current
< todo_list
->nr
)
2108 if (read_oneliner(&head_ref
, rebase_path_head_name(), 0) &&
2109 starts_with(head_ref
.buf
, "refs/")) {
2111 struct object_id head
, orig
;
2114 if (get_oid("HEAD", &head
)) {
2115 res
= error(_("cannot read HEAD"));
2117 strbuf_release(&head_ref
);
2118 strbuf_release(&buf
);
2121 if (!read_oneliner(&buf
, rebase_path_orig_head(), 0) ||
2122 get_oid_hex(buf
.buf
, &orig
)) {
2123 res
= error(_("could not read orig-head"));
2124 goto cleanup_head_ref
;
2127 if (!read_oneliner(&buf
, rebase_path_onto(), 0)) {
2128 res
= error(_("could not read 'onto'"));
2129 goto cleanup_head_ref
;
2131 msg
= reflog_message(opts
, "finish", "%s onto %s",
2132 head_ref
.buf
, buf
.buf
);
2133 if (update_ref(msg
, head_ref
.buf
, head
.hash
, orig
.hash
,
2134 REF_NODEREF
, UPDATE_REFS_MSG_ON_ERR
)) {
2135 res
= error(_("could not update %s"),
2137 goto cleanup_head_ref
;
2139 msg
= reflog_message(opts
, "finish", "returning to %s",
2141 if (create_symref("HEAD", head_ref
.buf
, msg
)) {
2142 res
= error(_("could not update HEAD to %s"),
2144 goto cleanup_head_ref
;
2149 if (opts
->verbose
) {
2150 struct rev_info log_tree_opt
;
2151 struct object_id orig
, head
;
2153 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
2154 init_revisions(&log_tree_opt
, NULL
);
2155 log_tree_opt
.diff
= 1;
2156 log_tree_opt
.diffopt
.output_format
=
2157 DIFF_FORMAT_DIFFSTAT
;
2158 log_tree_opt
.disable_stdin
= 1;
2160 if (read_oneliner(&buf
, rebase_path_orig_head(), 0) &&
2161 !get_oid(buf
.buf
, &orig
) &&
2162 !get_oid("HEAD", &head
)) {
2163 diff_tree_oid(&orig
, &head
, "",
2164 &log_tree_opt
.diffopt
);
2165 log_tree_diff_flush(&log_tree_opt
);
2168 flush_rewritten_pending();
2169 if (!stat(rebase_path_rewritten_list(), &st
) &&
2171 struct child_process child
= CHILD_PROCESS_INIT
;
2172 const char *post_rewrite_hook
=
2173 find_hook("post-rewrite");
2175 child
.in
= open(rebase_path_rewritten_list(), O_RDONLY
);
2177 argv_array_push(&child
.args
, "notes");
2178 argv_array_push(&child
.args
, "copy");
2179 argv_array_push(&child
.args
, "--for-rewrite=rebase");
2180 /* we don't care if this copying failed */
2181 run_command(&child
);
2183 if (post_rewrite_hook
) {
2184 struct child_process hook
= CHILD_PROCESS_INIT
;
2186 hook
.in
= open(rebase_path_rewritten_list(),
2188 hook
.stdout_to_stderr
= 1;
2189 argv_array_push(&hook
.args
, post_rewrite_hook
);
2190 argv_array_push(&hook
.args
, "rebase");
2191 /* we don't care if this hook failed */
2195 apply_autostash(opts
);
2197 fprintf(stderr
, "Successfully rebased and updated %s.\n",
2200 strbuf_release(&buf
);
2201 strbuf_release(&head_ref
);
2205 * Sequence of picks finished successfully; cleanup by
2206 * removing the .git/sequencer directory
2208 return sequencer_remove_state(opts
);
2211 static int continue_single_pick(void)
2213 const char *argv
[] = { "commit", NULL
};
2215 if (!file_exists(git_path_cherry_pick_head()) &&
2216 !file_exists(git_path_revert_head()))
2217 return error(_("no cherry-pick or revert in progress"));
2218 return run_command_v_opt(argv
, RUN_GIT_CMD
);
2221 static int commit_staged_changes(struct replay_opts
*opts
)
2223 unsigned int flags
= ALLOW_EMPTY
| EDIT_MSG
;
2225 if (has_unstaged_changes(1))
2226 return error(_("cannot rebase: You have unstaged changes."));
2227 if (!has_uncommitted_changes(0)) {
2228 const char *cherry_pick_head
= git_path_cherry_pick_head();
2230 if (file_exists(cherry_pick_head
) && unlink(cherry_pick_head
))
2231 return error(_("could not remove CHERRY_PICK_HEAD"));
2235 if (file_exists(rebase_path_amend())) {
2236 struct strbuf rev
= STRBUF_INIT
;
2237 struct object_id head
, to_amend
;
2239 if (get_oid("HEAD", &head
))
2240 return error(_("cannot amend non-existing commit"));
2241 if (!read_oneliner(&rev
, rebase_path_amend(), 0))
2242 return error(_("invalid file: '%s'"), rebase_path_amend());
2243 if (get_oid_hex(rev
.buf
, &to_amend
))
2244 return error(_("invalid contents: '%s'"),
2245 rebase_path_amend());
2246 if (oidcmp(&head
, &to_amend
))
2247 return error(_("\nYou have uncommitted changes in your "
2248 "working tree. Please, commit them\n"
2249 "first and then run 'git rebase "
2250 "--continue' again."));
2252 strbuf_release(&rev
);
2256 if (run_git_commit(rebase_path_message(), opts
, flags
))
2257 return error(_("could not commit staged changes."));
2258 unlink(rebase_path_amend());
2262 int sequencer_continue(struct replay_opts
*opts
)
2264 struct todo_list todo_list
= TODO_LIST_INIT
;
2267 if (read_and_refresh_cache(opts
))
2270 if (is_rebase_i(opts
)) {
2271 if (commit_staged_changes(opts
))
2273 } else if (!file_exists(get_todo_path(opts
)))
2274 return continue_single_pick();
2275 if (read_populate_opts(opts
))
2277 if ((res
= read_populate_todo(&todo_list
, opts
)))
2278 goto release_todo_list
;
2280 if (!is_rebase_i(opts
)) {
2281 /* Verify that the conflict has been resolved */
2282 if (file_exists(git_path_cherry_pick_head()) ||
2283 file_exists(git_path_revert_head())) {
2284 res
= continue_single_pick();
2286 goto release_todo_list
;
2288 if (index_differs_from("HEAD", 0, 0)) {
2289 res
= error_dirty_index(opts
);
2290 goto release_todo_list
;
2292 todo_list
.current
++;
2293 } else if (file_exists(rebase_path_stopped_sha())) {
2294 struct strbuf buf
= STRBUF_INIT
;
2295 struct object_id oid
;
2297 if (read_oneliner(&buf
, rebase_path_stopped_sha(), 1) &&
2298 !get_oid_committish(buf
.buf
, &oid
))
2299 record_in_rewritten(&oid
, peek_command(&todo_list
, 0));
2300 strbuf_release(&buf
);
2303 res
= pick_commits(&todo_list
, opts
);
2305 todo_list_release(&todo_list
);
2309 static int single_pick(struct commit
*cmit
, struct replay_opts
*opts
)
2311 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
2312 return do_pick_commit(opts
->action
== REPLAY_PICK
?
2313 TODO_PICK
: TODO_REVERT
, cmit
, opts
, 0);
2316 int sequencer_pick_revisions(struct replay_opts
*opts
)
2318 struct todo_list todo_list
= TODO_LIST_INIT
;
2319 struct object_id oid
;
2323 if (read_and_refresh_cache(opts
))
2326 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
2327 struct object_id oid
;
2328 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
2330 /* This happens when using --stdin. */
2334 if (!get_oid(name
, &oid
)) {
2335 if (!lookup_commit_reference_gently(&oid
, 1)) {
2336 enum object_type type
= sha1_object_info(oid
.hash
, NULL
);
2337 return error(_("%s: can't cherry-pick a %s"),
2338 name
, typename(type
));
2341 return error(_("%s: bad revision"), name
);
2345 * If we were called as "git cherry-pick <commit>", just
2346 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
2347 * REVERT_HEAD, and don't touch the sequencer state.
2348 * This means it is possible to cherry-pick in the middle
2349 * of a cherry-pick sequence.
2351 if (opts
->revs
->cmdline
.nr
== 1 &&
2352 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
2353 opts
->revs
->no_walk
&&
2354 !opts
->revs
->cmdline
.rev
->flags
) {
2355 struct commit
*cmit
;
2356 if (prepare_revision_walk(opts
->revs
))
2357 return error(_("revision walk setup failed"));
2358 cmit
= get_revision(opts
->revs
);
2359 if (!cmit
|| get_revision(opts
->revs
))
2360 return error("BUG: expected exactly one commit from walk");
2361 return single_pick(cmit
, opts
);
2365 * Start a new cherry-pick/ revert sequence; but
2366 * first, make sure that an existing one isn't in
2370 if (walk_revs_populate_todo(&todo_list
, opts
) ||
2371 create_seq_dir() < 0)
2373 if (get_oid("HEAD", &oid
) && (opts
->action
== REPLAY_REVERT
))
2374 return error(_("can't revert as initial commit"));
2375 if (save_head(oid_to_hex(&oid
)))
2377 if (save_opts(opts
))
2379 update_abort_safety_file();
2380 res
= pick_commits(&todo_list
, opts
);
2381 todo_list_release(&todo_list
);
2385 void append_signoff(struct strbuf
*msgbuf
, int ignore_footer
, unsigned flag
)
2387 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
2388 struct strbuf sob
= STRBUF_INIT
;
2391 strbuf_addstr(&sob
, sign_off_header
);
2392 strbuf_addstr(&sob
, fmt_name(getenv("GIT_COMMITTER_NAME"),
2393 getenv("GIT_COMMITTER_EMAIL")));
2394 strbuf_addch(&sob
, '\n');
2397 strbuf_complete_line(msgbuf
);
2400 * If the whole message buffer is equal to the sob, pretend that we
2401 * found a conforming footer with a matching sob
2403 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
2404 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
2407 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
2410 const char *append_newlines
= NULL
;
2411 size_t len
= msgbuf
->len
- ignore_footer
;
2415 * The buffer is completely empty. Leave foom for
2416 * the title and body to be filled in by the user.
2418 append_newlines
= "\n\n";
2419 } else if (len
== 1) {
2421 * Buffer contains a single newline. Add another
2422 * so that we leave room for the title and body.
2424 append_newlines
= "\n";
2425 } else if (msgbuf
->buf
[len
- 2] != '\n') {
2427 * Buffer ends with a single newline. Add another
2428 * so that there is an empty line between the message
2431 append_newlines
= "\n";
2432 } /* else, the buffer already ends with two newlines. */
2434 if (append_newlines
)
2435 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
2436 append_newlines
, strlen(append_newlines
));
2439 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
2440 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
2443 strbuf_release(&sob
);
2446 int sequencer_make_script(int keep_empty
, FILE *out
,
2447 int argc
, const char **argv
)
2449 char *format
= NULL
;
2450 struct pretty_print_context pp
= {0};
2451 struct strbuf buf
= STRBUF_INIT
;
2452 struct rev_info revs
;
2453 struct commit
*commit
;
2455 init_revisions(&revs
, NULL
);
2456 revs
.verbose_header
= 1;
2457 revs
.max_parents
= 1;
2458 revs
.cherry_pick
= 1;
2461 revs
.right_only
= 1;
2462 revs
.sort_order
= REV_SORT_IN_GRAPH_ORDER
;
2463 revs
.topo_order
= 1;
2465 revs
.pretty_given
= 1;
2466 git_config_get_string("rebase.instructionFormat", &format
);
2467 if (!format
|| !*format
) {
2469 format
= xstrdup("%s");
2471 get_commit_format(format
, &revs
);
2473 pp
.fmt
= revs
.commit_format
;
2474 pp
.output_encoding
= get_log_output_encoding();
2476 if (setup_revisions(argc
, argv
, &revs
, NULL
) > 1)
2477 return error(_("make_script: unhandled options"));
2479 if (prepare_revision_walk(&revs
) < 0)
2480 return error(_("make_script: error preparing revisions"));
2482 while ((commit
= get_revision(&revs
))) {
2484 if (!keep_empty
&& is_original_commit_empty(commit
))
2485 strbuf_addf(&buf
, "%c ", comment_line_char
);
2486 strbuf_addf(&buf
, "pick %s ", oid_to_hex(&commit
->object
.oid
));
2487 pretty_print_commit(&pp
, commit
, &buf
);
2488 strbuf_addch(&buf
, '\n');
2489 fputs(buf
.buf
, out
);
2491 strbuf_release(&buf
);
2496 int transform_todo_ids(int shorten_ids
)
2498 const char *todo_file
= rebase_path_todo();
2499 struct todo_list todo_list
= TODO_LIST_INIT
;
2503 strbuf_reset(&todo_list
.buf
);
2504 fd
= open(todo_file
, O_RDONLY
);
2506 return error_errno(_("could not open '%s'"), todo_file
);
2507 if (strbuf_read(&todo_list
.buf
, fd
, 0) < 0) {
2509 return error(_("could not read '%s'."), todo_file
);
2513 res
= parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
);
2515 todo_list_release(&todo_list
);
2516 return error(_("unusable todo list: '%s'"), todo_file
);
2519 out
= fopen(todo_file
, "w");
2521 todo_list_release(&todo_list
);
2522 return error(_("unable to open '%s' for writing"), todo_file
);
2524 for (i
= 0; i
< todo_list
.nr
; i
++) {
2525 struct todo_item
*item
= todo_list
.items
+ i
;
2526 int bol
= item
->offset_in_buf
;
2527 const char *p
= todo_list
.buf
.buf
+ bol
;
2528 int eol
= i
+ 1 < todo_list
.nr
?
2529 todo_list
.items
[i
+ 1].offset_in_buf
:
2532 if (item
->command
>= TODO_EXEC
&& item
->command
!= TODO_DROP
)
2533 fwrite(p
, eol
- bol
, 1, out
);
2535 const char *id
= shorten_ids
?
2536 short_commit_name(item
->commit
) :
2537 oid_to_hex(&item
->commit
->object
.oid
);
2540 p
+= strspn(p
, " \t"); /* left-trim command */
2541 len
= strcspn(p
, " \t"); /* length of command */
2543 fprintf(out
, "%.*s %s %.*s\n",
2544 len
, p
, id
, item
->arg_len
, item
->arg
);
2548 todo_list_release(&todo_list
);
2553 CHECK_IGNORE
= 0, CHECK_WARN
, CHECK_ERROR
2556 static enum check_level
get_missing_commit_check_level(void)
2560 if (git_config_get_value("rebase.missingcommitscheck", &value
) ||
2561 !strcasecmp("ignore", value
))
2562 return CHECK_IGNORE
;
2563 if (!strcasecmp("warn", value
))
2565 if (!strcasecmp("error", value
))
2567 warning(_("unrecognized setting %s for option "
2568 "rebase.missingCommitsCheck. Ignoring."), value
);
2569 return CHECK_IGNORE
;
2573 * Check if the user dropped some commits by mistake
2574 * Behaviour determined by rebase.missingCommitsCheck.
2575 * Check if there is an unrecognized command or a
2576 * bad SHA-1 in a command.
2578 int check_todo_list(void)
2580 enum check_level check_level
= get_missing_commit_check_level();
2581 struct strbuf todo_file
= STRBUF_INIT
;
2582 struct todo_list todo_list
= TODO_LIST_INIT
;
2583 struct strbuf missing
= STRBUF_INIT
;
2584 int advise_to_edit_todo
= 0, res
= 0, fd
, i
;
2586 strbuf_addstr(&todo_file
, rebase_path_todo());
2587 fd
= open(todo_file
.buf
, O_RDONLY
);
2589 res
= error_errno(_("could not open '%s'"), todo_file
.buf
);
2592 if (strbuf_read(&todo_list
.buf
, fd
, 0) < 0) {
2594 res
= error(_("could not read '%s'."), todo_file
.buf
);
2598 advise_to_edit_todo
= res
=
2599 parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
);
2601 if (res
|| check_level
== CHECK_IGNORE
)
2604 /* Mark the commits in git-rebase-todo as seen */
2605 for (i
= 0; i
< todo_list
.nr
; i
++) {
2606 struct commit
*commit
= todo_list
.items
[i
].commit
;
2608 commit
->util
= (void *)1;
2611 todo_list_release(&todo_list
);
2612 strbuf_addstr(&todo_file
, ".backup");
2613 fd
= open(todo_file
.buf
, O_RDONLY
);
2615 res
= error_errno(_("could not open '%s'"), todo_file
.buf
);
2618 if (strbuf_read(&todo_list
.buf
, fd
, 0) < 0) {
2620 res
= error(_("could not read '%s'."), todo_file
.buf
);
2624 strbuf_release(&todo_file
);
2625 res
= !!parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
);
2627 /* Find commits in git-rebase-todo.backup yet unseen */
2628 for (i
= todo_list
.nr
- 1; i
>= 0; i
--) {
2629 struct todo_item
*item
= todo_list
.items
+ i
;
2630 struct commit
*commit
= item
->commit
;
2631 if (commit
&& !commit
->util
) {
2632 strbuf_addf(&missing
, " - %s %.*s\n",
2633 short_commit_name(commit
),
2634 item
->arg_len
, item
->arg
);
2635 commit
->util
= (void *)1;
2639 /* Warn about missing commits */
2643 if (check_level
== CHECK_ERROR
)
2644 advise_to_edit_todo
= res
= 1;
2647 _("Warning: some commits may have been dropped accidentally.\n"
2648 "Dropped commits (newer to older):\n"));
2650 /* Make the list user-friendly and display */
2651 fputs(missing
.buf
, stderr
);
2652 strbuf_release(&missing
);
2654 fprintf(stderr
, _("To avoid this message, use \"drop\" to "
2655 "explicitly remove a commit.\n\n"
2656 "Use 'git config rebase.missingCommitsCheck' to change "
2657 "the level of warnings.\n"
2658 "The possible behaviours are: ignore, warn, error.\n\n"));
2661 strbuf_release(&todo_file
);
2662 todo_list_release(&todo_list
);
2664 if (advise_to_edit_todo
)
2666 _("You can fix this with 'git rebase --edit-todo' "
2667 "and then run 'git rebase --continue'.\n"
2668 "Or you can abort the rebase with 'git rebase"
2674 static int rewrite_file(const char *path
, const char *buf
, size_t len
)
2677 int fd
= open(path
, O_WRONLY
| O_TRUNC
);
2679 return error_errno(_("could not open '%s' for writing"), path
);
2680 if (write_in_full(fd
, buf
, len
) < 0)
2681 rc
= error_errno(_("could not write to '%s'"), path
);
2682 if (close(fd
) && !rc
)
2683 rc
= error_errno(_("could not close '%s'"), path
);
2687 /* skip picking commits whose parents are unchanged */
2688 int skip_unnecessary_picks(void)
2690 const char *todo_file
= rebase_path_todo();
2691 struct strbuf buf
= STRBUF_INIT
;
2692 struct todo_list todo_list
= TODO_LIST_INIT
;
2693 struct object_id onto_oid
, *oid
= &onto_oid
, *parent_oid
;
2696 if (!read_oneliner(&buf
, rebase_path_onto(), 0))
2697 return error(_("could not read 'onto'"));
2698 if (get_oid(buf
.buf
, &onto_oid
)) {
2699 strbuf_release(&buf
);
2700 return error(_("need a HEAD to fixup"));
2702 strbuf_release(&buf
);
2704 fd
= open(todo_file
, O_RDONLY
);
2706 return error_errno(_("could not open '%s'"), todo_file
);
2708 if (strbuf_read(&todo_list
.buf
, fd
, 0) < 0) {
2710 return error(_("could not read '%s'."), todo_file
);
2713 if (parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
) < 0) {
2714 todo_list_release(&todo_list
);
2718 for (i
= 0; i
< todo_list
.nr
; i
++) {
2719 struct todo_item
*item
= todo_list
.items
+ i
;
2721 if (item
->command
>= TODO_NOOP
)
2723 if (item
->command
!= TODO_PICK
)
2725 if (parse_commit(item
->commit
)) {
2726 todo_list_release(&todo_list
);
2727 return error(_("could not parse commit '%s'"),
2728 oid_to_hex(&item
->commit
->object
.oid
));
2730 if (!item
->commit
->parents
)
2731 break; /* root commit */
2732 if (item
->commit
->parents
->next
)
2733 break; /* merge commit */
2734 parent_oid
= &item
->commit
->parents
->item
->object
.oid
;
2735 if (hashcmp(parent_oid
->hash
, oid
->hash
))
2737 oid
= &item
->commit
->object
.oid
;
2740 int offset
= i
< todo_list
.nr
?
2741 todo_list
.items
[i
].offset_in_buf
: todo_list
.buf
.len
;
2742 const char *done_path
= rebase_path_done();
2744 fd
= open(done_path
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
2746 error_errno(_("could not open '%s' for writing"),
2748 todo_list_release(&todo_list
);
2751 if (write_in_full(fd
, todo_list
.buf
.buf
, offset
) < 0) {
2752 error_errno(_("could not write to '%s'"), done_path
);
2753 todo_list_release(&todo_list
);
2759 if (rewrite_file(rebase_path_todo(), todo_list
.buf
.buf
+ offset
,
2760 todo_list
.buf
.len
- offset
) < 0) {
2761 todo_list_release(&todo_list
);
2765 todo_list
.current
= i
;
2766 if (is_fixup(peek_command(&todo_list
, 0)))
2767 record_in_rewritten(oid
, peek_command(&todo_list
, 0));
2770 todo_list_release(&todo_list
);
2771 printf("%s\n", oid_to_hex(oid
));
2776 struct subject2item_entry
{
2777 struct hashmap_entry entry
;
2779 char subject
[FLEX_ARRAY
];
2782 static int subject2item_cmp(const void *fndata
,
2783 const struct subject2item_entry
*a
,
2784 const struct subject2item_entry
*b
, const void *key
)
2786 return key
? strcmp(a
->subject
, key
) : strcmp(a
->subject
, b
->subject
);
2790 * Rearrange the todo list that has both "pick commit-id msg" and "pick
2791 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
2792 * after the former, and change "pick" to "fixup"/"squash".
2794 * Note that if the config has specified a custom instruction format, each log
2795 * message will have to be retrieved from the commit (as the oneline in the
2796 * script cannot be trusted) in order to normalize the autosquash arrangement.
2798 int rearrange_squash(void)
2800 const char *todo_file
= rebase_path_todo();
2801 struct todo_list todo_list
= TODO_LIST_INIT
;
2802 struct hashmap subject2item
;
2803 int res
= 0, rearranged
= 0, *next
, *tail
, fd
, i
;
2806 fd
= open(todo_file
, O_RDONLY
);
2808 return error_errno(_("could not open '%s'"), todo_file
);
2809 if (strbuf_read(&todo_list
.buf
, fd
, 0) < 0) {
2811 return error(_("could not read '%s'."), todo_file
);
2814 if (parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
) < 0) {
2815 todo_list_release(&todo_list
);
2820 * The hashmap maps onelines to the respective todo list index.
2822 * If any items need to be rearranged, the next[i] value will indicate
2823 * which item was moved directly after the i'th.
2825 * In that case, last[i] will indicate the index of the latest item to
2826 * be moved to appear after the i'th.
2828 hashmap_init(&subject2item
, (hashmap_cmp_fn
) subject2item_cmp
,
2829 NULL
, todo_list
.nr
);
2830 ALLOC_ARRAY(next
, todo_list
.nr
);
2831 ALLOC_ARRAY(tail
, todo_list
.nr
);
2832 ALLOC_ARRAY(subjects
, todo_list
.nr
);
2833 for (i
= 0; i
< todo_list
.nr
; i
++) {
2834 struct strbuf buf
= STRBUF_INIT
;
2835 struct todo_item
*item
= todo_list
.items
+ i
;
2836 const char *commit_buffer
, *subject
, *p
;
2839 struct subject2item_entry
*entry
;
2841 next
[i
] = tail
[i
] = -1;
2842 if (item
->command
>= TODO_EXEC
) {
2847 if (is_fixup(item
->command
)) {
2848 todo_list_release(&todo_list
);
2849 return error(_("the script was already rearranged."));
2852 item
->commit
->util
= item
;
2854 parse_commit(item
->commit
);
2855 commit_buffer
= get_commit_buffer(item
->commit
, NULL
);
2856 find_commit_subject(commit_buffer
, &subject
);
2857 format_subject(&buf
, subject
, " ");
2858 subject
= subjects
[i
] = strbuf_detach(&buf
, &subject_len
);
2859 unuse_commit_buffer(item
->commit
, commit_buffer
);
2860 if ((skip_prefix(subject
, "fixup! ", &p
) ||
2861 skip_prefix(subject
, "squash! ", &p
))) {
2862 struct commit
*commit2
;
2867 if (!skip_prefix(p
, "fixup! ", &p
) &&
2868 !skip_prefix(p
, "squash! ", &p
))
2872 if ((entry
= hashmap_get_from_hash(&subject2item
,
2874 /* found by title */
2876 else if (!strchr(p
, ' ') &&
2878 lookup_commit_reference_by_name(p
)) &&
2880 /* found by commit name */
2881 i2
= (struct todo_item
*)commit2
->util
2884 /* copy can be a prefix of the commit subject */
2885 for (i2
= 0; i2
< i
; i2
++)
2887 starts_with(subjects
[i2
], p
))
2895 todo_list
.items
[i
].command
=
2896 starts_with(subject
, "fixup!") ?
2897 TODO_FIXUP
: TODO_SQUASH
;
2903 } else if (!hashmap_get_from_hash(&subject2item
,
2904 strhash(subject
), subject
)) {
2905 FLEX_ALLOC_MEM(entry
, subject
, subject
, subject_len
);
2907 hashmap_entry_init(entry
, strhash(entry
->subject
));
2908 hashmap_put(&subject2item
, entry
);
2913 struct strbuf buf
= STRBUF_INIT
;
2915 for (i
= 0; i
< todo_list
.nr
; i
++) {
2916 enum todo_command command
= todo_list
.items
[i
].command
;
2920 * Initially, all commands are 'pick's. If it is a
2921 * fixup or a squash now, we have rearranged it.
2923 if (is_fixup(command
))
2927 int offset
= todo_list
.items
[cur
].offset_in_buf
;
2928 int end_offset
= cur
+ 1 < todo_list
.nr
?
2929 todo_list
.items
[cur
+ 1].offset_in_buf
:
2931 char *bol
= todo_list
.buf
.buf
+ offset
;
2932 char *eol
= todo_list
.buf
.buf
+ end_offset
;
2934 /* replace 'pick', by 'fixup' or 'squash' */
2935 command
= todo_list
.items
[cur
].command
;
2936 if (is_fixup(command
)) {
2938 todo_command_info
[command
].str
);
2939 bol
+= strcspn(bol
, " \t");
2942 strbuf_add(&buf
, bol
, eol
- bol
);
2948 res
= rewrite_file(todo_file
, buf
.buf
, buf
.len
);
2949 strbuf_release(&buf
);
2954 for (i
= 0; i
< todo_list
.nr
; i
++)
2957 hashmap_free(&subject2item
, 1);
2958 todo_list_release(&todo_list
);