5 #include "object-store.h"
10 #include "run-command.h"
13 #include "cache-tree.h"
17 #include "merge-recursive.h"
19 #include "argv-array.h"
23 #include "wt-status.h"
25 #include "notes-utils.h"
27 #include "unpack-trees.h"
31 #include "commit-slab.h"
34 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
36 const char sign_off_header
[] = "Signed-off-by: ";
37 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
39 GIT_PATH_FUNC(git_path_commit_editmsg
, "COMMIT_EDITMSG")
41 GIT_PATH_FUNC(git_path_seq_dir
, "sequencer")
43 static GIT_PATH_FUNC(git_path_todo_file
, "sequencer/todo")
44 static GIT_PATH_FUNC(git_path_opts_file
, "sequencer/opts")
45 static GIT_PATH_FUNC(git_path_head_file
, "sequencer/head")
46 static GIT_PATH_FUNC(git_path_abort_safety_file
, "sequencer/abort-safety")
48 static GIT_PATH_FUNC(rebase_path
, "rebase-merge")
50 * The file containing rebase commands, comments, and empty lines.
51 * This file is created by "git rebase -i" then edited by the user. As
52 * the lines are processed, they are removed from the front of this
53 * file and written to the tail of 'done'.
55 static GIT_PATH_FUNC(rebase_path_todo
, "rebase-merge/git-rebase-todo")
57 * The rebase command lines that have already been processed. A line
58 * is moved here when it is first handled, before any associated user
61 static GIT_PATH_FUNC(rebase_path_done
, "rebase-merge/done")
63 * The file to keep track of how many commands were already processed (e.g.
66 static GIT_PATH_FUNC(rebase_path_msgnum
, "rebase-merge/msgnum");
68 * The file to keep track of how many commands are to be processed in total
69 * (e.g. for the prompt).
71 static GIT_PATH_FUNC(rebase_path_msgtotal
, "rebase-merge/end");
73 * The commit message that is planned to be used for any changes that
74 * need to be committed following a user interaction.
76 static GIT_PATH_FUNC(rebase_path_message
, "rebase-merge/message")
78 * The file into which is accumulated the suggested commit message for
79 * squash/fixup commands. When the first of a series of squash/fixups
80 * is seen, the file is created and the commit message from the
81 * previous commit and from the first squash/fixup commit are written
82 * to it. The commit message for each subsequent squash/fixup commit
83 * is appended to the file as it is processed.
85 static GIT_PATH_FUNC(rebase_path_squash_msg
, "rebase-merge/message-squash")
87 * If the current series of squash/fixups has not yet included a squash
88 * command, then this file exists and holds the commit message of the
89 * original "pick" commit. (If the series ends without a "squash"
90 * command, then this can be used as the commit message of the combined
91 * commit without opening the editor.)
93 static GIT_PATH_FUNC(rebase_path_fixup_msg
, "rebase-merge/message-fixup")
95 * This file contains the list fixup/squash commands that have been
96 * accumulated into message-fixup or message-squash so far.
98 static GIT_PATH_FUNC(rebase_path_current_fixups
, "rebase-merge/current-fixups")
100 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
101 * GIT_AUTHOR_DATE that will be used for the commit that is currently
104 static GIT_PATH_FUNC(rebase_path_author_script
, "rebase-merge/author-script")
106 * When an "edit" rebase command is being processed, the SHA1 of the
107 * commit to be edited is recorded in this file. When "git rebase
108 * --continue" is executed, if there are any staged changes then they
109 * will be amended to the HEAD commit, but only provided the HEAD
110 * commit is still the commit to be edited. When any other rebase
111 * command is processed, this file is deleted.
113 static GIT_PATH_FUNC(rebase_path_amend
, "rebase-merge/amend")
115 * When we stop at a given patch via the "edit" command, this file contains
116 * the abbreviated commit name of the corresponding patch.
118 static GIT_PATH_FUNC(rebase_path_stopped_sha
, "rebase-merge/stopped-sha")
120 * For the post-rewrite hook, we make a list of rewritten commits and
121 * their new sha1s. The rewritten-pending list keeps the sha1s of
122 * commits that have been processed, but not committed yet,
123 * e.g. because they are waiting for a 'squash' command.
125 static GIT_PATH_FUNC(rebase_path_rewritten_list
, "rebase-merge/rewritten-list")
126 static GIT_PATH_FUNC(rebase_path_rewritten_pending
,
127 "rebase-merge/rewritten-pending")
130 * The path of the file containig the OID of the "squash onto" commit, i.e.
131 * the dummy commit used for `reset [new root]`.
133 static GIT_PATH_FUNC(rebase_path_squash_onto
, "rebase-merge/squash-onto")
136 * The path of the file listing refs that need to be deleted after the rebase
137 * finishes. This is used by the `label` command to record the need for cleanup.
139 static GIT_PATH_FUNC(rebase_path_refs_to_delete
, "rebase-merge/refs-to-delete")
142 * The following files are written by git-rebase just after parsing the
143 * command-line (and are only consumed, not modified, by the sequencer).
145 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt
, "rebase-merge/gpg_sign_opt")
146 static GIT_PATH_FUNC(rebase_path_orig_head
, "rebase-merge/orig-head")
147 static GIT_PATH_FUNC(rebase_path_verbose
, "rebase-merge/verbose")
148 static GIT_PATH_FUNC(rebase_path_signoff
, "rebase-merge/signoff")
149 static GIT_PATH_FUNC(rebase_path_head_name
, "rebase-merge/head-name")
150 static GIT_PATH_FUNC(rebase_path_onto
, "rebase-merge/onto")
151 static GIT_PATH_FUNC(rebase_path_autostash
, "rebase-merge/autostash")
152 static GIT_PATH_FUNC(rebase_path_strategy
, "rebase-merge/strategy")
153 static GIT_PATH_FUNC(rebase_path_strategy_opts
, "rebase-merge/strategy_opts")
154 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate
, "rebase-merge/allow_rerere_autoupdate")
156 static int git_sequencer_config(const char *k
, const char *v
, void *cb
)
158 struct replay_opts
*opts
= cb
;
161 if (!strcmp(k
, "commit.cleanup")) {
164 status
= git_config_string(&s
, k
, v
);
168 if (!strcmp(s
, "verbatim"))
169 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
170 else if (!strcmp(s
, "whitespace"))
171 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
172 else if (!strcmp(s
, "strip"))
173 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_ALL
;
174 else if (!strcmp(s
, "scissors"))
175 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
177 warning(_("invalid commit message cleanup mode '%s'"),
184 if (!strcmp(k
, "commit.gpgsign")) {
185 opts
->gpg_sign
= git_config_bool(k
, v
) ? xstrdup("") : NULL
;
189 status
= git_gpg_config(k
, v
, NULL
);
193 return git_diff_basic_config(k
, v
, NULL
);
196 void sequencer_init_config(struct replay_opts
*opts
)
198 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
199 git_config(git_sequencer_config
, opts
);
202 static inline int is_rebase_i(const struct replay_opts
*opts
)
204 return opts
->action
== REPLAY_INTERACTIVE_REBASE
;
207 static const char *get_dir(const struct replay_opts
*opts
)
209 if (is_rebase_i(opts
))
210 return rebase_path();
211 return git_path_seq_dir();
214 static const char *get_todo_path(const struct replay_opts
*opts
)
216 if (is_rebase_i(opts
))
217 return rebase_path_todo();
218 return git_path_todo_file();
222 * Returns 0 for non-conforming footer
223 * Returns 1 for conforming footer
224 * Returns 2 when sob exists within conforming footer
225 * Returns 3 when sob exists within conforming footer as last entry
227 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
230 struct trailer_info info
;
232 int found_sob
= 0, found_sob_last
= 0;
234 trailer_info_get(&info
, sb
->buf
);
236 if (info
.trailer_start
== info
.trailer_end
)
239 for (i
= 0; i
< info
.trailer_nr
; i
++)
240 if (sob
&& !strncmp(info
.trailers
[i
], sob
->buf
, sob
->len
)) {
242 if (i
== info
.trailer_nr
- 1)
246 trailer_info_release(&info
);
255 static const char *gpg_sign_opt_quoted(struct replay_opts
*opts
)
257 static struct strbuf buf
= STRBUF_INIT
;
261 sq_quotef(&buf
, "-S%s", opts
->gpg_sign
);
265 int sequencer_remove_state(struct replay_opts
*opts
)
267 struct strbuf buf
= STRBUF_INIT
;
270 if (is_rebase_i(opts
) &&
271 strbuf_read_file(&buf
, rebase_path_refs_to_delete(), 0) > 0) {
274 char *eol
= strchr(p
, '\n');
277 if (delete_ref("(rebase -i) cleanup", p
, NULL
, 0) < 0)
278 warning(_("could not delete '%s'"), p
);
285 free(opts
->gpg_sign
);
286 free(opts
->strategy
);
287 for (i
= 0; i
< opts
->xopts_nr
; i
++)
288 free(opts
->xopts
[i
]);
290 strbuf_release(&opts
->current_fixups
);
293 strbuf_addstr(&buf
, get_dir(opts
));
294 remove_dir_recursively(&buf
, 0);
295 strbuf_release(&buf
);
300 static const char *action_name(const struct replay_opts
*opts
)
302 switch (opts
->action
) {
306 return N_("cherry-pick");
307 case REPLAY_INTERACTIVE_REBASE
:
308 return N_("rebase -i");
310 die(_("Unknown action: %d"), opts
->action
);
313 struct commit_message
{
320 static const char *short_commit_name(struct commit
*commit
)
322 return find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
);
325 static int get_message(struct commit
*commit
, struct commit_message
*out
)
327 const char *abbrev
, *subject
;
330 out
->message
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
331 abbrev
= short_commit_name(commit
);
333 subject_len
= find_commit_subject(out
->message
, &subject
);
335 out
->subject
= xmemdupz(subject
, subject_len
);
336 out
->label
= xstrfmt("%s... %s", abbrev
, out
->subject
);
337 out
->parent_label
= xstrfmt("parent of %s", out
->label
);
342 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
344 free(msg
->parent_label
);
347 unuse_commit_buffer(commit
, msg
->message
);
350 static void print_advice(int show_hint
, struct replay_opts
*opts
)
352 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
355 fprintf(stderr
, "%s\n", msg
);
357 * A conflict has occurred but the porcelain
358 * (typically rebase --interactive) wants to take care
359 * of the commit itself so remove CHERRY_PICK_HEAD
361 unlink(git_path_cherry_pick_head(the_repository
));
367 advise(_("after resolving the conflicts, mark the corrected paths\n"
368 "with 'git add <paths>' or 'git rm <paths>'"));
370 advise(_("after resolving the conflicts, mark the corrected paths\n"
371 "with 'git add <paths>' or 'git rm <paths>'\n"
372 "and commit the result with 'git commit'"));
376 static int write_message(const void *buf
, size_t len
, const char *filename
,
379 struct lock_file msg_file
= LOCK_INIT
;
381 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
, 0);
383 return error_errno(_("could not lock '%s'"), filename
);
384 if (write_in_full(msg_fd
, buf
, len
) < 0) {
385 error_errno(_("could not write to '%s'"), filename
);
386 rollback_lock_file(&msg_file
);
389 if (append_eol
&& write(msg_fd
, "\n", 1) < 0) {
390 error_errno(_("could not write eol to '%s'"), filename
);
391 rollback_lock_file(&msg_file
);
394 if (commit_lock_file(&msg_file
) < 0)
395 return error(_("failed to finalize '%s'"), filename
);
401 * Reads a file that was presumably written by a shell script, i.e. with an
402 * end-of-line marker that needs to be stripped.
404 * Note that only the last end-of-line marker is stripped, consistent with the
405 * behavior of "$(cat path)" in a shell script.
407 * Returns 1 if the file was read, 0 if it could not be read or does not exist.
409 static int read_oneliner(struct strbuf
*buf
,
410 const char *path
, int skip_if_empty
)
412 int orig_len
= buf
->len
;
414 if (!file_exists(path
))
417 if (strbuf_read_file(buf
, path
, 0) < 0) {
418 warning_errno(_("could not read '%s'"), path
);
422 if (buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\n') {
423 if (--buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\r')
425 buf
->buf
[buf
->len
] = '\0';
428 if (skip_if_empty
&& buf
->len
== orig_len
)
434 static struct tree
*empty_tree(void)
436 return lookup_tree(the_hash_algo
->empty_tree
);
439 static int error_dirty_index(struct replay_opts
*opts
)
441 if (read_cache_unmerged())
442 return error_resolve_conflict(_(action_name(opts
)));
444 error(_("your local changes would be overwritten by %s."),
445 _(action_name(opts
)));
447 if (advice_commit_before_merge
)
448 advise(_("commit your changes or stash them to proceed."));
452 static void update_abort_safety_file(void)
454 struct object_id head
;
456 /* Do nothing on a single-pick */
457 if (!file_exists(git_path_seq_dir()))
460 if (!get_oid("HEAD", &head
))
461 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head
));
463 write_file(git_path_abort_safety_file(), "%s", "");
466 static int fast_forward_to(const struct object_id
*to
, const struct object_id
*from
,
467 int unborn
, struct replay_opts
*opts
)
469 struct ref_transaction
*transaction
;
470 struct strbuf sb
= STRBUF_INIT
;
471 struct strbuf err
= STRBUF_INIT
;
474 if (checkout_fast_forward(from
, to
, 1))
475 return -1; /* the callee should have complained already */
477 strbuf_addf(&sb
, _("%s: fast-forward"), _(action_name(opts
)));
479 transaction
= ref_transaction_begin(&err
);
481 ref_transaction_update(transaction
, "HEAD",
482 to
, unborn
&& !is_rebase_i(opts
) ?
485 ref_transaction_commit(transaction
, &err
)) {
486 ref_transaction_free(transaction
);
487 error("%s", err
.buf
);
489 strbuf_release(&err
);
494 strbuf_release(&err
);
495 ref_transaction_free(transaction
);
496 update_abort_safety_file();
500 void append_conflicts_hint(struct strbuf
*msgbuf
)
504 strbuf_addch(msgbuf
, '\n');
505 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
506 for (i
= 0; i
< active_nr
;) {
507 const struct cache_entry
*ce
= active_cache
[i
++];
509 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
510 while (i
< active_nr
&& !strcmp(ce
->name
,
511 active_cache
[i
]->name
))
517 static int do_recursive_merge(struct commit
*base
, struct commit
*next
,
518 const char *base_label
, const char *next_label
,
519 struct object_id
*head
, struct strbuf
*msgbuf
,
520 struct replay_opts
*opts
)
522 struct merge_options o
;
523 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
526 struct lock_file index_lock
= LOCK_INIT
;
528 if (hold_locked_index(&index_lock
, LOCK_REPORT_ON_ERROR
) < 0)
533 init_merge_options(&o
);
534 o
.ancestor
= base
? base_label
: "(empty tree)";
536 o
.branch2
= next
? next_label
: "(empty tree)";
537 if (is_rebase_i(opts
))
539 o
.show_rename_progress
= 1;
541 head_tree
= parse_tree_indirect(head
);
542 next_tree
= next
? get_commit_tree(next
) : empty_tree();
543 base_tree
= base
? get_commit_tree(base
) : empty_tree();
545 for (xopt
= opts
->xopts
; xopt
!= opts
->xopts
+ opts
->xopts_nr
; xopt
++)
546 parse_merge_opt(&o
, *xopt
);
548 clean
= merge_trees(&o
,
550 next_tree
, base_tree
, &result
);
551 if (is_rebase_i(opts
) && clean
<= 0)
552 fputs(o
.obuf
.buf
, stdout
);
553 strbuf_release(&o
.obuf
);
554 diff_warn_rename_limit("merge.renamelimit", o
.needed_rename_limit
, 0);
556 rollback_lock_file(&index_lock
);
560 if (write_locked_index(&the_index
, &index_lock
,
561 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
563 * TRANSLATORS: %s will be "revert", "cherry-pick" or
566 return error(_("%s: Unable to write new index file"),
567 _(action_name(opts
)));
570 append_conflicts_hint(msgbuf
);
575 static struct object_id
*get_cache_tree_oid(void)
577 if (!active_cache_tree
)
578 active_cache_tree
= cache_tree();
580 if (!cache_tree_fully_valid(active_cache_tree
))
581 if (cache_tree_update(&the_index
, 0)) {
582 error(_("unable to update cache tree"));
586 return &active_cache_tree
->oid
;
589 static int is_index_unchanged(void)
591 struct object_id head_oid
, *cache_tree_oid
;
592 struct commit
*head_commit
;
594 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
595 return error(_("could not resolve HEAD commit"));
597 head_commit
= lookup_commit(&head_oid
);
600 * If head_commit is NULL, check_commit, called from
601 * lookup_commit, would have indicated that head_commit is not
602 * a commit object already. parse_commit() will return failure
603 * without further complaints in such a case. Otherwise, if
604 * the commit is invalid, parse_commit() will complain. So
605 * there is nothing for us to say here. Just return failure.
607 if (parse_commit(head_commit
))
610 if (!(cache_tree_oid
= get_cache_tree_oid()))
613 return !oidcmp(cache_tree_oid
, get_commit_tree_oid(head_commit
));
616 static int write_author_script(const char *message
)
618 struct strbuf buf
= STRBUF_INIT
;
623 if (!*message
|| starts_with(message
, "\n")) {
625 /* Missing 'author' line? */
626 unlink(rebase_path_author_script());
628 } else if (skip_prefix(message
, "author ", &message
))
630 else if ((eol
= strchr(message
, '\n')))
635 strbuf_addstr(&buf
, "GIT_AUTHOR_NAME='");
636 while (*message
&& *message
!= '\n' && *message
!= '\r')
637 if (skip_prefix(message
, " <", &message
))
639 else if (*message
!= '\'')
640 strbuf_addch(&buf
, *(message
++));
642 strbuf_addf(&buf
, "'\\\\%c'", *(message
++));
643 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_EMAIL='");
644 while (*message
&& *message
!= '\n' && *message
!= '\r')
645 if (skip_prefix(message
, "> ", &message
))
647 else if (*message
!= '\'')
648 strbuf_addch(&buf
, *(message
++));
650 strbuf_addf(&buf
, "'\\\\%c'", *(message
++));
651 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_DATE='@");
652 while (*message
&& *message
!= '\n' && *message
!= '\r')
653 if (*message
!= '\'')
654 strbuf_addch(&buf
, *(message
++));
656 strbuf_addf(&buf
, "'\\\\%c'", *(message
++));
657 res
= write_message(buf
.buf
, buf
.len
, rebase_path_author_script(), 1);
658 strbuf_release(&buf
);
663 * Read a list of environment variable assignments (such as the author-script
664 * file) into an environment block. Returns -1 on error, 0 otherwise.
666 static int read_env_script(struct argv_array
*env
)
668 struct strbuf script
= STRBUF_INIT
;
672 if (strbuf_read_file(&script
, rebase_path_author_script(), 256) <= 0)
675 for (p
= script
.buf
; *p
; p
++)
676 if (skip_prefix(p
, "'\\\\''", (const char **)&p2
))
677 strbuf_splice(&script
, p
- script
.buf
, p2
- p
, "'", 1);
679 strbuf_splice(&script
, p
-- - script
.buf
, 1, "", 0);
680 else if (*p
== '\n') {
685 for (i
= 0, p
= script
.buf
; i
< count
; i
++) {
686 argv_array_push(env
, p
);
693 static char *get_author(const char *message
)
698 a
= find_commit_header(message
, "author", &len
);
700 return xmemdupz(a
, len
);
705 /* Read author-script and return an ident line (author <email> timestamp) */
706 static const char *read_author_ident(struct strbuf
*buf
)
708 const char *keys
[] = {
709 "GIT_AUTHOR_NAME=", "GIT_AUTHOR_EMAIL=", "GIT_AUTHOR_DATE="
711 char *in
, *out
, *eol
;
714 if (strbuf_read_file(buf
, rebase_path_author_script(), 256) <= 0)
717 /* dequote values and construct ident line in-place */
718 for (in
= out
= buf
->buf
; i
< 3 && in
- buf
->buf
< buf
->len
; i
++) {
719 if (!skip_prefix(in
, keys
[i
], (const char **)&in
)) {
720 warning("could not parse '%s' (looking for '%s'",
721 rebase_path_author_script(), keys
[i
]);
725 eol
= strchrnul(in
, '\n');
730 if (i
> 0) /* separate values by spaces */
732 if (i
== 1) /* email needs to be surrounded by <...> */
734 memmove(out
, in
, len
);
736 if (i
== 1) /* email needs to be surrounded by <...> */
742 warning("could not parse '%s' (looking for '%s')",
743 rebase_path_author_script(), keys
[i
]);
747 buf
->len
= out
- buf
->buf
;
751 static const char staged_changes_advice
[] =
752 N_("you have staged changes in your working tree\n"
753 "If these changes are meant to be squashed into the previous commit, run:\n"
755 " git commit --amend %s\n"
757 "If they are meant to go into a new commit, run:\n"
761 "In both cases, once you're done, continue with:\n"
763 " git rebase --continue\n");
765 #define ALLOW_EMPTY (1<<0)
766 #define EDIT_MSG (1<<1)
767 #define AMEND_MSG (1<<2)
768 #define CLEANUP_MSG (1<<3)
769 #define VERIFY_MSG (1<<4)
770 #define CREATE_ROOT_COMMIT (1<<5)
773 * If we are cherry-pick, and if the merge did not result in
774 * hand-editing, we will hit this commit and inherit the original
775 * author date and name.
777 * If we are revert, or if our cherry-pick results in a hand merge,
778 * we had better say that the current user is responsible for that.
780 * An exception is when run_git_commit() is called during an
781 * interactive rebase: in that case, we will want to retain the
784 static int run_git_commit(const char *defmsg
, struct replay_opts
*opts
,
787 struct child_process cmd
= CHILD_PROCESS_INIT
;
790 if ((flags
& CREATE_ROOT_COMMIT
) && !(flags
& AMEND_MSG
)) {
791 struct strbuf msg
= STRBUF_INIT
, script
= STRBUF_INIT
;
792 const char *author
= is_rebase_i(opts
) ?
793 read_author_ident(&script
) : NULL
;
794 struct object_id root_commit
, *cache_tree_oid
;
798 BUG("root commit without message");
800 if (!(cache_tree_oid
= get_cache_tree_oid()))
804 res
= strbuf_read_file(&msg
, defmsg
, 0);
807 res
= error_errno(_("could not read '%s'"), defmsg
);
809 res
= commit_tree(msg
.buf
, msg
.len
, cache_tree_oid
,
810 NULL
, &root_commit
, author
,
813 strbuf_release(&msg
);
814 strbuf_release(&script
);
816 update_ref(NULL
, "CHERRY_PICK_HEAD", &root_commit
, NULL
,
817 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
);
818 res
= update_ref(NULL
, "HEAD", &root_commit
, NULL
, 0,
819 UPDATE_REFS_MSG_ON_ERR
);
821 return res
< 0 ? error(_("writing root commit")) : 0;
826 if (is_rebase_i(opts
)) {
827 if (!(flags
& EDIT_MSG
)) {
828 cmd
.stdout_to_stderr
= 1;
832 if (read_env_script(&cmd
.env_array
)) {
833 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
835 return error(_(staged_changes_advice
),
840 argv_array_push(&cmd
.args
, "commit");
842 if (!(flags
& VERIFY_MSG
))
843 argv_array_push(&cmd
.args
, "-n");
844 if ((flags
& AMEND_MSG
))
845 argv_array_push(&cmd
.args
, "--amend");
847 argv_array_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
849 argv_array_pushl(&cmd
.args
, "-F", defmsg
, NULL
);
850 else if (!(flags
& EDIT_MSG
))
851 argv_array_pushl(&cmd
.args
, "-C", "HEAD", NULL
);
852 if ((flags
& CLEANUP_MSG
))
853 argv_array_push(&cmd
.args
, "--cleanup=strip");
854 if ((flags
& EDIT_MSG
))
855 argv_array_push(&cmd
.args
, "-e");
856 else if (!(flags
& CLEANUP_MSG
) &&
857 !opts
->signoff
&& !opts
->record_origin
&&
858 git_config_get_value("commit.cleanup", &value
))
859 argv_array_push(&cmd
.args
, "--cleanup=verbatim");
861 if ((flags
& ALLOW_EMPTY
))
862 argv_array_push(&cmd
.args
, "--allow-empty");
864 if (opts
->allow_empty_message
)
865 argv_array_push(&cmd
.args
, "--allow-empty-message");
868 /* hide stderr on success */
869 struct strbuf buf
= STRBUF_INIT
;
870 int rc
= pipe_command(&cmd
,
872 /* stdout is already redirected */
876 fputs(buf
.buf
, stderr
);
877 strbuf_release(&buf
);
881 return run_command(&cmd
);
884 static int rest_is_empty(const struct strbuf
*sb
, int start
)
889 /* Check if the rest is just whitespace and Signed-off-by's. */
890 for (i
= start
; i
< sb
->len
; i
++) {
891 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
897 if (strlen(sign_off_header
) <= eol
- i
&&
898 starts_with(sb
->buf
+ i
, sign_off_header
)) {
903 if (!isspace(sb
->buf
[i
++]))
911 * Find out if the message in the strbuf contains only whitespace and
912 * Signed-off-by lines.
914 int message_is_empty(const struct strbuf
*sb
,
915 enum commit_msg_cleanup_mode cleanup_mode
)
917 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
919 return rest_is_empty(sb
, 0);
923 * See if the user edited the message in the editor or left what
924 * was in the template intact
926 int template_untouched(const struct strbuf
*sb
, const char *template_file
,
927 enum commit_msg_cleanup_mode cleanup_mode
)
929 struct strbuf tmpl
= STRBUF_INIT
;
932 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
935 if (!template_file
|| strbuf_read_file(&tmpl
, template_file
, 0) <= 0)
938 strbuf_stripspace(&tmpl
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
939 if (!skip_prefix(sb
->buf
, tmpl
.buf
, &start
))
941 strbuf_release(&tmpl
);
942 return rest_is_empty(sb
, start
- sb
->buf
);
945 int update_head_with_reflog(const struct commit
*old_head
,
946 const struct object_id
*new_head
,
947 const char *action
, const struct strbuf
*msg
,
950 struct ref_transaction
*transaction
;
951 struct strbuf sb
= STRBUF_INIT
;
956 strbuf_addstr(&sb
, action
);
957 strbuf_addstr(&sb
, ": ");
960 nl
= strchr(msg
->buf
, '\n');
962 strbuf_add(&sb
, msg
->buf
, nl
+ 1 - msg
->buf
);
964 strbuf_addbuf(&sb
, msg
);
965 strbuf_addch(&sb
, '\n');
968 transaction
= ref_transaction_begin(err
);
970 ref_transaction_update(transaction
, "HEAD", new_head
,
971 old_head
? &old_head
->object
.oid
: &null_oid
,
973 ref_transaction_commit(transaction
, err
)) {
976 ref_transaction_free(transaction
);
982 static int run_rewrite_hook(const struct object_id
*oldoid
,
983 const struct object_id
*newoid
)
985 struct child_process proc
= CHILD_PROCESS_INIT
;
988 struct strbuf sb
= STRBUF_INIT
;
990 argv
[0] = find_hook("post-rewrite");
999 proc
.stdout_to_stderr
= 1;
1001 code
= start_command(&proc
);
1004 strbuf_addf(&sb
, "%s %s\n", oid_to_hex(oldoid
), oid_to_hex(newoid
));
1005 sigchain_push(SIGPIPE
, SIG_IGN
);
1006 write_in_full(proc
.in
, sb
.buf
, sb
.len
);
1008 strbuf_release(&sb
);
1009 sigchain_pop(SIGPIPE
);
1010 return finish_command(&proc
);
1013 void commit_post_rewrite(const struct commit
*old_head
,
1014 const struct object_id
*new_head
)
1016 struct notes_rewrite_cfg
*cfg
;
1018 cfg
= init_copy_notes_for_rewrite("amend");
1020 /* we are amending, so old_head is not NULL */
1021 copy_note_for_rewrite(cfg
, &old_head
->object
.oid
, new_head
);
1022 finish_copy_notes_for_rewrite(cfg
, "Notes added by 'git commit --amend'");
1024 run_rewrite_hook(&old_head
->object
.oid
, new_head
);
1027 static int run_prepare_commit_msg_hook(struct strbuf
*msg
, const char *commit
)
1029 struct argv_array hook_env
= ARGV_ARRAY_INIT
;
1033 name
= git_path_commit_editmsg();
1034 if (write_message(msg
->buf
, msg
->len
, name
, 0))
1037 argv_array_pushf(&hook_env
, "GIT_INDEX_FILE=%s", get_index_file());
1038 argv_array_push(&hook_env
, "GIT_EDITOR=:");
1040 ret
= run_hook_le(hook_env
.argv
, "prepare-commit-msg", name
,
1041 "commit", commit
, NULL
);
1043 ret
= run_hook_le(hook_env
.argv
, "prepare-commit-msg", name
,
1046 ret
= error(_("'prepare-commit-msg' hook failed"));
1047 argv_array_clear(&hook_env
);
1052 static const char implicit_ident_advice_noconfig
[] =
1053 N_("Your name and email address were configured automatically based\n"
1054 "on your username and hostname. Please check that they are accurate.\n"
1055 "You can suppress this message by setting them explicitly. Run the\n"
1056 "following command and follow the instructions in your editor to edit\n"
1057 "your configuration file:\n"
1059 " git config --global --edit\n"
1061 "After doing this, you may fix the identity used for this commit with:\n"
1063 " git commit --amend --reset-author\n");
1065 static const char implicit_ident_advice_config
[] =
1066 N_("Your name and email address were configured automatically based\n"
1067 "on your username and hostname. Please check that they are accurate.\n"
1068 "You can suppress this message by setting them explicitly:\n"
1070 " git config --global user.name \"Your Name\"\n"
1071 " git config --global user.email you@example.com\n"
1073 "After doing this, you may fix the identity used for this commit with:\n"
1075 " git commit --amend --reset-author\n");
1077 static const char *implicit_ident_advice(void)
1079 char *user_config
= expand_user_path("~/.gitconfig", 0);
1080 char *xdg_config
= xdg_config_home("config");
1081 int config_exists
= file_exists(user_config
) || file_exists(xdg_config
);
1087 return _(implicit_ident_advice_config
);
1089 return _(implicit_ident_advice_noconfig
);
1093 void print_commit_summary(const char *prefix
, const struct object_id
*oid
,
1096 struct rev_info rev
;
1097 struct commit
*commit
;
1098 struct strbuf format
= STRBUF_INIT
;
1100 struct pretty_print_context pctx
= {0};
1101 struct strbuf author_ident
= STRBUF_INIT
;
1102 struct strbuf committer_ident
= STRBUF_INIT
;
1104 commit
= lookup_commit(oid
);
1106 die(_("couldn't look up newly created commit"));
1107 if (parse_commit(commit
))
1108 die(_("could not parse newly created commit"));
1110 strbuf_addstr(&format
, "format:%h] %s");
1112 format_commit_message(commit
, "%an <%ae>", &author_ident
, &pctx
);
1113 format_commit_message(commit
, "%cn <%ce>", &committer_ident
, &pctx
);
1114 if (strbuf_cmp(&author_ident
, &committer_ident
)) {
1115 strbuf_addstr(&format
, "\n Author: ");
1116 strbuf_addbuf_percentquote(&format
, &author_ident
);
1118 if (flags
& SUMMARY_SHOW_AUTHOR_DATE
) {
1119 struct strbuf date
= STRBUF_INIT
;
1121 format_commit_message(commit
, "%ad", &date
, &pctx
);
1122 strbuf_addstr(&format
, "\n Date: ");
1123 strbuf_addbuf_percentquote(&format
, &date
);
1124 strbuf_release(&date
);
1126 if (!committer_ident_sufficiently_given()) {
1127 strbuf_addstr(&format
, "\n Committer: ");
1128 strbuf_addbuf_percentquote(&format
, &committer_ident
);
1129 if (advice_implicit_identity
) {
1130 strbuf_addch(&format
, '\n');
1131 strbuf_addstr(&format
, implicit_ident_advice());
1134 strbuf_release(&author_ident
);
1135 strbuf_release(&committer_ident
);
1137 init_revisions(&rev
, prefix
);
1138 setup_revisions(0, NULL
, &rev
, NULL
);
1141 rev
.diffopt
.output_format
=
1142 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
1144 rev
.verbose_header
= 1;
1145 rev
.show_root_diff
= 1;
1146 get_commit_format(format
.buf
, &rev
);
1147 rev
.always_show_header
= 0;
1148 rev
.diffopt
.detect_rename
= DIFF_DETECT_RENAME
;
1149 rev
.diffopt
.break_opt
= 0;
1150 diff_setup_done(&rev
.diffopt
);
1152 head
= resolve_ref_unsafe("HEAD", 0, NULL
, NULL
);
1154 die_errno(_("unable to resolve HEAD after creating commit"));
1155 if (!strcmp(head
, "HEAD"))
1156 head
= _("detached HEAD");
1158 skip_prefix(head
, "refs/heads/", &head
);
1159 printf("[%s%s ", head
, (flags
& SUMMARY_INITIAL_COMMIT
) ?
1160 _(" (root-commit)") : "");
1162 if (!log_tree_commit(&rev
, commit
)) {
1163 rev
.always_show_header
= 1;
1164 rev
.use_terminator
= 1;
1165 log_tree_commit(&rev
, commit
);
1168 strbuf_release(&format
);
1171 static int parse_head(struct commit
**head
)
1173 struct commit
*current_head
;
1174 struct object_id oid
;
1176 if (get_oid("HEAD", &oid
)) {
1177 current_head
= NULL
;
1179 current_head
= lookup_commit_reference(&oid
);
1181 return error(_("could not parse HEAD"));
1182 if (oidcmp(&oid
, ¤t_head
->object
.oid
)) {
1183 warning(_("HEAD %s is not a commit!"),
1186 if (parse_commit(current_head
))
1187 return error(_("could not parse HEAD commit"));
1189 *head
= current_head
;
1195 * Try to commit without forking 'git commit'. In some cases we need
1196 * to run 'git commit' to display an error message
1199 * -1 - error unable to commit
1201 * 1 - run 'git commit'
1203 static int try_to_commit(struct strbuf
*msg
, const char *author
,
1204 struct replay_opts
*opts
, unsigned int flags
,
1205 struct object_id
*oid
)
1207 struct object_id tree
;
1208 struct commit
*current_head
;
1209 struct commit_list
*parents
= NULL
;
1210 struct commit_extra_header
*extra
= NULL
;
1211 struct strbuf err
= STRBUF_INIT
;
1212 struct strbuf commit_msg
= STRBUF_INIT
;
1213 char *amend_author
= NULL
;
1214 const char *hook_commit
= NULL
;
1215 enum commit_msg_cleanup_mode cleanup
;
1218 if (parse_head(¤t_head
))
1221 if (flags
& AMEND_MSG
) {
1222 const char *exclude_gpgsig
[] = { "gpgsig", NULL
};
1223 const char *out_enc
= get_commit_output_encoding();
1224 const char *message
= logmsg_reencode(current_head
, NULL
,
1228 const char *orig_message
= NULL
;
1230 find_commit_subject(message
, &orig_message
);
1232 strbuf_addstr(msg
, orig_message
);
1233 hook_commit
= "HEAD";
1235 author
= amend_author
= get_author(message
);
1236 unuse_commit_buffer(current_head
, message
);
1238 res
= error(_("unable to parse commit author"));
1241 parents
= copy_commit_list(current_head
->parents
);
1242 extra
= read_commit_extra_headers(current_head
, exclude_gpgsig
);
1243 } else if (current_head
) {
1244 commit_list_insert(current_head
, &parents
);
1247 if (write_cache_as_tree(&tree
, 0, NULL
)) {
1248 res
= error(_("git write-tree failed to write a tree"));
1252 if (!(flags
& ALLOW_EMPTY
) && !oidcmp(current_head
?
1253 get_commit_tree_oid(current_head
) :
1254 the_hash_algo
->empty_tree
, &tree
)) {
1255 res
= 1; /* run 'git commit' to display error message */
1259 if (find_hook("prepare-commit-msg")) {
1260 res
= run_prepare_commit_msg_hook(msg
, hook_commit
);
1263 if (strbuf_read_file(&commit_msg
, git_path_commit_editmsg(),
1265 res
= error_errno(_("unable to read commit message "
1267 git_path_commit_editmsg());
1273 cleanup
= (flags
& CLEANUP_MSG
) ? COMMIT_MSG_CLEANUP_ALL
:
1274 opts
->default_msg_cleanup
;
1276 if (cleanup
!= COMMIT_MSG_CLEANUP_NONE
)
1277 strbuf_stripspace(msg
, cleanup
== COMMIT_MSG_CLEANUP_ALL
);
1278 if (!opts
->allow_empty_message
&& message_is_empty(msg
, cleanup
)) {
1279 res
= 1; /* run 'git commit' to display error message */
1285 if (commit_tree_extended(msg
->buf
, msg
->len
, &tree
, parents
,
1286 oid
, author
, opts
->gpg_sign
, extra
)) {
1287 res
= error(_("failed to write commit object"));
1291 if (update_head_with_reflog(current_head
, oid
,
1292 getenv("GIT_REFLOG_ACTION"), msg
, &err
)) {
1293 res
= error("%s", err
.buf
);
1297 if (flags
& AMEND_MSG
)
1298 commit_post_rewrite(current_head
, oid
);
1301 free_commit_extra_headers(extra
);
1302 strbuf_release(&err
);
1303 strbuf_release(&commit_msg
);
1309 static int do_commit(const char *msg_file
, const char *author
,
1310 struct replay_opts
*opts
, unsigned int flags
)
1314 if (!(flags
& EDIT_MSG
) && !(flags
& VERIFY_MSG
) &&
1315 !(flags
& CREATE_ROOT_COMMIT
)) {
1316 struct object_id oid
;
1317 struct strbuf sb
= STRBUF_INIT
;
1319 if (msg_file
&& strbuf_read_file(&sb
, msg_file
, 2048) < 0)
1320 return error_errno(_("unable to read commit message "
1324 res
= try_to_commit(msg_file
? &sb
: NULL
, author
, opts
, flags
,
1326 strbuf_release(&sb
);
1328 unlink(git_path_cherry_pick_head(the_repository
));
1329 unlink(git_path_merge_msg(the_repository
));
1330 if (!is_rebase_i(opts
))
1331 print_commit_summary(NULL
, &oid
,
1332 SUMMARY_SHOW_AUTHOR_DATE
);
1337 return run_git_commit(msg_file
, opts
, flags
);
1342 static int is_original_commit_empty(struct commit
*commit
)
1344 const struct object_id
*ptree_oid
;
1346 if (parse_commit(commit
))
1347 return error(_("could not parse commit %s"),
1348 oid_to_hex(&commit
->object
.oid
));
1349 if (commit
->parents
) {
1350 struct commit
*parent
= commit
->parents
->item
;
1351 if (parse_commit(parent
))
1352 return error(_("could not parse parent commit %s"),
1353 oid_to_hex(&parent
->object
.oid
));
1354 ptree_oid
= get_commit_tree_oid(parent
);
1356 ptree_oid
= the_hash_algo
->empty_tree
; /* commit is root */
1359 return !oidcmp(ptree_oid
, get_commit_tree_oid(commit
));
1363 * Do we run "git commit" with "--allow-empty"?
1365 static int allow_empty(struct replay_opts
*opts
, struct commit
*commit
)
1367 int index_unchanged
, empty_commit
;
1372 * (1) we do not allow empty at all and error out.
1374 * (2) we allow ones that were initially empty, but
1375 * forbid the ones that become empty;
1377 * (3) we allow both.
1379 if (!opts
->allow_empty
)
1380 return 0; /* let "git commit" barf as necessary */
1382 index_unchanged
= is_index_unchanged();
1383 if (index_unchanged
< 0)
1384 return index_unchanged
;
1385 if (!index_unchanged
)
1386 return 0; /* we do not have to say --allow-empty */
1388 if (opts
->keep_redundant_commits
)
1391 empty_commit
= is_original_commit_empty(commit
);
1392 if (empty_commit
< 0)
1393 return empty_commit
;
1401 * Note that ordering matters in this enum. Not only must it match the mapping
1402 * below, it is also divided into several sections that matter. When adding
1403 * new commands, make sure you add it in the right section.
1406 /* commands that handle commits */
1413 /* commands that do something else than handling a single commit */
1418 /* commands that do nothing but are counted for reporting progress */
1421 /* comments (not counted for reporting progress) */
1428 } todo_command_info
[] = {
1444 static const char *command_to_string(const enum todo_command command
)
1446 if (command
< TODO_COMMENT
)
1447 return todo_command_info
[command
].str
;
1448 die("Unknown command: %d", command
);
1451 static char command_to_char(const enum todo_command command
)
1453 if (command
< TODO_COMMENT
&& todo_command_info
[command
].c
)
1454 return todo_command_info
[command
].c
;
1455 return comment_line_char
;
1458 static int is_noop(const enum todo_command command
)
1460 return TODO_NOOP
<= command
;
1463 static int is_fixup(enum todo_command command
)
1465 return command
== TODO_FIXUP
|| command
== TODO_SQUASH
;
1468 /* Does this command create a (non-merge) commit? */
1469 static int is_pick_or_similar(enum todo_command command
)
1484 static int update_squash_messages(enum todo_command command
,
1485 struct commit
*commit
, struct replay_opts
*opts
)
1487 struct strbuf buf
= STRBUF_INIT
;
1489 const char *message
, *body
;
1491 if (opts
->current_fixup_count
> 0) {
1492 struct strbuf header
= STRBUF_INIT
;
1495 if (strbuf_read_file(&buf
, rebase_path_squash_msg(), 9) <= 0)
1496 return error(_("could not read '%s'"),
1497 rebase_path_squash_msg());
1499 eol
= buf
.buf
[0] != comment_line_char
?
1500 buf
.buf
: strchrnul(buf
.buf
, '\n');
1502 strbuf_addf(&header
, "%c ", comment_line_char
);
1503 strbuf_addf(&header
, _("This is a combination of %d commits."),
1504 opts
->current_fixup_count
+ 2);
1505 strbuf_splice(&buf
, 0, eol
- buf
.buf
, header
.buf
, header
.len
);
1506 strbuf_release(&header
);
1508 struct object_id head
;
1509 struct commit
*head_commit
;
1510 const char *head_message
, *body
;
1512 if (get_oid("HEAD", &head
))
1513 return error(_("need a HEAD to fixup"));
1514 if (!(head_commit
= lookup_commit_reference(&head
)))
1515 return error(_("could not read HEAD"));
1516 if (!(head_message
= get_commit_buffer(head_commit
, NULL
)))
1517 return error(_("could not read HEAD's commit message"));
1519 find_commit_subject(head_message
, &body
);
1520 if (write_message(body
, strlen(body
),
1521 rebase_path_fixup_msg(), 0)) {
1522 unuse_commit_buffer(head_commit
, head_message
);
1523 return error(_("cannot write '%s'"),
1524 rebase_path_fixup_msg());
1527 strbuf_addf(&buf
, "%c ", comment_line_char
);
1528 strbuf_addf(&buf
, _("This is a combination of %d commits."), 2);
1529 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
1530 strbuf_addstr(&buf
, _("This is the 1st commit message:"));
1531 strbuf_addstr(&buf
, "\n\n");
1532 strbuf_addstr(&buf
, body
);
1534 unuse_commit_buffer(head_commit
, head_message
);
1537 if (!(message
= get_commit_buffer(commit
, NULL
)))
1538 return error(_("could not read commit message of %s"),
1539 oid_to_hex(&commit
->object
.oid
));
1540 find_commit_subject(message
, &body
);
1542 if (command
== TODO_SQUASH
) {
1543 unlink(rebase_path_fixup_msg());
1544 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
1545 strbuf_addf(&buf
, _("This is the commit message #%d:"),
1546 ++opts
->current_fixup_count
);
1547 strbuf_addstr(&buf
, "\n\n");
1548 strbuf_addstr(&buf
, body
);
1549 } else if (command
== TODO_FIXUP
) {
1550 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
1551 strbuf_addf(&buf
, _("The commit message #%d will be skipped:"),
1552 ++opts
->current_fixup_count
);
1553 strbuf_addstr(&buf
, "\n\n");
1554 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
1556 return error(_("unknown command: %d"), command
);
1557 unuse_commit_buffer(commit
, message
);
1559 res
= write_message(buf
.buf
, buf
.len
, rebase_path_squash_msg(), 0);
1560 strbuf_release(&buf
);
1563 strbuf_addf(&opts
->current_fixups
, "%s%s %s",
1564 opts
->current_fixups
.len
? "\n" : "",
1565 command_to_string(command
),
1566 oid_to_hex(&commit
->object
.oid
));
1567 res
= write_message(opts
->current_fixups
.buf
,
1568 opts
->current_fixups
.len
,
1569 rebase_path_current_fixups(), 0);
1575 static void flush_rewritten_pending(void) {
1576 struct strbuf buf
= STRBUF_INIT
;
1577 struct object_id newoid
;
1580 if (strbuf_read_file(&buf
, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ
+ 1) * 2) > 0 &&
1581 !get_oid("HEAD", &newoid
) &&
1582 (out
= fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
1583 char *bol
= buf
.buf
, *eol
;
1586 eol
= strchrnul(bol
, '\n');
1587 fprintf(out
, "%.*s %s\n", (int)(eol
- bol
),
1588 bol
, oid_to_hex(&newoid
));
1594 unlink(rebase_path_rewritten_pending());
1596 strbuf_release(&buf
);
1599 static void record_in_rewritten(struct object_id
*oid
,
1600 enum todo_command next_command
) {
1601 FILE *out
= fopen_or_warn(rebase_path_rewritten_pending(), "a");
1606 fprintf(out
, "%s\n", oid_to_hex(oid
));
1609 if (!is_fixup(next_command
))
1610 flush_rewritten_pending();
1613 static int do_pick_commit(enum todo_command command
, struct commit
*commit
,
1614 struct replay_opts
*opts
, int final_fixup
)
1616 unsigned int flags
= opts
->edit
? EDIT_MSG
: 0;
1617 const char *msg_file
= opts
->edit
? NULL
: git_path_merge_msg(the_repository
);
1618 struct object_id head
;
1619 struct commit
*base
, *next
, *parent
;
1620 const char *base_label
, *next_label
;
1621 char *author
= NULL
;
1622 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
1623 struct strbuf msgbuf
= STRBUF_INIT
;
1624 int res
, unborn
= 0, allow
;
1626 if (opts
->no_commit
) {
1628 * We do not intend to commit immediately. We just want to
1629 * merge the differences in, so let's compute the tree
1630 * that represents the "current" state for merge-recursive
1633 if (write_cache_as_tree(&head
, 0, NULL
))
1634 return error(_("your index file is unmerged."));
1636 unborn
= get_oid("HEAD", &head
);
1637 /* Do we want to generate a root commit? */
1638 if (is_pick_or_similar(command
) && opts
->have_squash_onto
&&
1639 !oidcmp(&head
, &opts
->squash_onto
)) {
1640 if (is_fixup(command
))
1641 return error(_("cannot fixup root commit"));
1642 flags
|= CREATE_ROOT_COMMIT
;
1645 oidcpy(&head
, the_hash_algo
->empty_tree
);
1646 if (index_differs_from(unborn
? empty_tree_oid_hex() : "HEAD",
1648 return error_dirty_index(opts
);
1652 if (!commit
->parents
)
1654 else if (commit
->parents
->next
) {
1655 /* Reverting or cherry-picking a merge commit */
1657 struct commit_list
*p
;
1659 if (!opts
->mainline
)
1660 return error(_("commit %s is a merge but no -m option was given."),
1661 oid_to_hex(&commit
->object
.oid
));
1663 for (cnt
= 1, p
= commit
->parents
;
1664 cnt
!= opts
->mainline
&& p
;
1667 if (cnt
!= opts
->mainline
|| !p
)
1668 return error(_("commit %s does not have parent %d"),
1669 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
1671 } else if (0 < opts
->mainline
)
1672 return error(_("mainline was specified but commit %s is not a merge."),
1673 oid_to_hex(&commit
->object
.oid
));
1675 parent
= commit
->parents
->item
;
1677 if (get_message(commit
, &msg
) != 0)
1678 return error(_("cannot get commit message for %s"),
1679 oid_to_hex(&commit
->object
.oid
));
1681 if (opts
->allow_ff
&& !is_fixup(command
) &&
1682 ((parent
&& !oidcmp(&parent
->object
.oid
, &head
)) ||
1683 (!parent
&& unborn
))) {
1684 if (is_rebase_i(opts
))
1685 write_author_script(msg
.message
);
1686 res
= fast_forward_to(&commit
->object
.oid
, &head
, unborn
,
1688 if (res
|| command
!= TODO_REWORD
)
1690 flags
|= EDIT_MSG
| AMEND_MSG
| VERIFY_MSG
;
1692 goto fast_forward_edit
;
1694 if (parent
&& parse_commit(parent
) < 0)
1695 /* TRANSLATORS: The first %s will be a "todo" command like
1696 "revert" or "pick", the second %s a SHA1. */
1697 return error(_("%s: cannot parse parent commit %s"),
1698 command_to_string(command
),
1699 oid_to_hex(&parent
->object
.oid
));
1702 * "commit" is an existing commit. We would want to apply
1703 * the difference it introduces since its first parent "prev"
1704 * on top of the current HEAD if we are cherry-pick. Or the
1705 * reverse of it if we are revert.
1708 if (command
== TODO_REVERT
) {
1710 base_label
= msg
.label
;
1712 next_label
= msg
.parent_label
;
1713 strbuf_addstr(&msgbuf
, "Revert \"");
1714 strbuf_addstr(&msgbuf
, msg
.subject
);
1715 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
1716 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
1718 if (commit
->parents
&& commit
->parents
->next
) {
1719 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
1720 strbuf_addstr(&msgbuf
, oid_to_hex(&parent
->object
.oid
));
1722 strbuf_addstr(&msgbuf
, ".\n");
1727 base_label
= msg
.parent_label
;
1729 next_label
= msg
.label
;
1731 /* Append the commit log message to msgbuf. */
1732 if (find_commit_subject(msg
.message
, &p
))
1733 strbuf_addstr(&msgbuf
, p
);
1735 if (opts
->record_origin
) {
1736 strbuf_complete_line(&msgbuf
);
1737 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
1738 strbuf_addch(&msgbuf
, '\n');
1739 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
1740 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
1741 strbuf_addstr(&msgbuf
, ")\n");
1743 if (!is_fixup(command
))
1744 author
= get_author(msg
.message
);
1747 if (command
== TODO_REWORD
)
1748 flags
|= EDIT_MSG
| VERIFY_MSG
;
1749 else if (is_fixup(command
)) {
1750 if (update_squash_messages(command
, commit
, opts
))
1754 msg_file
= rebase_path_squash_msg();
1755 else if (file_exists(rebase_path_fixup_msg())) {
1756 flags
|= CLEANUP_MSG
;
1757 msg_file
= rebase_path_fixup_msg();
1759 const char *dest
= git_path_squash_msg(the_repository
);
1761 if (copy_file(dest
, rebase_path_squash_msg(), 0666))
1762 return error(_("could not rename '%s' to '%s'"),
1763 rebase_path_squash_msg(), dest
);
1764 unlink(git_path_merge_msg(the_repository
));
1770 if (opts
->signoff
&& !is_fixup(command
))
1771 append_signoff(&msgbuf
, 0, 0);
1773 if (is_rebase_i(opts
) && write_author_script(msg
.message
) < 0)
1775 else if (!opts
->strategy
|| !strcmp(opts
->strategy
, "recursive") || command
== TODO_REVERT
) {
1776 res
= do_recursive_merge(base
, next
, base_label
, next_label
,
1777 &head
, &msgbuf
, opts
);
1781 res
|= write_message(msgbuf
.buf
, msgbuf
.len
,
1782 git_path_merge_msg(the_repository
), 0);
1784 struct commit_list
*common
= NULL
;
1785 struct commit_list
*remotes
= NULL
;
1787 res
= write_message(msgbuf
.buf
, msgbuf
.len
,
1788 git_path_merge_msg(the_repository
), 0);
1790 commit_list_insert(base
, &common
);
1791 commit_list_insert(next
, &remotes
);
1792 res
|= try_merge_command(opts
->strategy
,
1793 opts
->xopts_nr
, (const char **)opts
->xopts
,
1794 common
, oid_to_hex(&head
), remotes
);
1795 free_commit_list(common
);
1796 free_commit_list(remotes
);
1798 strbuf_release(&msgbuf
);
1801 * If the merge was clean or if it failed due to conflict, we write
1802 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
1803 * However, if the merge did not even start, then we don't want to
1806 if (command
== TODO_PICK
&& !opts
->no_commit
&& (res
== 0 || res
== 1) &&
1807 update_ref(NULL
, "CHERRY_PICK_HEAD", &commit
->object
.oid
, NULL
,
1808 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
1810 if (command
== TODO_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1) &&
1811 update_ref(NULL
, "REVERT_HEAD", &commit
->object
.oid
, NULL
,
1812 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
1816 error(command
== TODO_REVERT
1817 ? _("could not revert %s... %s")
1818 : _("could not apply %s... %s"),
1819 short_commit_name(commit
), msg
.subject
);
1820 print_advice(res
== 1, opts
);
1821 rerere(opts
->allow_rerere_auto
);
1825 allow
= allow_empty(opts
, commit
);
1830 flags
|= ALLOW_EMPTY
;
1831 if (!opts
->no_commit
) {
1833 if (author
|| command
== TODO_REVERT
|| (flags
& AMEND_MSG
))
1834 res
= do_commit(msg_file
, author
, opts
, flags
);
1836 res
= error(_("unable to parse commit author"));
1839 if (!res
&& final_fixup
) {
1840 unlink(rebase_path_fixup_msg());
1841 unlink(rebase_path_squash_msg());
1842 unlink(rebase_path_current_fixups());
1843 strbuf_reset(&opts
->current_fixups
);
1844 opts
->current_fixup_count
= 0;
1848 free_message(commit
, &msg
);
1850 update_abort_safety_file();
1855 static int prepare_revs(struct replay_opts
*opts
)
1858 * picking (but not reverting) ranges (but not individual revisions)
1859 * should be done in reverse
1861 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
1862 opts
->revs
->reverse
^= 1;
1864 if (prepare_revision_walk(opts
->revs
))
1865 return error(_("revision walk setup failed"));
1867 if (!opts
->revs
->commits
)
1868 return error(_("empty commit set passed"));
1872 static int read_and_refresh_cache(struct replay_opts
*opts
)
1874 struct lock_file index_lock
= LOCK_INIT
;
1875 int index_fd
= hold_locked_index(&index_lock
, 0);
1876 if (read_index_preload(&the_index
, NULL
) < 0) {
1877 rollback_lock_file(&index_lock
);
1878 return error(_("git %s: failed to read the index"),
1879 _(action_name(opts
)));
1881 refresh_index(&the_index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
1882 if (index_fd
>= 0) {
1883 if (write_locked_index(&the_index
, &index_lock
,
1884 COMMIT_LOCK
| SKIP_IF_UNCHANGED
)) {
1885 return error(_("git %s: failed to refresh the index"),
1886 _(action_name(opts
)));
1892 enum todo_item_flags
{
1893 TODO_EDIT_MERGE_MSG
= 1
1897 enum todo_command command
;
1898 struct commit
*commit
;
1902 size_t offset_in_buf
;
1907 struct todo_item
*items
;
1908 int nr
, alloc
, current
;
1909 int done_nr
, total_nr
;
1910 struct stat_data stat
;
1913 #define TODO_LIST_INIT { STRBUF_INIT }
1915 static void todo_list_release(struct todo_list
*todo_list
)
1917 strbuf_release(&todo_list
->buf
);
1918 FREE_AND_NULL(todo_list
->items
);
1919 todo_list
->nr
= todo_list
->alloc
= 0;
1922 static struct todo_item
*append_new_todo(struct todo_list
*todo_list
)
1924 ALLOC_GROW(todo_list
->items
, todo_list
->nr
+ 1, todo_list
->alloc
);
1925 return todo_list
->items
+ todo_list
->nr
++;
1928 static int parse_insn_line(struct todo_item
*item
, const char *bol
, char *eol
)
1930 struct object_id commit_oid
;
1931 char *end_of_object_name
;
1932 int i
, saved
, status
, padding
;
1937 bol
+= strspn(bol
, " \t");
1939 if (bol
== eol
|| *bol
== '\r' || *bol
== comment_line_char
) {
1940 item
->command
= TODO_COMMENT
;
1941 item
->commit
= NULL
;
1943 item
->arg_len
= eol
- bol
;
1947 for (i
= 0; i
< TODO_COMMENT
; i
++)
1948 if (skip_prefix(bol
, todo_command_info
[i
].str
, &bol
)) {
1951 } else if (bol
[1] == ' ' && *bol
== todo_command_info
[i
].c
) {
1956 if (i
>= TODO_COMMENT
)
1959 /* Eat up extra spaces/ tabs before object name */
1960 padding
= strspn(bol
, " \t");
1963 if (item
->command
== TODO_NOOP
) {
1965 return error(_("%s does not accept arguments: '%s'"),
1966 command_to_string(item
->command
), bol
);
1967 item
->commit
= NULL
;
1969 item
->arg_len
= eol
- bol
;
1974 return error(_("missing arguments for %s"),
1975 command_to_string(item
->command
));
1977 if (item
->command
== TODO_EXEC
|| item
->command
== TODO_LABEL
||
1978 item
->command
== TODO_RESET
) {
1979 item
->commit
= NULL
;
1981 item
->arg_len
= (int)(eol
- bol
);
1985 if (item
->command
== TODO_MERGE
) {
1986 if (skip_prefix(bol
, "-C", &bol
))
1987 bol
+= strspn(bol
, " \t");
1988 else if (skip_prefix(bol
, "-c", &bol
)) {
1989 bol
+= strspn(bol
, " \t");
1990 item
->flags
|= TODO_EDIT_MERGE_MSG
;
1992 item
->flags
|= TODO_EDIT_MERGE_MSG
;
1993 item
->commit
= NULL
;
1995 item
->arg_len
= (int)(eol
- bol
);
2000 end_of_object_name
= (char *) bol
+ strcspn(bol
, " \t\n");
2001 saved
= *end_of_object_name
;
2002 *end_of_object_name
= '\0';
2003 status
= get_oid(bol
, &commit_oid
);
2004 *end_of_object_name
= saved
;
2006 item
->arg
= end_of_object_name
+ strspn(end_of_object_name
, " \t");
2007 item
->arg_len
= (int)(eol
- item
->arg
);
2012 item
->commit
= lookup_commit_reference(&commit_oid
);
2013 return !item
->commit
;
2016 static int parse_insn_buffer(char *buf
, struct todo_list
*todo_list
)
2018 struct todo_item
*item
;
2019 char *p
= buf
, *next_p
;
2020 int i
, res
= 0, fixup_okay
= file_exists(rebase_path_done());
2022 for (i
= 1; *p
; i
++, p
= next_p
) {
2023 char *eol
= strchrnul(p
, '\n');
2025 next_p
= *eol
? eol
+ 1 /* skip LF */ : eol
;
2027 if (p
!= eol
&& eol
[-1] == '\r')
2028 eol
--; /* strip Carriage Return */
2030 item
= append_new_todo(todo_list
);
2031 item
->offset_in_buf
= p
- todo_list
->buf
.buf
;
2032 if (parse_insn_line(item
, p
, eol
)) {
2033 res
= error(_("invalid line %d: %.*s"),
2034 i
, (int)(eol
- p
), p
);
2035 item
->command
= TODO_NOOP
;
2040 else if (is_fixup(item
->command
))
2041 return error(_("cannot '%s' without a previous commit"),
2042 command_to_string(item
->command
));
2043 else if (!is_noop(item
->command
))
2050 static int count_commands(struct todo_list
*todo_list
)
2054 for (i
= 0; i
< todo_list
->nr
; i
++)
2055 if (todo_list
->items
[i
].command
!= TODO_COMMENT
)
2061 static int get_item_line_offset(struct todo_list
*todo_list
, int index
)
2063 return index
< todo_list
->nr
?
2064 todo_list
->items
[index
].offset_in_buf
: todo_list
->buf
.len
;
2067 static const char *get_item_line(struct todo_list
*todo_list
, int index
)
2069 return todo_list
->buf
.buf
+ get_item_line_offset(todo_list
, index
);
2072 static int get_item_line_length(struct todo_list
*todo_list
, int index
)
2074 return get_item_line_offset(todo_list
, index
+ 1)
2075 - get_item_line_offset(todo_list
, index
);
2078 static ssize_t
strbuf_read_file_or_whine(struct strbuf
*sb
, const char *path
)
2083 fd
= open(path
, O_RDONLY
);
2085 return error_errno(_("could not open '%s'"), path
);
2086 len
= strbuf_read(sb
, fd
, 0);
2089 return error(_("could not read '%s'."), path
);
2093 static int read_populate_todo(struct todo_list
*todo_list
,
2094 struct replay_opts
*opts
)
2097 const char *todo_file
= get_todo_path(opts
);
2100 strbuf_reset(&todo_list
->buf
);
2101 if (strbuf_read_file_or_whine(&todo_list
->buf
, todo_file
) < 0)
2104 res
= stat(todo_file
, &st
);
2106 return error(_("could not stat '%s'"), todo_file
);
2107 fill_stat_data(&todo_list
->stat
, &st
);
2109 res
= parse_insn_buffer(todo_list
->buf
.buf
, todo_list
);
2111 if (is_rebase_i(opts
))
2112 return error(_("please fix this using "
2113 "'git rebase --edit-todo'."));
2114 return error(_("unusable instruction sheet: '%s'"), todo_file
);
2117 if (!todo_list
->nr
&&
2118 (!is_rebase_i(opts
) || !file_exists(rebase_path_done())))
2119 return error(_("no commits parsed."));
2121 if (!is_rebase_i(opts
)) {
2122 enum todo_command valid
=
2123 opts
->action
== REPLAY_PICK
? TODO_PICK
: TODO_REVERT
;
2126 for (i
= 0; i
< todo_list
->nr
; i
++)
2127 if (valid
== todo_list
->items
[i
].command
)
2129 else if (valid
== TODO_PICK
)
2130 return error(_("cannot cherry-pick during a revert."));
2132 return error(_("cannot revert during a cherry-pick."));
2135 if (is_rebase_i(opts
)) {
2136 struct todo_list done
= TODO_LIST_INIT
;
2137 FILE *f
= fopen_or_warn(rebase_path_msgtotal(), "w");
2139 if (strbuf_read_file(&done
.buf
, rebase_path_done(), 0) > 0 &&
2140 !parse_insn_buffer(done
.buf
.buf
, &done
))
2141 todo_list
->done_nr
= count_commands(&done
);
2143 todo_list
->done_nr
= 0;
2145 todo_list
->total_nr
= todo_list
->done_nr
2146 + count_commands(todo_list
);
2147 todo_list_release(&done
);
2150 fprintf(f
, "%d\n", todo_list
->total_nr
);
2158 static int git_config_string_dup(char **dest
,
2159 const char *var
, const char *value
)
2162 return config_error_nonbool(var
);
2164 *dest
= xstrdup(value
);
2168 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
2170 struct replay_opts
*opts
= data
;
2175 else if (!strcmp(key
, "options.no-commit"))
2176 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
2177 else if (!strcmp(key
, "options.edit"))
2178 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
2179 else if (!strcmp(key
, "options.signoff"))
2180 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
2181 else if (!strcmp(key
, "options.record-origin"))
2182 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
2183 else if (!strcmp(key
, "options.allow-ff"))
2184 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
2185 else if (!strcmp(key
, "options.mainline"))
2186 opts
->mainline
= git_config_int(key
, value
);
2187 else if (!strcmp(key
, "options.strategy"))
2188 git_config_string_dup(&opts
->strategy
, key
, value
);
2189 else if (!strcmp(key
, "options.gpg-sign"))
2190 git_config_string_dup(&opts
->gpg_sign
, key
, value
);
2191 else if (!strcmp(key
, "options.strategy-option")) {
2192 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
2193 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
2194 } else if (!strcmp(key
, "options.allow-rerere-auto"))
2195 opts
->allow_rerere_auto
=
2196 git_config_bool_or_int(key
, value
, &error_flag
) ?
2197 RERERE_AUTOUPDATE
: RERERE_NOAUTOUPDATE
;
2199 return error(_("invalid key: %s"), key
);
2202 return error(_("invalid value for %s: %s"), key
, value
);
2207 static void read_strategy_opts(struct replay_opts
*opts
, struct strbuf
*buf
)
2212 if (!read_oneliner(buf
, rebase_path_strategy(), 0))
2214 opts
->strategy
= strbuf_detach(buf
, NULL
);
2215 if (!read_oneliner(buf
, rebase_path_strategy_opts(), 0))
2218 opts
->xopts_nr
= split_cmdline(buf
->buf
, (const char ***)&opts
->xopts
);
2219 for (i
= 0; i
< opts
->xopts_nr
; i
++) {
2220 const char *arg
= opts
->xopts
[i
];
2222 skip_prefix(arg
, "--", &arg
);
2223 opts
->xopts
[i
] = xstrdup(arg
);
2227 static int read_populate_opts(struct replay_opts
*opts
)
2229 if (is_rebase_i(opts
)) {
2230 struct strbuf buf
= STRBUF_INIT
;
2232 if (read_oneliner(&buf
, rebase_path_gpg_sign_opt(), 1)) {
2233 if (!starts_with(buf
.buf
, "-S"))
2236 free(opts
->gpg_sign
);
2237 opts
->gpg_sign
= xstrdup(buf
.buf
+ 2);
2242 if (read_oneliner(&buf
, rebase_path_allow_rerere_autoupdate(), 1)) {
2243 if (!strcmp(buf
.buf
, "--rerere-autoupdate"))
2244 opts
->allow_rerere_auto
= RERERE_AUTOUPDATE
;
2245 else if (!strcmp(buf
.buf
, "--no-rerere-autoupdate"))
2246 opts
->allow_rerere_auto
= RERERE_NOAUTOUPDATE
;
2250 if (file_exists(rebase_path_verbose()))
2253 if (file_exists(rebase_path_signoff())) {
2258 read_strategy_opts(opts
, &buf
);
2259 strbuf_release(&buf
);
2261 if (read_oneliner(&opts
->current_fixups
,
2262 rebase_path_current_fixups(), 1)) {
2263 const char *p
= opts
->current_fixups
.buf
;
2264 opts
->current_fixup_count
= 1;
2265 while ((p
= strchr(p
, '\n'))) {
2266 opts
->current_fixup_count
++;
2271 if (read_oneliner(&buf
, rebase_path_squash_onto(), 0)) {
2272 if (get_oid_hex(buf
.buf
, &opts
->squash_onto
) < 0)
2273 return error(_("unusable squash-onto"));
2274 opts
->have_squash_onto
= 1;
2280 if (!file_exists(git_path_opts_file()))
2283 * The function git_parse_source(), called from git_config_from_file(),
2284 * may die() in case of a syntactically incorrect file. We do not care
2285 * about this case, though, because we wrote that file ourselves, so we
2286 * are pretty certain that it is syntactically correct.
2288 if (git_config_from_file(populate_opts_cb
, git_path_opts_file(), opts
) < 0)
2289 return error(_("malformed options sheet: '%s'"),
2290 git_path_opts_file());
2294 static int walk_revs_populate_todo(struct todo_list
*todo_list
,
2295 struct replay_opts
*opts
)
2297 enum todo_command command
= opts
->action
== REPLAY_PICK
?
2298 TODO_PICK
: TODO_REVERT
;
2299 const char *command_string
= todo_command_info
[command
].str
;
2300 struct commit
*commit
;
2302 if (prepare_revs(opts
))
2305 while ((commit
= get_revision(opts
->revs
))) {
2306 struct todo_item
*item
= append_new_todo(todo_list
);
2307 const char *commit_buffer
= get_commit_buffer(commit
, NULL
);
2308 const char *subject
;
2311 item
->command
= command
;
2312 item
->commit
= commit
;
2315 item
->offset_in_buf
= todo_list
->buf
.len
;
2316 subject_len
= find_commit_subject(commit_buffer
, &subject
);
2317 strbuf_addf(&todo_list
->buf
, "%s %s %.*s\n", command_string
,
2318 short_commit_name(commit
), subject_len
, subject
);
2319 unuse_commit_buffer(commit
, commit_buffer
);
2324 static int create_seq_dir(void)
2326 if (file_exists(git_path_seq_dir())) {
2327 error(_("a cherry-pick or revert is already in progress"));
2328 advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
2330 } else if (mkdir(git_path_seq_dir(), 0777) < 0)
2331 return error_errno(_("could not create sequencer directory '%s'"),
2332 git_path_seq_dir());
2336 static int save_head(const char *head
)
2338 struct lock_file head_lock
= LOCK_INIT
;
2339 struct strbuf buf
= STRBUF_INIT
;
2343 fd
= hold_lock_file_for_update(&head_lock
, git_path_head_file(), 0);
2345 return error_errno(_("could not lock HEAD"));
2346 strbuf_addf(&buf
, "%s\n", head
);
2347 written
= write_in_full(fd
, buf
.buf
, buf
.len
);
2348 strbuf_release(&buf
);
2350 error_errno(_("could not write to '%s'"), git_path_head_file());
2351 rollback_lock_file(&head_lock
);
2354 if (commit_lock_file(&head_lock
) < 0)
2355 return error(_("failed to finalize '%s'"), git_path_head_file());
2359 static int rollback_is_safe(void)
2361 struct strbuf sb
= STRBUF_INIT
;
2362 struct object_id expected_head
, actual_head
;
2364 if (strbuf_read_file(&sb
, git_path_abort_safety_file(), 0) >= 0) {
2366 if (get_oid_hex(sb
.buf
, &expected_head
)) {
2367 strbuf_release(&sb
);
2368 die(_("could not parse %s"), git_path_abort_safety_file());
2370 strbuf_release(&sb
);
2372 else if (errno
== ENOENT
)
2373 oidclr(&expected_head
);
2375 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
2377 if (get_oid("HEAD", &actual_head
))
2378 oidclr(&actual_head
);
2380 return !oidcmp(&actual_head
, &expected_head
);
2383 static int reset_for_rollback(const struct object_id
*oid
)
2385 const char *argv
[4]; /* reset --merge <arg> + NULL */
2388 argv
[1] = "--merge";
2389 argv
[2] = oid_to_hex(oid
);
2391 return run_command_v_opt(argv
, RUN_GIT_CMD
);
2394 static int rollback_single_pick(void)
2396 struct object_id head_oid
;
2398 if (!file_exists(git_path_cherry_pick_head(the_repository
)) &&
2399 !file_exists(git_path_revert_head(the_repository
)))
2400 return error(_("no cherry-pick or revert in progress"));
2401 if (read_ref_full("HEAD", 0, &head_oid
, NULL
))
2402 return error(_("cannot resolve HEAD"));
2403 if (is_null_oid(&head_oid
))
2404 return error(_("cannot abort from a branch yet to be born"));
2405 return reset_for_rollback(&head_oid
);
2408 int sequencer_rollback(struct replay_opts
*opts
)
2411 struct object_id oid
;
2412 struct strbuf buf
= STRBUF_INIT
;
2415 f
= fopen(git_path_head_file(), "r");
2416 if (!f
&& errno
== ENOENT
) {
2418 * There is no multiple-cherry-pick in progress.
2419 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
2420 * a single-cherry-pick in progress, abort that.
2422 return rollback_single_pick();
2425 return error_errno(_("cannot open '%s'"), git_path_head_file());
2426 if (strbuf_getline_lf(&buf
, f
)) {
2427 error(_("cannot read '%s': %s"), git_path_head_file(),
2428 ferror(f
) ? strerror(errno
) : _("unexpected end of file"));
2433 if (parse_oid_hex(buf
.buf
, &oid
, &p
) || *p
!= '\0') {
2434 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
2435 git_path_head_file());
2438 if (is_null_oid(&oid
)) {
2439 error(_("cannot abort from a branch yet to be born"));
2443 if (!rollback_is_safe()) {
2444 /* Do not error, just do not rollback */
2445 warning(_("You seem to have moved HEAD. "
2446 "Not rewinding, check your HEAD!"));
2448 if (reset_for_rollback(&oid
))
2450 strbuf_release(&buf
);
2451 return sequencer_remove_state(opts
);
2453 strbuf_release(&buf
);
2457 static int save_todo(struct todo_list
*todo_list
, struct replay_opts
*opts
)
2459 struct lock_file todo_lock
= LOCK_INIT
;
2460 const char *todo_path
= get_todo_path(opts
);
2461 int next
= todo_list
->current
, offset
, fd
;
2464 * rebase -i writes "git-rebase-todo" without the currently executing
2465 * command, appending it to "done" instead.
2467 if (is_rebase_i(opts
))
2470 fd
= hold_lock_file_for_update(&todo_lock
, todo_path
, 0);
2472 return error_errno(_("could not lock '%s'"), todo_path
);
2473 offset
= get_item_line_offset(todo_list
, next
);
2474 if (write_in_full(fd
, todo_list
->buf
.buf
+ offset
,
2475 todo_list
->buf
.len
- offset
) < 0)
2476 return error_errno(_("could not write to '%s'"), todo_path
);
2477 if (commit_lock_file(&todo_lock
) < 0)
2478 return error(_("failed to finalize '%s'"), todo_path
);
2480 if (is_rebase_i(opts
) && next
> 0) {
2481 const char *done
= rebase_path_done();
2482 int fd
= open(done
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
2487 if (write_in_full(fd
, get_item_line(todo_list
, next
- 1),
2488 get_item_line_length(todo_list
, next
- 1))
2490 ret
= error_errno(_("could not write to '%s'"), done
);
2492 ret
= error_errno(_("failed to finalize '%s'"), done
);
2498 static int save_opts(struct replay_opts
*opts
)
2500 const char *opts_file
= git_path_opts_file();
2503 if (opts
->no_commit
)
2504 res
|= git_config_set_in_file_gently(opts_file
, "options.no-commit", "true");
2506 res
|= git_config_set_in_file_gently(opts_file
, "options.edit", "true");
2508 res
|= git_config_set_in_file_gently(opts_file
, "options.signoff", "true");
2509 if (opts
->record_origin
)
2510 res
|= git_config_set_in_file_gently(opts_file
, "options.record-origin", "true");
2512 res
|= git_config_set_in_file_gently(opts_file
, "options.allow-ff", "true");
2513 if (opts
->mainline
) {
2514 struct strbuf buf
= STRBUF_INIT
;
2515 strbuf_addf(&buf
, "%d", opts
->mainline
);
2516 res
|= git_config_set_in_file_gently(opts_file
, "options.mainline", buf
.buf
);
2517 strbuf_release(&buf
);
2520 res
|= git_config_set_in_file_gently(opts_file
, "options.strategy", opts
->strategy
);
2522 res
|= git_config_set_in_file_gently(opts_file
, "options.gpg-sign", opts
->gpg_sign
);
2525 for (i
= 0; i
< opts
->xopts_nr
; i
++)
2526 res
|= git_config_set_multivar_in_file_gently(opts_file
,
2527 "options.strategy-option",
2528 opts
->xopts
[i
], "^$", 0);
2530 if (opts
->allow_rerere_auto
)
2531 res
|= git_config_set_in_file_gently(opts_file
, "options.allow-rerere-auto",
2532 opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
?
2537 static int make_patch(struct commit
*commit
, struct replay_opts
*opts
)
2539 struct strbuf buf
= STRBUF_INIT
;
2540 struct rev_info log_tree_opt
;
2541 const char *subject
, *p
;
2544 p
= short_commit_name(commit
);
2545 if (write_message(p
, strlen(p
), rebase_path_stopped_sha(), 1) < 0)
2547 if (update_ref("rebase", "REBASE_HEAD", &commit
->object
.oid
,
2548 NULL
, REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2549 res
|= error(_("could not update %s"), "REBASE_HEAD");
2551 strbuf_addf(&buf
, "%s/patch", get_dir(opts
));
2552 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
2553 init_revisions(&log_tree_opt
, NULL
);
2554 log_tree_opt
.abbrev
= 0;
2555 log_tree_opt
.diff
= 1;
2556 log_tree_opt
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
2557 log_tree_opt
.disable_stdin
= 1;
2558 log_tree_opt
.no_commit_id
= 1;
2559 log_tree_opt
.diffopt
.file
= fopen(buf
.buf
, "w");
2560 log_tree_opt
.diffopt
.use_color
= GIT_COLOR_NEVER
;
2561 if (!log_tree_opt
.diffopt
.file
)
2562 res
|= error_errno(_("could not open '%s'"), buf
.buf
);
2564 res
|= log_tree_commit(&log_tree_opt
, commit
);
2565 fclose(log_tree_opt
.diffopt
.file
);
2569 strbuf_addf(&buf
, "%s/message", get_dir(opts
));
2570 if (!file_exists(buf
.buf
)) {
2571 const char *commit_buffer
= get_commit_buffer(commit
, NULL
);
2572 find_commit_subject(commit_buffer
, &subject
);
2573 res
|= write_message(subject
, strlen(subject
), buf
.buf
, 1);
2574 unuse_commit_buffer(commit
, commit_buffer
);
2576 strbuf_release(&buf
);
2581 static int intend_to_amend(void)
2583 struct object_id head
;
2586 if (get_oid("HEAD", &head
))
2587 return error(_("cannot read HEAD"));
2589 p
= oid_to_hex(&head
);
2590 return write_message(p
, strlen(p
), rebase_path_amend(), 1);
2593 static int error_with_patch(struct commit
*commit
,
2594 const char *subject
, int subject_len
,
2595 struct replay_opts
*opts
, int exit_code
, int to_amend
)
2597 if (make_patch(commit
, opts
))
2601 if (intend_to_amend())
2604 fprintf(stderr
, "You can amend the commit now, with\n"
2606 " git commit --amend %s\n"
2608 "Once you are satisfied with your changes, run\n"
2610 " git rebase --continue\n", gpg_sign_opt_quoted(opts
));
2611 } else if (exit_code
)
2612 fprintf(stderr
, "Could not apply %s... %.*s\n",
2613 short_commit_name(commit
), subject_len
, subject
);
2618 static int error_failed_squash(struct commit
*commit
,
2619 struct replay_opts
*opts
, int subject_len
, const char *subject
)
2621 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
2622 return error(_("could not copy '%s' to '%s'"),
2623 rebase_path_squash_msg(), rebase_path_message());
2624 unlink(git_path_merge_msg(the_repository
));
2625 if (copy_file(git_path_merge_msg(the_repository
), rebase_path_message(), 0666))
2626 return error(_("could not copy '%s' to '%s'"),
2627 rebase_path_message(),
2628 git_path_merge_msg(the_repository
));
2629 return error_with_patch(commit
, subject
, subject_len
, opts
, 1, 0);
2632 static int do_exec(const char *command_line
)
2634 struct argv_array child_env
= ARGV_ARRAY_INIT
;
2635 const char *child_argv
[] = { NULL
, NULL
};
2638 fprintf(stderr
, "Executing: %s\n", command_line
);
2639 child_argv
[0] = command_line
;
2640 argv_array_pushf(&child_env
, "GIT_DIR=%s", absolute_path(get_git_dir()));
2641 status
= run_command_v_opt_cd_env(child_argv
, RUN_USING_SHELL
, NULL
,
2644 /* force re-reading of the cache */
2645 if (discard_cache() < 0 || read_cache() < 0)
2646 return error(_("could not read index"));
2648 dirty
= require_clean_work_tree("rebase", NULL
, 1, 1);
2651 warning(_("execution failed: %s\n%s"
2652 "You can fix the problem, and then run\n"
2654 " git rebase --continue\n"
2657 dirty
? N_("and made changes to the index and/or the "
2658 "working tree\n") : "");
2660 /* command not found */
2663 warning(_("execution succeeded: %s\nbut "
2664 "left changes to the index and/or the working tree\n"
2665 "Commit or stash your changes, and then run\n"
2667 " git rebase --continue\n"
2668 "\n"), command_line
);
2672 argv_array_clear(&child_env
);
2677 static int safe_append(const char *filename
, const char *fmt
, ...)
2680 struct lock_file lock
= LOCK_INIT
;
2681 int fd
= hold_lock_file_for_update(&lock
, filename
,
2682 LOCK_REPORT_ON_ERROR
);
2683 struct strbuf buf
= STRBUF_INIT
;
2688 if (strbuf_read_file(&buf
, filename
, 0) < 0 && errno
!= ENOENT
) {
2689 error_errno(_("could not read '%s'"), filename
);
2690 rollback_lock_file(&lock
);
2693 strbuf_complete(&buf
, '\n');
2695 strbuf_vaddf(&buf
, fmt
, ap
);
2698 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
2699 error_errno(_("could not write to '%s'"), filename
);
2700 strbuf_release(&buf
);
2701 rollback_lock_file(&lock
);
2704 if (commit_lock_file(&lock
) < 0) {
2705 strbuf_release(&buf
);
2706 rollback_lock_file(&lock
);
2707 return error(_("failed to finalize '%s'"), filename
);
2710 strbuf_release(&buf
);
2714 static int do_label(const char *name
, int len
)
2716 struct ref_store
*refs
= get_main_ref_store(the_repository
);
2717 struct ref_transaction
*transaction
;
2718 struct strbuf ref_name
= STRBUF_INIT
, err
= STRBUF_INIT
;
2719 struct strbuf msg
= STRBUF_INIT
;
2721 struct object_id head_oid
;
2723 if (len
== 1 && *name
== '#')
2724 return error("Illegal label name: '%.*s'", len
, name
);
2726 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
2727 strbuf_addf(&msg
, "rebase -i (label) '%.*s'", len
, name
);
2729 transaction
= ref_store_transaction_begin(refs
, &err
);
2731 error("%s", err
.buf
);
2733 } else if (get_oid("HEAD", &head_oid
)) {
2734 error(_("could not read HEAD"));
2736 } else if (ref_transaction_update(transaction
, ref_name
.buf
, &head_oid
,
2737 NULL
, 0, msg
.buf
, &err
) < 0 ||
2738 ref_transaction_commit(transaction
, &err
)) {
2739 error("%s", err
.buf
);
2742 ref_transaction_free(transaction
);
2743 strbuf_release(&err
);
2744 strbuf_release(&msg
);
2747 ret
= safe_append(rebase_path_refs_to_delete(),
2748 "%s\n", ref_name
.buf
);
2749 strbuf_release(&ref_name
);
2754 static const char *reflog_message(struct replay_opts
*opts
,
2755 const char *sub_action
, const char *fmt
, ...);
2757 static int do_reset(const char *name
, int len
, struct replay_opts
*opts
)
2759 struct strbuf ref_name
= STRBUF_INIT
;
2760 struct object_id oid
;
2761 struct lock_file lock
= LOCK_INIT
;
2762 struct tree_desc desc
;
2764 struct unpack_trees_options unpack_tree_opts
;
2767 if (hold_locked_index(&lock
, LOCK_REPORT_ON_ERROR
) < 0)
2770 if (len
== 10 && !strncmp("[new root]", name
, len
)) {
2771 if (!opts
->have_squash_onto
) {
2773 if (commit_tree("", 0, the_hash_algo
->empty_tree
,
2774 NULL
, &opts
->squash_onto
,
2776 return error(_("writing fake root commit"));
2777 opts
->have_squash_onto
= 1;
2778 hex
= oid_to_hex(&opts
->squash_onto
);
2779 if (write_message(hex
, strlen(hex
),
2780 rebase_path_squash_onto(), 0))
2781 return error(_("writing squash-onto"));
2783 oidcpy(&oid
, &opts
->squash_onto
);
2785 /* Determine the length of the label */
2786 for (i
= 0; i
< len
; i
++)
2787 if (isspace(name
[i
]))
2790 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
2791 if (get_oid(ref_name
.buf
, &oid
) &&
2792 get_oid(ref_name
.buf
+ strlen("refs/rewritten/"), &oid
)) {
2793 error(_("could not read '%s'"), ref_name
.buf
);
2794 rollback_lock_file(&lock
);
2795 strbuf_release(&ref_name
);
2800 memset(&unpack_tree_opts
, 0, sizeof(unpack_tree_opts
));
2801 setup_unpack_trees_porcelain(&unpack_tree_opts
, "reset");
2802 unpack_tree_opts
.head_idx
= 1;
2803 unpack_tree_opts
.src_index
= &the_index
;
2804 unpack_tree_opts
.dst_index
= &the_index
;
2805 unpack_tree_opts
.fn
= oneway_merge
;
2806 unpack_tree_opts
.merge
= 1;
2807 unpack_tree_opts
.update
= 1;
2809 if (read_cache_unmerged()) {
2810 rollback_lock_file(&lock
);
2811 strbuf_release(&ref_name
);
2812 return error_resolve_conflict(_(action_name(opts
)));
2815 if (!fill_tree_descriptor(&desc
, &oid
)) {
2816 error(_("failed to find tree of %s"), oid_to_hex(&oid
));
2817 rollback_lock_file(&lock
);
2818 free((void *)desc
.buffer
);
2819 strbuf_release(&ref_name
);
2823 if (unpack_trees(1, &desc
, &unpack_tree_opts
)) {
2824 rollback_lock_file(&lock
);
2825 free((void *)desc
.buffer
);
2826 strbuf_release(&ref_name
);
2830 tree
= parse_tree_indirect(&oid
);
2831 prime_cache_tree(&the_index
, tree
);
2833 if (write_locked_index(&the_index
, &lock
, COMMIT_LOCK
) < 0)
2834 ret
= error(_("could not write index"));
2835 free((void *)desc
.buffer
);
2838 ret
= update_ref(reflog_message(opts
, "reset", "'%.*s'",
2839 len
, name
), "HEAD", &oid
,
2840 NULL
, 0, UPDATE_REFS_MSG_ON_ERR
);
2842 strbuf_release(&ref_name
);
2846 static int do_merge(struct commit
*commit
, const char *arg
, int arg_len
,
2847 int flags
, struct replay_opts
*opts
)
2849 int run_commit_flags
= (flags
& TODO_EDIT_MERGE_MSG
) ?
2850 EDIT_MSG
| VERIFY_MSG
: 0;
2851 struct strbuf ref_name
= STRBUF_INIT
;
2852 struct commit
*head_commit
, *merge_commit
, *i
;
2853 struct commit_list
*bases
, *j
, *reversed
= NULL
;
2854 struct merge_options o
;
2855 int merge_arg_len
, oneline_offset
, can_fast_forward
, ret
;
2856 static struct lock_file lock
;
2859 if (hold_locked_index(&lock
, LOCK_REPORT_ON_ERROR
) < 0) {
2864 head_commit
= lookup_commit_reference_by_name("HEAD");
2866 ret
= error(_("cannot merge without a current revision"));
2870 oneline_offset
= arg_len
;
2871 merge_arg_len
= strcspn(arg
, " \t\n");
2872 p
= arg
+ merge_arg_len
;
2873 p
+= strspn(p
, " \t\n");
2874 if (*p
== '#' && (!p
[1] || isspace(p
[1]))) {
2875 p
+= 1 + strspn(p
+ 1, " \t\n");
2876 oneline_offset
= p
- arg
;
2877 } else if (p
- arg
< arg_len
)
2878 BUG("octopus merges are not supported yet: '%s'", p
);
2880 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", merge_arg_len
, arg
);
2881 merge_commit
= lookup_commit_reference_by_name(ref_name
.buf
);
2882 if (!merge_commit
) {
2883 /* fall back to non-rewritten ref or commit */
2884 strbuf_splice(&ref_name
, 0, strlen("refs/rewritten/"), "", 0);
2885 merge_commit
= lookup_commit_reference_by_name(ref_name
.buf
);
2888 if (!merge_commit
) {
2889 ret
= error(_("could not resolve '%s'"), ref_name
.buf
);
2893 if (opts
->have_squash_onto
&&
2894 !oidcmp(&head_commit
->object
.oid
, &opts
->squash_onto
)) {
2896 * When the user tells us to "merge" something into a
2897 * "[new root]", let's simply fast-forward to the merge head.
2899 rollback_lock_file(&lock
);
2900 ret
= fast_forward_to(&merge_commit
->object
.oid
,
2901 &head_commit
->object
.oid
, 0, opts
);
2906 const char *message
= get_commit_buffer(commit
, NULL
);
2911 ret
= error(_("could not get commit message of '%s'"),
2912 oid_to_hex(&commit
->object
.oid
));
2915 write_author_script(message
);
2916 find_commit_subject(message
, &body
);
2918 ret
= write_message(body
, len
, git_path_merge_msg(the_repository
), 0);
2919 unuse_commit_buffer(commit
, message
);
2921 error_errno(_("could not write '%s'"),
2922 git_path_merge_msg(the_repository
));
2926 struct strbuf buf
= STRBUF_INIT
;
2929 strbuf_addf(&buf
, "author %s", git_author_info(0));
2930 write_author_script(buf
.buf
);
2933 if (oneline_offset
< arg_len
) {
2934 p
= arg
+ oneline_offset
;
2935 len
= arg_len
- oneline_offset
;
2937 strbuf_addf(&buf
, "Merge branch '%.*s'",
2938 merge_arg_len
, arg
);
2943 ret
= write_message(p
, len
, git_path_merge_msg(the_repository
), 0);
2944 strbuf_release(&buf
);
2946 error_errno(_("could not write '%s'"),
2947 git_path_merge_msg(the_repository
));
2953 * If HEAD is not identical to the first parent of the original merge
2954 * commit, we cannot fast-forward.
2956 can_fast_forward
= opts
->allow_ff
&& commit
&& commit
->parents
&&
2957 !oidcmp(&commit
->parents
->item
->object
.oid
,
2958 &head_commit
->object
.oid
);
2961 * If the merge head is different from the original one, we cannot
2964 if (can_fast_forward
) {
2965 struct commit_list
*second_parent
= commit
->parents
->next
;
2967 if (second_parent
&& !second_parent
->next
&&
2968 oidcmp(&merge_commit
->object
.oid
,
2969 &second_parent
->item
->object
.oid
))
2970 can_fast_forward
= 0;
2973 if (can_fast_forward
&& commit
->parents
->next
&&
2974 !commit
->parents
->next
->next
&&
2975 !oidcmp(&commit
->parents
->next
->item
->object
.oid
,
2976 &merge_commit
->object
.oid
)) {
2977 rollback_lock_file(&lock
);
2978 ret
= fast_forward_to(&commit
->object
.oid
,
2979 &head_commit
->object
.oid
, 0, opts
);
2983 write_message(oid_to_hex(&merge_commit
->object
.oid
), GIT_SHA1_HEXSZ
,
2984 git_path_merge_head(the_repository
), 0);
2985 write_message("no-ff", 5, git_path_merge_mode(the_repository
), 0);
2987 bases
= get_merge_bases(head_commit
, merge_commit
);
2988 if (bases
&& !oidcmp(&merge_commit
->object
.oid
,
2989 &bases
->item
->object
.oid
)) {
2991 /* skip merging an ancestor of HEAD */
2995 for (j
= bases
; j
; j
= j
->next
)
2996 commit_list_insert(j
->item
, &reversed
);
2997 free_commit_list(bases
);
3000 init_merge_options(&o
);
3002 o
.branch2
= ref_name
.buf
;
3003 o
.buffer_output
= 2;
3005 ret
= merge_recursive(&o
, head_commit
, merge_commit
, reversed
, &i
);
3007 fputs(o
.obuf
.buf
, stdout
);
3008 strbuf_release(&o
.obuf
);
3010 error(_("could not even attempt to merge '%.*s'"),
3011 merge_arg_len
, arg
);
3015 * The return value of merge_recursive() is 1 on clean, and 0 on
3018 * Let's reverse that, so that do_merge() returns 0 upon success and
3019 * 1 upon failed merge (keeping the return value -1 for the cases where
3020 * we will want to reschedule the `merge` command).
3024 if (active_cache_changed
&&
3025 write_locked_index(&the_index
, &lock
, COMMIT_LOCK
)) {
3026 ret
= error(_("merge: Unable to write new index file"));
3030 rollback_lock_file(&lock
);
3032 rerere(opts
->allow_rerere_auto
);
3035 * In case of problems, we now want to return a positive
3036 * value (a negative one would indicate that the `merge`
3037 * command needs to be rescheduled).
3039 ret
= !!run_git_commit(git_path_merge_msg(the_repository
), opts
,
3043 strbuf_release(&ref_name
);
3044 rollback_lock_file(&lock
);
3048 static int is_final_fixup(struct todo_list
*todo_list
)
3050 int i
= todo_list
->current
;
3052 if (!is_fixup(todo_list
->items
[i
].command
))
3055 while (++i
< todo_list
->nr
)
3056 if (is_fixup(todo_list
->items
[i
].command
))
3058 else if (!is_noop(todo_list
->items
[i
].command
))
3063 static enum todo_command
peek_command(struct todo_list
*todo_list
, int offset
)
3067 for (i
= todo_list
->current
+ offset
; i
< todo_list
->nr
; i
++)
3068 if (!is_noop(todo_list
->items
[i
].command
))
3069 return todo_list
->items
[i
].command
;
3074 static int apply_autostash(struct replay_opts
*opts
)
3076 struct strbuf stash_sha1
= STRBUF_INIT
;
3077 struct child_process child
= CHILD_PROCESS_INIT
;
3080 if (!read_oneliner(&stash_sha1
, rebase_path_autostash(), 1)) {
3081 strbuf_release(&stash_sha1
);
3084 strbuf_trim(&stash_sha1
);
3087 child
.no_stdout
= 1;
3088 child
.no_stderr
= 1;
3089 argv_array_push(&child
.args
, "stash");
3090 argv_array_push(&child
.args
, "apply");
3091 argv_array_push(&child
.args
, stash_sha1
.buf
);
3092 if (!run_command(&child
))
3093 fprintf(stderr
, _("Applied autostash.\n"));
3095 struct child_process store
= CHILD_PROCESS_INIT
;
3098 argv_array_push(&store
.args
, "stash");
3099 argv_array_push(&store
.args
, "store");
3100 argv_array_push(&store
.args
, "-m");
3101 argv_array_push(&store
.args
, "autostash");
3102 argv_array_push(&store
.args
, "-q");
3103 argv_array_push(&store
.args
, stash_sha1
.buf
);
3104 if (run_command(&store
))
3105 ret
= error(_("cannot store %s"), stash_sha1
.buf
);
3108 _("Applying autostash resulted in conflicts.\n"
3109 "Your changes are safe in the stash.\n"
3110 "You can run \"git stash pop\" or"
3111 " \"git stash drop\" at any time.\n"));
3114 strbuf_release(&stash_sha1
);
3118 static const char *reflog_message(struct replay_opts
*opts
,
3119 const char *sub_action
, const char *fmt
, ...)
3122 static struct strbuf buf
= STRBUF_INIT
;
3126 strbuf_addstr(&buf
, action_name(opts
));
3128 strbuf_addf(&buf
, " (%s)", sub_action
);
3130 strbuf_addstr(&buf
, ": ");
3131 strbuf_vaddf(&buf
, fmt
, ap
);
3138 static const char rescheduled_advice
[] =
3139 N_("Could not execute the todo command\n"
3143 "It has been rescheduled; To edit the command before continuing, please\n"
3144 "edit the todo list first:\n"
3146 " git rebase --edit-todo\n"
3147 " git rebase --continue\n");
3149 static int pick_commits(struct todo_list
*todo_list
, struct replay_opts
*opts
)
3151 int res
= 0, reschedule
= 0;
3153 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
3155 assert(!(opts
->signoff
|| opts
->no_commit
||
3156 opts
->record_origin
|| opts
->edit
));
3157 if (read_and_refresh_cache(opts
))
3160 while (todo_list
->current
< todo_list
->nr
) {
3161 struct todo_item
*item
= todo_list
->items
+ todo_list
->current
;
3162 if (save_todo(todo_list
, opts
))
3164 if (is_rebase_i(opts
)) {
3165 if (item
->command
!= TODO_COMMENT
) {
3166 FILE *f
= fopen(rebase_path_msgnum(), "w");
3168 todo_list
->done_nr
++;
3171 fprintf(f
, "%d\n", todo_list
->done_nr
);
3174 fprintf(stderr
, "Rebasing (%d/%d)%s",
3176 todo_list
->total_nr
,
3177 opts
->verbose
? "\n" : "\r");
3179 unlink(rebase_path_message());
3180 unlink(rebase_path_author_script());
3181 unlink(rebase_path_stopped_sha());
3182 unlink(rebase_path_amend());
3183 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
3185 if (item
->command
<= TODO_SQUASH
) {
3186 if (is_rebase_i(opts
))
3187 setenv("GIT_REFLOG_ACTION", reflog_message(opts
,
3188 command_to_string(item
->command
), NULL
),
3190 res
= do_pick_commit(item
->command
, item
->commit
,
3191 opts
, is_final_fixup(todo_list
));
3192 if (is_rebase_i(opts
) && res
< 0) {
3194 advise(_(rescheduled_advice
),
3195 get_item_line_length(todo_list
,
3196 todo_list
->current
),
3197 get_item_line(todo_list
,
3198 todo_list
->current
));
3199 todo_list
->current
--;
3200 if (save_todo(todo_list
, opts
))
3203 if (item
->command
== TODO_EDIT
) {
3204 struct commit
*commit
= item
->commit
;
3207 _("Stopped at %s... %.*s\n"),
3208 short_commit_name(commit
),
3209 item
->arg_len
, item
->arg
);
3210 return error_with_patch(commit
,
3211 item
->arg
, item
->arg_len
, opts
, res
,
3214 if (is_rebase_i(opts
) && !res
)
3215 record_in_rewritten(&item
->commit
->object
.oid
,
3216 peek_command(todo_list
, 1));
3217 if (res
&& is_fixup(item
->command
)) {
3220 return error_failed_squash(item
->commit
, opts
,
3221 item
->arg_len
, item
->arg
);
3222 } else if (res
&& is_rebase_i(opts
) && item
->commit
) {
3224 struct object_id oid
;
3227 * If we are rewording and have either
3228 * fast-forwarded already, or are about to
3229 * create a new root commit, we want to amend,
3230 * otherwise we do not.
3232 if (item
->command
== TODO_REWORD
&&
3233 !get_oid("HEAD", &oid
) &&
3234 (!oidcmp(&item
->commit
->object
.oid
, &oid
) ||
3235 (opts
->have_squash_onto
&&
3236 !oidcmp(&opts
->squash_onto
, &oid
))))
3239 return res
| error_with_patch(item
->commit
,
3240 item
->arg
, item
->arg_len
, opts
,
3243 } else if (item
->command
== TODO_EXEC
) {
3244 char *end_of_arg
= (char *)(item
->arg
+ item
->arg_len
);
3245 int saved
= *end_of_arg
;
3249 res
= do_exec(item
->arg
);
3250 *end_of_arg
= saved
;
3252 /* Reread the todo file if it has changed. */
3254 ; /* fall through */
3255 else if (stat(get_todo_path(opts
), &st
))
3256 res
= error_errno(_("could not stat '%s'"),
3257 get_todo_path(opts
));
3258 else if (match_stat_data(&todo_list
->stat
, &st
)) {
3259 todo_list_release(todo_list
);
3260 if (read_populate_todo(todo_list
, opts
))
3261 res
= -1; /* message was printed */
3262 /* `current` will be incremented below */
3263 todo_list
->current
= -1;
3265 } else if (item
->command
== TODO_LABEL
) {
3266 if ((res
= do_label(item
->arg
, item
->arg_len
)))
3268 } else if (item
->command
== TODO_RESET
) {
3269 if ((res
= do_reset(item
->arg
, item
->arg_len
, opts
)))
3271 } else if (item
->command
== TODO_MERGE
) {
3272 if ((res
= do_merge(item
->commit
,
3273 item
->arg
, item
->arg_len
,
3274 item
->flags
, opts
)) < 0)
3276 else if (item
->commit
)
3277 record_in_rewritten(&item
->commit
->object
.oid
,
3278 peek_command(todo_list
, 1));
3280 /* failed with merge conflicts */
3281 return error_with_patch(item
->commit
,
3283 item
->arg_len
, opts
,
3285 } else if (!is_noop(item
->command
))
3286 return error(_("unknown command %d"), item
->command
);
3289 advise(_(rescheduled_advice
),
3290 get_item_line_length(todo_list
,
3291 todo_list
->current
),
3292 get_item_line(todo_list
, todo_list
->current
));
3293 todo_list
->current
--;
3294 if (save_todo(todo_list
, opts
))
3297 return error_with_patch(item
->commit
,
3299 item
->arg_len
, opts
,
3303 todo_list
->current
++;
3308 if (is_rebase_i(opts
)) {
3309 struct strbuf head_ref
= STRBUF_INIT
, buf
= STRBUF_INIT
;
3312 /* Stopped in the middle, as planned? */
3313 if (todo_list
->current
< todo_list
->nr
)
3316 if (read_oneliner(&head_ref
, rebase_path_head_name(), 0) &&
3317 starts_with(head_ref
.buf
, "refs/")) {
3319 struct object_id head
, orig
;
3322 if (get_oid("HEAD", &head
)) {
3323 res
= error(_("cannot read HEAD"));
3325 strbuf_release(&head_ref
);
3326 strbuf_release(&buf
);
3329 if (!read_oneliner(&buf
, rebase_path_orig_head(), 0) ||
3330 get_oid_hex(buf
.buf
, &orig
)) {
3331 res
= error(_("could not read orig-head"));
3332 goto cleanup_head_ref
;
3335 if (!read_oneliner(&buf
, rebase_path_onto(), 0)) {
3336 res
= error(_("could not read 'onto'"));
3337 goto cleanup_head_ref
;
3339 msg
= reflog_message(opts
, "finish", "%s onto %s",
3340 head_ref
.buf
, buf
.buf
);
3341 if (update_ref(msg
, head_ref
.buf
, &head
, &orig
,
3342 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
)) {
3343 res
= error(_("could not update %s"),
3345 goto cleanup_head_ref
;
3347 msg
= reflog_message(opts
, "finish", "returning to %s",
3349 if (create_symref("HEAD", head_ref
.buf
, msg
)) {
3350 res
= error(_("could not update HEAD to %s"),
3352 goto cleanup_head_ref
;
3357 if (opts
->verbose
) {
3358 struct rev_info log_tree_opt
;
3359 struct object_id orig
, head
;
3361 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
3362 init_revisions(&log_tree_opt
, NULL
);
3363 log_tree_opt
.diff
= 1;
3364 log_tree_opt
.diffopt
.output_format
=
3365 DIFF_FORMAT_DIFFSTAT
;
3366 log_tree_opt
.disable_stdin
= 1;
3368 if (read_oneliner(&buf
, rebase_path_orig_head(), 0) &&
3369 !get_oid(buf
.buf
, &orig
) &&
3370 !get_oid("HEAD", &head
)) {
3371 diff_tree_oid(&orig
, &head
, "",
3372 &log_tree_opt
.diffopt
);
3373 log_tree_diff_flush(&log_tree_opt
);
3376 flush_rewritten_pending();
3377 if (!stat(rebase_path_rewritten_list(), &st
) &&
3379 struct child_process child
= CHILD_PROCESS_INIT
;
3380 const char *post_rewrite_hook
=
3381 find_hook("post-rewrite");
3383 child
.in
= open(rebase_path_rewritten_list(), O_RDONLY
);
3385 argv_array_push(&child
.args
, "notes");
3386 argv_array_push(&child
.args
, "copy");
3387 argv_array_push(&child
.args
, "--for-rewrite=rebase");
3388 /* we don't care if this copying failed */
3389 run_command(&child
);
3391 if (post_rewrite_hook
) {
3392 struct child_process hook
= CHILD_PROCESS_INIT
;
3394 hook
.in
= open(rebase_path_rewritten_list(),
3396 hook
.stdout_to_stderr
= 1;
3397 argv_array_push(&hook
.args
, post_rewrite_hook
);
3398 argv_array_push(&hook
.args
, "rebase");
3399 /* we don't care if this hook failed */
3403 apply_autostash(opts
);
3405 fprintf(stderr
, "Successfully rebased and updated %s.\n",
3408 strbuf_release(&buf
);
3409 strbuf_release(&head_ref
);
3413 * Sequence of picks finished successfully; cleanup by
3414 * removing the .git/sequencer directory
3416 return sequencer_remove_state(opts
);
3419 static int continue_single_pick(void)
3421 const char *argv
[] = { "commit", NULL
};
3423 if (!file_exists(git_path_cherry_pick_head(the_repository
)) &&
3424 !file_exists(git_path_revert_head(the_repository
)))
3425 return error(_("no cherry-pick or revert in progress"));
3426 return run_command_v_opt(argv
, RUN_GIT_CMD
);
3429 static int commit_staged_changes(struct replay_opts
*opts
,
3430 struct todo_list
*todo_list
)
3432 unsigned int flags
= ALLOW_EMPTY
| EDIT_MSG
;
3433 unsigned int final_fixup
= 0, is_clean
;
3435 if (has_unstaged_changes(1))
3436 return error(_("cannot rebase: You have unstaged changes."));
3438 is_clean
= !has_uncommitted_changes(0);
3440 if (file_exists(rebase_path_amend())) {
3441 struct strbuf rev
= STRBUF_INIT
;
3442 struct object_id head
, to_amend
;
3444 if (get_oid("HEAD", &head
))
3445 return error(_("cannot amend non-existing commit"));
3446 if (!read_oneliner(&rev
, rebase_path_amend(), 0))
3447 return error(_("invalid file: '%s'"), rebase_path_amend());
3448 if (get_oid_hex(rev
.buf
, &to_amend
))
3449 return error(_("invalid contents: '%s'"),
3450 rebase_path_amend());
3451 if (!is_clean
&& oidcmp(&head
, &to_amend
))
3452 return error(_("\nYou have uncommitted changes in your "
3453 "working tree. Please, commit them\n"
3454 "first and then run 'git rebase "
3455 "--continue' again."));
3457 * When skipping a failed fixup/squash, we need to edit the
3458 * commit message, the current fixup list and count, and if it
3459 * was the last fixup/squash in the chain, we need to clean up
3460 * the commit message and if there was a squash, let the user
3463 if (is_clean
&& !oidcmp(&head
, &to_amend
) &&
3464 opts
->current_fixup_count
> 0 &&
3465 file_exists(rebase_path_stopped_sha())) {
3466 const char *p
= opts
->current_fixups
.buf
;
3467 int len
= opts
->current_fixups
.len
;
3469 opts
->current_fixup_count
--;
3471 BUG("Incorrect current_fixups:\n%s", p
);
3472 while (len
&& p
[len
- 1] != '\n')
3474 strbuf_setlen(&opts
->current_fixups
, len
);
3475 if (write_message(p
, len
, rebase_path_current_fixups(),
3477 return error(_("could not write file: '%s'"),
3478 rebase_path_current_fixups());
3481 * If a fixup/squash in a fixup/squash chain failed, the
3482 * commit message is already correct, no need to commit
3485 * Only if it is the final command in the fixup/squash
3486 * chain, and only if the chain is longer than a single
3487 * fixup/squash command (which was just skipped), do we
3488 * actually need to re-commit with a cleaned up commit
3491 if (opts
->current_fixup_count
> 0 &&
3492 !is_fixup(peek_command(todo_list
, 0))) {
3495 * If there was not a single "squash" in the
3496 * chain, we only need to clean up the commit
3497 * message, no need to bother the user with
3498 * opening the commit message in the editor.
3500 if (!starts_with(p
, "squash ") &&
3501 !strstr(p
, "\nsquash "))
3502 flags
= (flags
& ~EDIT_MSG
) | CLEANUP_MSG
;
3503 } else if (is_fixup(peek_command(todo_list
, 0))) {
3505 * We need to update the squash message to skip
3506 * the latest commit message.
3508 struct commit
*commit
;
3509 const char *path
= rebase_path_squash_msg();
3511 if (parse_head(&commit
) ||
3512 !(p
= get_commit_buffer(commit
, NULL
)) ||
3513 write_message(p
, strlen(p
), path
, 0)) {
3514 unuse_commit_buffer(commit
, p
);
3515 return error(_("could not write file: "
3518 unuse_commit_buffer(commit
, p
);
3522 strbuf_release(&rev
);
3527 const char *cherry_pick_head
= git_path_cherry_pick_head(the_repository
);
3529 if (file_exists(cherry_pick_head
) && unlink(cherry_pick_head
))
3530 return error(_("could not remove CHERRY_PICK_HEAD"));
3535 if (run_git_commit(final_fixup
? NULL
: rebase_path_message(),
3537 return error(_("could not commit staged changes."));
3538 unlink(rebase_path_amend());
3540 unlink(rebase_path_fixup_msg());
3541 unlink(rebase_path_squash_msg());
3543 if (opts
->current_fixup_count
> 0) {
3545 * Whether final fixup or not, we just cleaned up the commit
3548 unlink(rebase_path_current_fixups());
3549 strbuf_reset(&opts
->current_fixups
);
3550 opts
->current_fixup_count
= 0;
3555 int sequencer_continue(struct replay_opts
*opts
)
3557 struct todo_list todo_list
= TODO_LIST_INIT
;
3560 if (read_and_refresh_cache(opts
))
3563 if (read_populate_opts(opts
))
3565 if (is_rebase_i(opts
)) {
3566 if ((res
= read_populate_todo(&todo_list
, opts
)))
3567 goto release_todo_list
;
3568 if (commit_staged_changes(opts
, &todo_list
))
3570 } else if (!file_exists(get_todo_path(opts
)))
3571 return continue_single_pick();
3572 else if ((res
= read_populate_todo(&todo_list
, opts
)))
3573 goto release_todo_list
;
3575 if (!is_rebase_i(opts
)) {
3576 /* Verify that the conflict has been resolved */
3577 if (file_exists(git_path_cherry_pick_head(the_repository
)) ||
3578 file_exists(git_path_revert_head(the_repository
))) {
3579 res
= continue_single_pick();
3581 goto release_todo_list
;
3583 if (index_differs_from("HEAD", NULL
, 0)) {
3584 res
= error_dirty_index(opts
);
3585 goto release_todo_list
;
3587 todo_list
.current
++;
3588 } else if (file_exists(rebase_path_stopped_sha())) {
3589 struct strbuf buf
= STRBUF_INIT
;
3590 struct object_id oid
;
3592 if (read_oneliner(&buf
, rebase_path_stopped_sha(), 1) &&
3593 !get_oid_committish(buf
.buf
, &oid
))
3594 record_in_rewritten(&oid
, peek_command(&todo_list
, 0));
3595 strbuf_release(&buf
);
3598 res
= pick_commits(&todo_list
, opts
);
3600 todo_list_release(&todo_list
);
3604 static int single_pick(struct commit
*cmit
, struct replay_opts
*opts
)
3606 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
3607 return do_pick_commit(opts
->action
== REPLAY_PICK
?
3608 TODO_PICK
: TODO_REVERT
, cmit
, opts
, 0);
3611 int sequencer_pick_revisions(struct replay_opts
*opts
)
3613 struct todo_list todo_list
= TODO_LIST_INIT
;
3614 struct object_id oid
;
3618 if (read_and_refresh_cache(opts
))
3621 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
3622 struct object_id oid
;
3623 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
3625 /* This happens when using --stdin. */
3629 if (!get_oid(name
, &oid
)) {
3630 if (!lookup_commit_reference_gently(&oid
, 1)) {
3631 enum object_type type
= oid_object_info(the_repository
,
3634 return error(_("%s: can't cherry-pick a %s"),
3635 name
, type_name(type
));
3638 return error(_("%s: bad revision"), name
);
3642 * If we were called as "git cherry-pick <commit>", just
3643 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
3644 * REVERT_HEAD, and don't touch the sequencer state.
3645 * This means it is possible to cherry-pick in the middle
3646 * of a cherry-pick sequence.
3648 if (opts
->revs
->cmdline
.nr
== 1 &&
3649 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
3650 opts
->revs
->no_walk
&&
3651 !opts
->revs
->cmdline
.rev
->flags
) {
3652 struct commit
*cmit
;
3653 if (prepare_revision_walk(opts
->revs
))
3654 return error(_("revision walk setup failed"));
3655 cmit
= get_revision(opts
->revs
);
3656 if (!cmit
|| get_revision(opts
->revs
))
3657 return error("BUG: expected exactly one commit from walk");
3658 return single_pick(cmit
, opts
);
3662 * Start a new cherry-pick/ revert sequence; but
3663 * first, make sure that an existing one isn't in
3667 if (walk_revs_populate_todo(&todo_list
, opts
) ||
3668 create_seq_dir() < 0)
3670 if (get_oid("HEAD", &oid
) && (opts
->action
== REPLAY_REVERT
))
3671 return error(_("can't revert as initial commit"));
3672 if (save_head(oid_to_hex(&oid
)))
3674 if (save_opts(opts
))
3676 update_abort_safety_file();
3677 res
= pick_commits(&todo_list
, opts
);
3678 todo_list_release(&todo_list
);
3682 void append_signoff(struct strbuf
*msgbuf
, int ignore_footer
, unsigned flag
)
3684 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
3685 struct strbuf sob
= STRBUF_INIT
;
3688 strbuf_addstr(&sob
, sign_off_header
);
3689 strbuf_addstr(&sob
, fmt_name(getenv("GIT_COMMITTER_NAME"),
3690 getenv("GIT_COMMITTER_EMAIL")));
3691 strbuf_addch(&sob
, '\n');
3694 strbuf_complete_line(msgbuf
);
3697 * If the whole message buffer is equal to the sob, pretend that we
3698 * found a conforming footer with a matching sob
3700 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
3701 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
3704 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
3707 const char *append_newlines
= NULL
;
3708 size_t len
= msgbuf
->len
- ignore_footer
;
3712 * The buffer is completely empty. Leave foom for
3713 * the title and body to be filled in by the user.
3715 append_newlines
= "\n\n";
3716 } else if (len
== 1) {
3718 * Buffer contains a single newline. Add another
3719 * so that we leave room for the title and body.
3721 append_newlines
= "\n";
3722 } else if (msgbuf
->buf
[len
- 2] != '\n') {
3724 * Buffer ends with a single newline. Add another
3725 * so that there is an empty line between the message
3728 append_newlines
= "\n";
3729 } /* else, the buffer already ends with two newlines. */
3731 if (append_newlines
)
3732 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
3733 append_newlines
, strlen(append_newlines
));
3736 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
3737 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
3740 strbuf_release(&sob
);
3743 struct labels_entry
{
3744 struct hashmap_entry entry
;
3745 char label
[FLEX_ARRAY
];
3748 static int labels_cmp(const void *fndata
, const struct labels_entry
*a
,
3749 const struct labels_entry
*b
, const void *key
)
3751 return key
? strcmp(a
->label
, key
) : strcmp(a
->label
, b
->label
);
3754 struct string_entry
{
3755 struct oidmap_entry entry
;
3756 char string
[FLEX_ARRAY
];
3759 struct label_state
{
3760 struct oidmap commit2label
;
3761 struct hashmap labels
;
3765 static const char *label_oid(struct object_id
*oid
, const char *label
,
3766 struct label_state
*state
)
3768 struct labels_entry
*labels_entry
;
3769 struct string_entry
*string_entry
;
3770 struct object_id dummy
;
3774 string_entry
= oidmap_get(&state
->commit2label
, oid
);
3776 return string_entry
->string
;
3779 * For "uninteresting" commits, i.e. commits that are not to be
3780 * rebased, and which can therefore not be labeled, we use a unique
3781 * abbreviation of the commit name. This is slightly more complicated
3782 * than calling find_unique_abbrev() because we also need to make
3783 * sure that the abbreviation does not conflict with any other
3786 * We disallow "interesting" commits to be labeled by a string that
3787 * is a valid full-length hash, to ensure that we always can find an
3788 * abbreviation for any uninteresting commit's names that does not
3789 * clash with any other label.
3794 strbuf_reset(&state
->buf
);
3795 strbuf_grow(&state
->buf
, GIT_SHA1_HEXSZ
);
3796 label
= p
= state
->buf
.buf
;
3798 find_unique_abbrev_r(p
, oid
, default_abbrev
);
3801 * We may need to extend the abbreviated hash so that there is
3802 * no conflicting label.
3804 if (hashmap_get_from_hash(&state
->labels
, strihash(p
), p
)) {
3805 size_t i
= strlen(p
) + 1;
3807 oid_to_hex_r(p
, oid
);
3808 for (; i
< GIT_SHA1_HEXSZ
; i
++) {
3811 if (!hashmap_get_from_hash(&state
->labels
,
3817 } else if (((len
= strlen(label
)) == the_hash_algo
->hexsz
&&
3818 !get_oid_hex(label
, &dummy
)) ||
3819 (len
== 1 && *label
== '#') ||
3820 hashmap_get_from_hash(&state
->labels
,
3821 strihash(label
), label
)) {
3823 * If the label already exists, or if the label is a valid full
3824 * OID, or the label is a '#' (which we use as a separator
3825 * between merge heads and oneline), we append a dash and a
3826 * number to make it unique.
3828 struct strbuf
*buf
= &state
->buf
;
3831 strbuf_add(buf
, label
, len
);
3833 for (i
= 2; ; i
++) {
3834 strbuf_setlen(buf
, len
);
3835 strbuf_addf(buf
, "-%d", i
);
3836 if (!hashmap_get_from_hash(&state
->labels
,
3845 FLEX_ALLOC_STR(labels_entry
, label
, label
);
3846 hashmap_entry_init(labels_entry
, strihash(label
));
3847 hashmap_add(&state
->labels
, labels_entry
);
3849 FLEX_ALLOC_STR(string_entry
, string
, label
);
3850 oidcpy(&string_entry
->entry
.oid
, oid
);
3851 oidmap_put(&state
->commit2label
, string_entry
);
3853 return string_entry
->string
;
3856 static int make_script_with_merges(struct pretty_print_context
*pp
,
3857 struct rev_info
*revs
, FILE *out
,
3860 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
3861 int rebase_cousins
= flags
& TODO_LIST_REBASE_COUSINS
;
3862 struct strbuf buf
= STRBUF_INIT
, oneline
= STRBUF_INIT
;
3863 struct strbuf label
= STRBUF_INIT
;
3864 struct commit_list
*commits
= NULL
, **tail
= &commits
, *iter
;
3865 struct commit_list
*tips
= NULL
, **tips_tail
= &tips
;
3866 struct commit
*commit
;
3867 struct oidmap commit2todo
= OIDMAP_INIT
;
3868 struct string_entry
*entry
;
3869 struct oidset interesting
= OIDSET_INIT
, child_seen
= OIDSET_INIT
,
3870 shown
= OIDSET_INIT
;
3871 struct label_state state
= { OIDMAP_INIT
, { NULL
}, STRBUF_INIT
};
3873 int abbr
= flags
& TODO_LIST_ABBREVIATE_CMDS
;
3874 const char *cmd_pick
= abbr
? "p" : "pick",
3875 *cmd_label
= abbr
? "l" : "label",
3876 *cmd_reset
= abbr
? "t" : "reset",
3877 *cmd_merge
= abbr
? "m" : "merge";
3879 oidmap_init(&commit2todo
, 0);
3880 oidmap_init(&state
.commit2label
, 0);
3881 hashmap_init(&state
.labels
, (hashmap_cmp_fn
) labels_cmp
, NULL
, 0);
3882 strbuf_init(&state
.buf
, 32);
3884 if (revs
->cmdline
.nr
&& (revs
->cmdline
.rev
[0].flags
& BOTTOM
)) {
3885 struct object_id
*oid
= &revs
->cmdline
.rev
[0].item
->oid
;
3886 FLEX_ALLOC_STR(entry
, string
, "onto");
3887 oidcpy(&entry
->entry
.oid
, oid
);
3888 oidmap_put(&state
.commit2label
, entry
);
3893 * - get onelines for all commits
3894 * - gather all branch tips (i.e. 2nd or later parents of merges)
3895 * - label all branch tips
3897 while ((commit
= get_revision(revs
))) {
3898 struct commit_list
*to_merge
;
3900 const char *p1
, *p2
;
3901 struct object_id
*oid
;
3904 tail
= &commit_list_insert(commit
, tail
)->next
;
3905 oidset_insert(&interesting
, &commit
->object
.oid
);
3907 is_empty
= is_original_commit_empty(commit
);
3908 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
))
3911 strbuf_reset(&oneline
);
3912 pretty_print_commit(pp
, commit
, &oneline
);
3914 to_merge
= commit
->parents
? commit
->parents
->next
: NULL
;
3916 /* non-merge commit: easy case */
3918 if (!keep_empty
&& is_empty
)
3919 strbuf_addf(&buf
, "%c ", comment_line_char
);
3920 strbuf_addf(&buf
, "%s %s %s", cmd_pick
,
3921 oid_to_hex(&commit
->object
.oid
),
3924 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
3925 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
3926 oidmap_put(&commit2todo
, entry
);
3931 is_octopus
= to_merge
&& to_merge
->next
;
3934 BUG("Octopus merges not yet supported");
3936 /* Create a label */
3937 strbuf_reset(&label
);
3938 if (skip_prefix(oneline
.buf
, "Merge ", &p1
) &&
3939 (p1
= strchr(p1
, '\'')) &&
3940 (p2
= strchr(++p1
, '\'')))
3941 strbuf_add(&label
, p1
, p2
- p1
);
3942 else if (skip_prefix(oneline
.buf
, "Merge pull request ",
3944 (p1
= strstr(p1
, " from ")))
3945 strbuf_addstr(&label
, p1
+ strlen(" from "));
3947 strbuf_addbuf(&label
, &oneline
);
3949 for (p1
= label
.buf
; *p1
; p1
++)
3954 strbuf_addf(&buf
, "%s -C %s",
3955 cmd_merge
, oid_to_hex(&commit
->object
.oid
));
3957 /* label the tip of merged branch */
3958 oid
= &to_merge
->item
->object
.oid
;
3959 strbuf_addch(&buf
, ' ');
3961 if (!oidset_contains(&interesting
, oid
))
3962 strbuf_addstr(&buf
, label_oid(oid
, NULL
, &state
));
3964 tips_tail
= &commit_list_insert(to_merge
->item
,
3967 strbuf_addstr(&buf
, label_oid(oid
, label
.buf
, &state
));
3969 strbuf_addf(&buf
, " # %s", oneline
.buf
);
3971 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
3972 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
3973 oidmap_put(&commit2todo
, entry
);
3978 * - label branch points
3979 * - add HEAD to the branch tips
3981 for (iter
= commits
; iter
; iter
= iter
->next
) {
3982 struct commit_list
*parent
= iter
->item
->parents
;
3983 for (; parent
; parent
= parent
->next
) {
3984 struct object_id
*oid
= &parent
->item
->object
.oid
;
3985 if (!oidset_contains(&interesting
, oid
))
3987 if (!oidset_contains(&child_seen
, oid
))
3988 oidset_insert(&child_seen
, oid
);
3990 label_oid(oid
, "branch-point", &state
);
3993 /* Add HEAD as implict "tip of branch" */
3995 tips_tail
= &commit_list_insert(iter
->item
,
4000 * Third phase: output the todo list. This is a bit tricky, as we
4001 * want to avoid jumping back and forth between revisions. To
4002 * accomplish that goal, we walk backwards from the branch tips,
4003 * gathering commits not yet shown, reversing the list on the fly,
4004 * then outputting that list (labeling revisions as needed).
4006 fprintf(out
, "%s onto\n", cmd_label
);
4007 for (iter
= tips
; iter
; iter
= iter
->next
) {
4008 struct commit_list
*list
= NULL
, *iter2
;
4010 commit
= iter
->item
;
4011 if (oidset_contains(&shown
, &commit
->object
.oid
))
4013 entry
= oidmap_get(&state
.commit2label
, &commit
->object
.oid
);
4016 fprintf(out
, "\n# Branch %s\n", entry
->string
);
4020 while (oidset_contains(&interesting
, &commit
->object
.oid
) &&
4021 !oidset_contains(&shown
, &commit
->object
.oid
)) {
4022 commit_list_insert(commit
, &list
);
4023 if (!commit
->parents
) {
4027 commit
= commit
->parents
->item
;
4031 fprintf(out
, "%s %s\n", cmd_reset
,
4032 rebase_cousins
? "onto" : "[new root]");
4034 const char *to
= NULL
;
4036 entry
= oidmap_get(&state
.commit2label
,
4037 &commit
->object
.oid
);
4040 else if (!rebase_cousins
)
4041 to
= label_oid(&commit
->object
.oid
, NULL
,
4044 if (!to
|| !strcmp(to
, "onto"))
4045 fprintf(out
, "%s onto\n", cmd_reset
);
4047 strbuf_reset(&oneline
);
4048 pretty_print_commit(pp
, commit
, &oneline
);
4049 fprintf(out
, "%s %s # %s\n",
4050 cmd_reset
, to
, oneline
.buf
);
4054 for (iter2
= list
; iter2
; iter2
= iter2
->next
) {
4055 struct object_id
*oid
= &iter2
->item
->object
.oid
;
4056 entry
= oidmap_get(&commit2todo
, oid
);
4057 /* only show if not already upstream */
4059 fprintf(out
, "%s\n", entry
->string
);
4060 entry
= oidmap_get(&state
.commit2label
, oid
);
4062 fprintf(out
, "%s %s\n",
4063 cmd_label
, entry
->string
);
4064 oidset_insert(&shown
, oid
);
4067 free_commit_list(list
);
4070 free_commit_list(commits
);
4071 free_commit_list(tips
);
4073 strbuf_release(&label
);
4074 strbuf_release(&oneline
);
4075 strbuf_release(&buf
);
4077 oidmap_free(&commit2todo
, 1);
4078 oidmap_free(&state
.commit2label
, 1);
4079 hashmap_free(&state
.labels
, 1);
4080 strbuf_release(&state
.buf
);
4085 int sequencer_make_script(FILE *out
, int argc
, const char **argv
,
4088 char *format
= NULL
;
4089 struct pretty_print_context pp
= {0};
4090 struct strbuf buf
= STRBUF_INIT
;
4091 struct rev_info revs
;
4092 struct commit
*commit
;
4093 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
4094 const char *insn
= flags
& TODO_LIST_ABBREVIATE_CMDS
? "p" : "pick";
4095 int rebase_merges
= flags
& TODO_LIST_REBASE_MERGES
;
4097 init_revisions(&revs
, NULL
);
4098 revs
.verbose_header
= 1;
4100 revs
.max_parents
= 1;
4101 revs
.cherry_mark
= 1;
4104 revs
.right_only
= 1;
4105 revs
.sort_order
= REV_SORT_IN_GRAPH_ORDER
;
4106 revs
.topo_order
= 1;
4108 revs
.pretty_given
= 1;
4109 git_config_get_string("rebase.instructionFormat", &format
);
4110 if (!format
|| !*format
) {
4112 format
= xstrdup("%s");
4114 get_commit_format(format
, &revs
);
4116 pp
.fmt
= revs
.commit_format
;
4117 pp
.output_encoding
= get_log_output_encoding();
4119 if (setup_revisions(argc
, argv
, &revs
, NULL
) > 1)
4120 return error(_("make_script: unhandled options"));
4122 if (prepare_revision_walk(&revs
) < 0)
4123 return error(_("make_script: error preparing revisions"));
4126 return make_script_with_merges(&pp
, &revs
, out
, flags
);
4128 while ((commit
= get_revision(&revs
))) {
4129 int is_empty
= is_original_commit_empty(commit
);
4131 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
))
4134 if (!keep_empty
&& is_empty
)
4135 strbuf_addf(&buf
, "%c ", comment_line_char
);
4136 strbuf_addf(&buf
, "%s %s ", insn
,
4137 oid_to_hex(&commit
->object
.oid
));
4138 pretty_print_commit(&pp
, commit
, &buf
);
4139 strbuf_addch(&buf
, '\n');
4140 fputs(buf
.buf
, out
);
4142 strbuf_release(&buf
);
4147 * Add commands after pick and (series of) squash/fixup commands
4150 int sequencer_add_exec_commands(const char *commands
)
4152 const char *todo_file
= rebase_path_todo();
4153 struct todo_list todo_list
= TODO_LIST_INIT
;
4154 struct todo_item
*item
;
4155 struct strbuf
*buf
= &todo_list
.buf
;
4156 size_t offset
= 0, commands_len
= strlen(commands
);
4159 if (strbuf_read_file(&todo_list
.buf
, todo_file
, 0) < 0)
4160 return error(_("could not read '%s'."), todo_file
);
4162 if (parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
)) {
4163 todo_list_release(&todo_list
);
4164 return error(_("unusable todo list: '%s'"), todo_file
);
4168 /* insert <commands> before every pick except the first one */
4169 for (item
= todo_list
.items
, i
= 0; i
< todo_list
.nr
; i
++, item
++) {
4170 if (item
->command
== TODO_PICK
&& !first
) {
4171 strbuf_insert(buf
, item
->offset_in_buf
+ offset
,
4172 commands
, commands_len
);
4173 offset
+= commands_len
;
4178 /* append final <commands> */
4179 strbuf_add(buf
, commands
, commands_len
);
4181 i
= write_message(buf
->buf
, buf
->len
, todo_file
, 0);
4182 todo_list_release(&todo_list
);
4186 int transform_todos(unsigned flags
)
4188 const char *todo_file
= rebase_path_todo();
4189 struct todo_list todo_list
= TODO_LIST_INIT
;
4190 struct strbuf buf
= STRBUF_INIT
;
4191 struct todo_item
*item
;
4194 if (strbuf_read_file(&todo_list
.buf
, todo_file
, 0) < 0)
4195 return error(_("could not read '%s'."), todo_file
);
4197 if (parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
)) {
4198 todo_list_release(&todo_list
);
4199 return error(_("unusable todo list: '%s'"), todo_file
);
4202 for (item
= todo_list
.items
, i
= 0; i
< todo_list
.nr
; i
++, item
++) {
4203 /* if the item is not a command write it and continue */
4204 if (item
->command
>= TODO_COMMENT
) {
4205 strbuf_addf(&buf
, "%.*s\n", item
->arg_len
, item
->arg
);
4209 /* add command to the buffer */
4210 if (flags
& TODO_LIST_ABBREVIATE_CMDS
)
4211 strbuf_addch(&buf
, command_to_char(item
->command
));
4213 strbuf_addstr(&buf
, command_to_string(item
->command
));
4217 const char *oid
= flags
& TODO_LIST_SHORTEN_IDS
?
4218 short_commit_name(item
->commit
) :
4219 oid_to_hex(&item
->commit
->object
.oid
);
4221 if (item
->command
== TODO_MERGE
) {
4222 if (item
->flags
& TODO_EDIT_MERGE_MSG
)
4223 strbuf_addstr(&buf
, " -c");
4225 strbuf_addstr(&buf
, " -C");
4228 strbuf_addf(&buf
, " %s", oid
);
4231 /* add all the rest */
4233 strbuf_addch(&buf
, '\n');
4235 strbuf_addf(&buf
, " %.*s\n", item
->arg_len
, item
->arg
);
4238 i
= write_message(buf
.buf
, buf
.len
, todo_file
, 0);
4239 todo_list_release(&todo_list
);
4244 CHECK_IGNORE
= 0, CHECK_WARN
, CHECK_ERROR
4247 static enum check_level
get_missing_commit_check_level(void)
4251 if (git_config_get_value("rebase.missingcommitscheck", &value
) ||
4252 !strcasecmp("ignore", value
))
4253 return CHECK_IGNORE
;
4254 if (!strcasecmp("warn", value
))
4256 if (!strcasecmp("error", value
))
4258 warning(_("unrecognized setting %s for option "
4259 "rebase.missingCommitsCheck. Ignoring."), value
);
4260 return CHECK_IGNORE
;
4263 define_commit_slab(commit_seen
, unsigned char);
4265 * Check if the user dropped some commits by mistake
4266 * Behaviour determined by rebase.missingCommitsCheck.
4267 * Check if there is an unrecognized command or a
4268 * bad SHA-1 in a command.
4270 int check_todo_list(void)
4272 enum check_level check_level
= get_missing_commit_check_level();
4273 struct strbuf todo_file
= STRBUF_INIT
;
4274 struct todo_list todo_list
= TODO_LIST_INIT
;
4275 struct strbuf missing
= STRBUF_INIT
;
4276 int advise_to_edit_todo
= 0, res
= 0, i
;
4277 struct commit_seen commit_seen
;
4279 init_commit_seen(&commit_seen
);
4281 strbuf_addstr(&todo_file
, rebase_path_todo());
4282 if (strbuf_read_file_or_whine(&todo_list
.buf
, todo_file
.buf
) < 0) {
4286 advise_to_edit_todo
= res
=
4287 parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
);
4289 if (res
|| check_level
== CHECK_IGNORE
)
4292 /* Mark the commits in git-rebase-todo as seen */
4293 for (i
= 0; i
< todo_list
.nr
; i
++) {
4294 struct commit
*commit
= todo_list
.items
[i
].commit
;
4296 *commit_seen_at(&commit_seen
, commit
) = 1;
4299 todo_list_release(&todo_list
);
4300 strbuf_addstr(&todo_file
, ".backup");
4301 if (strbuf_read_file_or_whine(&todo_list
.buf
, todo_file
.buf
) < 0) {
4305 strbuf_release(&todo_file
);
4306 res
= !!parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
);
4308 /* Find commits in git-rebase-todo.backup yet unseen */
4309 for (i
= todo_list
.nr
- 1; i
>= 0; i
--) {
4310 struct todo_item
*item
= todo_list
.items
+ i
;
4311 struct commit
*commit
= item
->commit
;
4312 if (commit
&& !*commit_seen_at(&commit_seen
, commit
)) {
4313 strbuf_addf(&missing
, " - %s %.*s\n",
4314 short_commit_name(commit
),
4315 item
->arg_len
, item
->arg
);
4316 *commit_seen_at(&commit_seen
, commit
) = 1;
4320 /* Warn about missing commits */
4324 if (check_level
== CHECK_ERROR
)
4325 advise_to_edit_todo
= res
= 1;
4328 _("Warning: some commits may have been dropped accidentally.\n"
4329 "Dropped commits (newer to older):\n"));
4331 /* Make the list user-friendly and display */
4332 fputs(missing
.buf
, stderr
);
4333 strbuf_release(&missing
);
4335 fprintf(stderr
, _("To avoid this message, use \"drop\" to "
4336 "explicitly remove a commit.\n\n"
4337 "Use 'git config rebase.missingCommitsCheck' to change "
4338 "the level of warnings.\n"
4339 "The possible behaviours are: ignore, warn, error.\n\n"));
4342 clear_commit_seen(&commit_seen
);
4343 strbuf_release(&todo_file
);
4344 todo_list_release(&todo_list
);
4346 if (advise_to_edit_todo
)
4348 _("You can fix this with 'git rebase --edit-todo' "
4349 "and then run 'git rebase --continue'.\n"
4350 "Or you can abort the rebase with 'git rebase"
4356 static int rewrite_file(const char *path
, const char *buf
, size_t len
)
4359 int fd
= open(path
, O_WRONLY
| O_TRUNC
);
4361 return error_errno(_("could not open '%s' for writing"), path
);
4362 if (write_in_full(fd
, buf
, len
) < 0)
4363 rc
= error_errno(_("could not write to '%s'"), path
);
4364 if (close(fd
) && !rc
)
4365 rc
= error_errno(_("could not close '%s'"), path
);
4369 /* skip picking commits whose parents are unchanged */
4370 int skip_unnecessary_picks(void)
4372 const char *todo_file
= rebase_path_todo();
4373 struct strbuf buf
= STRBUF_INIT
;
4374 struct todo_list todo_list
= TODO_LIST_INIT
;
4375 struct object_id onto_oid
, *oid
= &onto_oid
, *parent_oid
;
4378 if (!read_oneliner(&buf
, rebase_path_onto(), 0))
4379 return error(_("could not read 'onto'"));
4380 if (get_oid(buf
.buf
, &onto_oid
)) {
4381 strbuf_release(&buf
);
4382 return error(_("need a HEAD to fixup"));
4384 strbuf_release(&buf
);
4386 if (strbuf_read_file_or_whine(&todo_list
.buf
, todo_file
) < 0)
4388 if (parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
) < 0) {
4389 todo_list_release(&todo_list
);
4393 for (i
= 0; i
< todo_list
.nr
; i
++) {
4394 struct todo_item
*item
= todo_list
.items
+ i
;
4396 if (item
->command
>= TODO_NOOP
)
4398 if (item
->command
!= TODO_PICK
)
4400 if (parse_commit(item
->commit
)) {
4401 todo_list_release(&todo_list
);
4402 return error(_("could not parse commit '%s'"),
4403 oid_to_hex(&item
->commit
->object
.oid
));
4405 if (!item
->commit
->parents
)
4406 break; /* root commit */
4407 if (item
->commit
->parents
->next
)
4408 break; /* merge commit */
4409 parent_oid
= &item
->commit
->parents
->item
->object
.oid
;
4410 if (hashcmp(parent_oid
->hash
, oid
->hash
))
4412 oid
= &item
->commit
->object
.oid
;
4415 int offset
= get_item_line_offset(&todo_list
, i
);
4416 const char *done_path
= rebase_path_done();
4418 fd
= open(done_path
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
4420 error_errno(_("could not open '%s' for writing"),
4422 todo_list_release(&todo_list
);
4425 if (write_in_full(fd
, todo_list
.buf
.buf
, offset
) < 0) {
4426 error_errno(_("could not write to '%s'"), done_path
);
4427 todo_list_release(&todo_list
);
4433 if (rewrite_file(rebase_path_todo(), todo_list
.buf
.buf
+ offset
,
4434 todo_list
.buf
.len
- offset
) < 0) {
4435 todo_list_release(&todo_list
);
4439 todo_list
.current
= i
;
4440 if (is_fixup(peek_command(&todo_list
, 0)))
4441 record_in_rewritten(oid
, peek_command(&todo_list
, 0));
4444 todo_list_release(&todo_list
);
4445 printf("%s\n", oid_to_hex(oid
));
4450 struct subject2item_entry
{
4451 struct hashmap_entry entry
;
4453 char subject
[FLEX_ARRAY
];
4456 static int subject2item_cmp(const void *fndata
,
4457 const struct subject2item_entry
*a
,
4458 const struct subject2item_entry
*b
, const void *key
)
4460 return key
? strcmp(a
->subject
, key
) : strcmp(a
->subject
, b
->subject
);
4463 define_commit_slab(commit_todo_item
, struct todo_item
*);
4466 * Rearrange the todo list that has both "pick commit-id msg" and "pick
4467 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
4468 * after the former, and change "pick" to "fixup"/"squash".
4470 * Note that if the config has specified a custom instruction format, each log
4471 * message will have to be retrieved from the commit (as the oneline in the
4472 * script cannot be trusted) in order to normalize the autosquash arrangement.
4474 int rearrange_squash(void)
4476 const char *todo_file
= rebase_path_todo();
4477 struct todo_list todo_list
= TODO_LIST_INIT
;
4478 struct hashmap subject2item
;
4479 int res
= 0, rearranged
= 0, *next
, *tail
, i
;
4481 struct commit_todo_item commit_todo
;
4483 if (strbuf_read_file_or_whine(&todo_list
.buf
, todo_file
) < 0)
4485 if (parse_insn_buffer(todo_list
.buf
.buf
, &todo_list
) < 0) {
4486 todo_list_release(&todo_list
);
4490 init_commit_todo_item(&commit_todo
);
4492 * The hashmap maps onelines to the respective todo list index.
4494 * If any items need to be rearranged, the next[i] value will indicate
4495 * which item was moved directly after the i'th.
4497 * In that case, last[i] will indicate the index of the latest item to
4498 * be moved to appear after the i'th.
4500 hashmap_init(&subject2item
, (hashmap_cmp_fn
) subject2item_cmp
,
4501 NULL
, todo_list
.nr
);
4502 ALLOC_ARRAY(next
, todo_list
.nr
);
4503 ALLOC_ARRAY(tail
, todo_list
.nr
);
4504 ALLOC_ARRAY(subjects
, todo_list
.nr
);
4505 for (i
= 0; i
< todo_list
.nr
; i
++) {
4506 struct strbuf buf
= STRBUF_INIT
;
4507 struct todo_item
*item
= todo_list
.items
+ i
;
4508 const char *commit_buffer
, *subject
, *p
;
4511 struct subject2item_entry
*entry
;
4513 next
[i
] = tail
[i
] = -1;
4514 if (!item
->commit
|| item
->command
== TODO_DROP
) {
4519 if (is_fixup(item
->command
)) {
4520 todo_list_release(&todo_list
);
4521 clear_commit_todo_item(&commit_todo
);
4522 return error(_("the script was already rearranged."));
4525 *commit_todo_item_at(&commit_todo
, item
->commit
) = item
;
4527 parse_commit(item
->commit
);
4528 commit_buffer
= get_commit_buffer(item
->commit
, NULL
);
4529 find_commit_subject(commit_buffer
, &subject
);
4530 format_subject(&buf
, subject
, " ");
4531 subject
= subjects
[i
] = strbuf_detach(&buf
, &subject_len
);
4532 unuse_commit_buffer(item
->commit
, commit_buffer
);
4533 if ((skip_prefix(subject
, "fixup! ", &p
) ||
4534 skip_prefix(subject
, "squash! ", &p
))) {
4535 struct commit
*commit2
;
4540 if (!skip_prefix(p
, "fixup! ", &p
) &&
4541 !skip_prefix(p
, "squash! ", &p
))
4545 if ((entry
= hashmap_get_from_hash(&subject2item
,
4547 /* found by title */
4549 else if (!strchr(p
, ' ') &&
4551 lookup_commit_reference_by_name(p
)) &&
4552 *commit_todo_item_at(&commit_todo
, commit2
))
4553 /* found by commit name */
4554 i2
= *commit_todo_item_at(&commit_todo
, commit2
)
4557 /* copy can be a prefix of the commit subject */
4558 for (i2
= 0; i2
< i
; i2
++)
4560 starts_with(subjects
[i2
], p
))
4568 todo_list
.items
[i
].command
=
4569 starts_with(subject
, "fixup!") ?
4570 TODO_FIXUP
: TODO_SQUASH
;
4576 } else if (!hashmap_get_from_hash(&subject2item
,
4577 strhash(subject
), subject
)) {
4578 FLEX_ALLOC_MEM(entry
, subject
, subject
, subject_len
);
4580 hashmap_entry_init(entry
, strhash(entry
->subject
));
4581 hashmap_put(&subject2item
, entry
);
4586 struct strbuf buf
= STRBUF_INIT
;
4588 for (i
= 0; i
< todo_list
.nr
; i
++) {
4589 enum todo_command command
= todo_list
.items
[i
].command
;
4593 * Initially, all commands are 'pick's. If it is a
4594 * fixup or a squash now, we have rearranged it.
4596 if (is_fixup(command
))
4601 get_item_line(&todo_list
, cur
);
4603 get_item_line(&todo_list
, cur
+ 1);
4605 /* replace 'pick', by 'fixup' or 'squash' */
4606 command
= todo_list
.items
[cur
].command
;
4607 if (is_fixup(command
)) {
4609 todo_command_info
[command
].str
);
4610 bol
+= strcspn(bol
, " \t");
4613 strbuf_add(&buf
, bol
, eol
- bol
);
4619 res
= rewrite_file(todo_file
, buf
.buf
, buf
.len
);
4620 strbuf_release(&buf
);
4625 for (i
= 0; i
< todo_list
.nr
; i
++)
4628 hashmap_free(&subject2item
, 1);
4629 todo_list_release(&todo_list
);
4631 clear_commit_todo_item(&commit_todo
);