5 #include "object-store.h"
10 #include "run-command.h"
13 #include "cache-tree.h"
17 #include "merge-ort.h"
18 #include "merge-ort-wrappers.h"
24 #include "wt-status.h"
26 #include "notes-utils.h"
28 #include "unpack-trees.h"
32 #include "commit-slab.h"
34 #include "commit-reach.h"
35 #include "rebase-interactive.h"
38 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
40 static const char sign_off_header
[] = "Signed-off-by: ";
41 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
43 GIT_PATH_FUNC(git_path_commit_editmsg
, "COMMIT_EDITMSG")
45 static GIT_PATH_FUNC(git_path_seq_dir
, "sequencer")
47 static GIT_PATH_FUNC(git_path_todo_file
, "sequencer/todo")
48 static GIT_PATH_FUNC(git_path_opts_file
, "sequencer/opts")
49 static GIT_PATH_FUNC(git_path_head_file
, "sequencer/head")
50 static GIT_PATH_FUNC(git_path_abort_safety_file
, "sequencer/abort-safety")
52 static GIT_PATH_FUNC(rebase_path
, "rebase-merge")
54 * The file containing rebase commands, comments, and empty lines.
55 * This file is created by "git rebase -i" then edited by the user. As
56 * the lines are processed, they are removed from the front of this
57 * file and written to the tail of 'done'.
59 GIT_PATH_FUNC(rebase_path_todo
, "rebase-merge/git-rebase-todo")
60 GIT_PATH_FUNC(rebase_path_todo_backup
, "rebase-merge/git-rebase-todo.backup")
62 GIT_PATH_FUNC(rebase_path_dropped
, "rebase-merge/dropped")
65 * The rebase command lines that have already been processed. A line
66 * is moved here when it is first handled, before any associated user
69 static GIT_PATH_FUNC(rebase_path_done
, "rebase-merge/done")
71 * The file to keep track of how many commands were already processed (e.g.
74 static GIT_PATH_FUNC(rebase_path_msgnum
, "rebase-merge/msgnum")
76 * The file to keep track of how many commands are to be processed in total
77 * (e.g. for the prompt).
79 static GIT_PATH_FUNC(rebase_path_msgtotal
, "rebase-merge/end")
81 * The commit message that is planned to be used for any changes that
82 * need to be committed following a user interaction.
84 static GIT_PATH_FUNC(rebase_path_message
, "rebase-merge/message")
86 * The file into which is accumulated the suggested commit message for
87 * squash/fixup commands. When the first of a series of squash/fixups
88 * is seen, the file is created and the commit message from the
89 * previous commit and from the first squash/fixup commit are written
90 * to it. The commit message for each subsequent squash/fixup commit
91 * is appended to the file as it is processed.
93 static GIT_PATH_FUNC(rebase_path_squash_msg
, "rebase-merge/message-squash")
95 * If the current series of squash/fixups has not yet included a squash
96 * command, then this file exists and holds the commit message of the
97 * original "pick" commit. (If the series ends without a "squash"
98 * command, then this can be used as the commit message of the combined
99 * commit without opening the editor.)
101 static GIT_PATH_FUNC(rebase_path_fixup_msg
, "rebase-merge/message-fixup")
103 * This file contains the list fixup/squash commands that have been
104 * accumulated into message-fixup or message-squash so far.
106 static GIT_PATH_FUNC(rebase_path_current_fixups
, "rebase-merge/current-fixups")
108 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
109 * GIT_AUTHOR_DATE that will be used for the commit that is currently
112 static GIT_PATH_FUNC(rebase_path_author_script
, "rebase-merge/author-script")
114 * When an "edit" rebase command is being processed, the SHA1 of the
115 * commit to be edited is recorded in this file. When "git rebase
116 * --continue" is executed, if there are any staged changes then they
117 * will be amended to the HEAD commit, but only provided the HEAD
118 * commit is still the commit to be edited. When any other rebase
119 * command is processed, this file is deleted.
121 static GIT_PATH_FUNC(rebase_path_amend
, "rebase-merge/amend")
123 * When we stop at a given patch via the "edit" command, this file contains
124 * the commit object name of the corresponding patch.
126 static GIT_PATH_FUNC(rebase_path_stopped_sha
, "rebase-merge/stopped-sha")
128 * For the post-rewrite hook, we make a list of rewritten commits and
129 * their new sha1s. The rewritten-pending list keeps the sha1s of
130 * commits that have been processed, but not committed yet,
131 * e.g. because they are waiting for a 'squash' command.
133 static GIT_PATH_FUNC(rebase_path_rewritten_list
, "rebase-merge/rewritten-list")
134 static GIT_PATH_FUNC(rebase_path_rewritten_pending
,
135 "rebase-merge/rewritten-pending")
138 * The path of the file containing the OID of the "squash onto" commit, i.e.
139 * the dummy commit used for `reset [new root]`.
141 static GIT_PATH_FUNC(rebase_path_squash_onto
, "rebase-merge/squash-onto")
144 * The path of the file listing refs that need to be deleted after the rebase
145 * finishes. This is used by the `label` command to record the need for cleanup.
147 static GIT_PATH_FUNC(rebase_path_refs_to_delete
, "rebase-merge/refs-to-delete")
150 * The following files are written by git-rebase just after parsing the
153 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt
, "rebase-merge/gpg_sign_opt")
154 static GIT_PATH_FUNC(rebase_path_cdate_is_adate
, "rebase-merge/cdate_is_adate")
155 static GIT_PATH_FUNC(rebase_path_ignore_date
, "rebase-merge/ignore_date")
156 static GIT_PATH_FUNC(rebase_path_orig_head
, "rebase-merge/orig-head")
157 static GIT_PATH_FUNC(rebase_path_verbose
, "rebase-merge/verbose")
158 static GIT_PATH_FUNC(rebase_path_quiet
, "rebase-merge/quiet")
159 static GIT_PATH_FUNC(rebase_path_signoff
, "rebase-merge/signoff")
160 static GIT_PATH_FUNC(rebase_path_head_name
, "rebase-merge/head-name")
161 static GIT_PATH_FUNC(rebase_path_onto
, "rebase-merge/onto")
162 static GIT_PATH_FUNC(rebase_path_autostash
, "rebase-merge/autostash")
163 static GIT_PATH_FUNC(rebase_path_strategy
, "rebase-merge/strategy")
164 static GIT_PATH_FUNC(rebase_path_strategy_opts
, "rebase-merge/strategy_opts")
165 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate
, "rebase-merge/allow_rerere_autoupdate")
166 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec
, "rebase-merge/reschedule-failed-exec")
167 static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec
, "rebase-merge/no-reschedule-failed-exec")
168 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits
, "rebase-merge/drop_redundant_commits")
169 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits
, "rebase-merge/keep_redundant_commits")
171 static int git_sequencer_config(const char *k
, const char *v
, void *cb
)
173 struct replay_opts
*opts
= cb
;
176 if (!strcmp(k
, "commit.cleanup")) {
179 status
= git_config_string(&s
, k
, v
);
183 if (!strcmp(s
, "verbatim")) {
184 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
185 opts
->explicit_cleanup
= 1;
186 } else if (!strcmp(s
, "whitespace")) {
187 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
188 opts
->explicit_cleanup
= 1;
189 } else if (!strcmp(s
, "strip")) {
190 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_ALL
;
191 opts
->explicit_cleanup
= 1;
192 } else if (!strcmp(s
, "scissors")) {
193 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SCISSORS
;
194 opts
->explicit_cleanup
= 1;
196 warning(_("invalid commit message cleanup mode '%s'"),
204 if (!strcmp(k
, "commit.gpgsign")) {
205 opts
->gpg_sign
= git_config_bool(k
, v
) ? xstrdup("") : NULL
;
209 if (!opts
->default_strategy
&& !strcmp(k
, "pull.twohead")) {
210 int ret
= git_config_string((const char**)&opts
->default_strategy
, k
, v
);
213 * pull.twohead is allowed to be multi-valued; we only
214 * care about the first value.
216 char *tmp
= strchr(opts
->default_strategy
, ' ');
223 status
= git_gpg_config(k
, v
, NULL
);
227 return git_diff_basic_config(k
, v
, NULL
);
230 void sequencer_init_config(struct replay_opts
*opts
)
232 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
233 git_config(git_sequencer_config
, opts
);
236 static inline int is_rebase_i(const struct replay_opts
*opts
)
238 return opts
->action
== REPLAY_INTERACTIVE_REBASE
;
241 static const char *get_dir(const struct replay_opts
*opts
)
243 if (is_rebase_i(opts
))
244 return rebase_path();
245 return git_path_seq_dir();
248 static const char *get_todo_path(const struct replay_opts
*opts
)
250 if (is_rebase_i(opts
))
251 return rebase_path_todo();
252 return git_path_todo_file();
256 * Returns 0 for non-conforming footer
257 * Returns 1 for conforming footer
258 * Returns 2 when sob exists within conforming footer
259 * Returns 3 when sob exists within conforming footer as last entry
261 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
262 size_t ignore_footer
)
264 struct process_trailer_options opts
= PROCESS_TRAILER_OPTIONS_INIT
;
265 struct trailer_info info
;
267 int found_sob
= 0, found_sob_last
= 0;
273 saved_char
= sb
->buf
[sb
->len
- ignore_footer
];
274 sb
->buf
[sb
->len
- ignore_footer
] = '\0';
277 trailer_info_get(&info
, sb
->buf
, &opts
);
280 sb
->buf
[sb
->len
- ignore_footer
] = saved_char
;
282 if (info
.trailer_start
== info
.trailer_end
)
285 for (i
= 0; i
< info
.trailer_nr
; i
++)
286 if (sob
&& !strncmp(info
.trailers
[i
], sob
->buf
, sob
->len
)) {
288 if (i
== info
.trailer_nr
- 1)
292 trailer_info_release(&info
);
301 static const char *gpg_sign_opt_quoted(struct replay_opts
*opts
)
303 static struct strbuf buf
= STRBUF_INIT
;
307 sq_quotef(&buf
, "-S%s", opts
->gpg_sign
);
311 int sequencer_remove_state(struct replay_opts
*opts
)
313 struct strbuf buf
= STRBUF_INIT
;
316 if (is_rebase_i(opts
) &&
317 strbuf_read_file(&buf
, rebase_path_refs_to_delete(), 0) > 0) {
320 char *eol
= strchr(p
, '\n');
323 if (delete_ref("(rebase) cleanup", p
, NULL
, 0) < 0) {
324 warning(_("could not delete '%s'"), p
);
333 free(opts
->gpg_sign
);
334 free(opts
->default_strategy
);
335 free(opts
->strategy
);
336 for (i
= 0; i
< opts
->xopts_nr
; i
++)
337 free(opts
->xopts
[i
]);
339 strbuf_release(&opts
->current_fixups
);
342 strbuf_addstr(&buf
, get_dir(opts
));
343 if (remove_dir_recursively(&buf
, 0))
344 ret
= error(_("could not remove '%s'"), buf
.buf
);
345 strbuf_release(&buf
);
350 static const char *action_name(const struct replay_opts
*opts
)
352 switch (opts
->action
) {
356 return N_("cherry-pick");
357 case REPLAY_INTERACTIVE_REBASE
:
360 die(_("unknown action: %d"), opts
->action
);
363 struct commit_message
{
370 static const char *short_commit_name(struct commit
*commit
)
372 return find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
);
375 static int get_message(struct commit
*commit
, struct commit_message
*out
)
377 const char *abbrev
, *subject
;
380 out
->message
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
381 abbrev
= short_commit_name(commit
);
383 subject_len
= find_commit_subject(out
->message
, &subject
);
385 out
->subject
= xmemdupz(subject
, subject_len
);
386 out
->label
= xstrfmt("%s (%s)", abbrev
, out
->subject
);
387 out
->parent_label
= xstrfmt("parent of %s", out
->label
);
392 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
394 free(msg
->parent_label
);
397 unuse_commit_buffer(commit
, msg
->message
);
400 static void print_advice(struct repository
*r
, int show_hint
,
401 struct replay_opts
*opts
)
403 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
406 fprintf(stderr
, "%s\n", msg
);
408 * A conflict has occurred but the porcelain
409 * (typically rebase --interactive) wants to take care
410 * of the commit itself so remove CHERRY_PICK_HEAD
412 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
419 advise(_("after resolving the conflicts, mark the corrected paths\n"
420 "with 'git add <paths>' or 'git rm <paths>'"));
422 advise(_("after resolving the conflicts, mark the corrected paths\n"
423 "with 'git add <paths>' or 'git rm <paths>'\n"
424 "and commit the result with 'git commit'"));
428 static int write_message(const void *buf
, size_t len
, const char *filename
,
431 struct lock_file msg_file
= LOCK_INIT
;
433 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
, 0);
435 return error_errno(_("could not lock '%s'"), filename
);
436 if (write_in_full(msg_fd
, buf
, len
) < 0) {
437 error_errno(_("could not write to '%s'"), filename
);
438 rollback_lock_file(&msg_file
);
441 if (append_eol
&& write(msg_fd
, "\n", 1) < 0) {
442 error_errno(_("could not write eol to '%s'"), filename
);
443 rollback_lock_file(&msg_file
);
446 if (commit_lock_file(&msg_file
) < 0)
447 return error(_("failed to finalize '%s'"), filename
);
452 int read_oneliner(struct strbuf
*buf
,
453 const char *path
, unsigned flags
)
455 int orig_len
= buf
->len
;
457 if (strbuf_read_file(buf
, path
, 0) < 0) {
458 if ((flags
& READ_ONELINER_WARN_MISSING
) ||
459 (errno
!= ENOENT
&& errno
!= ENOTDIR
))
460 warning_errno(_("could not read '%s'"), path
);
464 if (buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\n') {
465 if (--buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\r')
467 buf
->buf
[buf
->len
] = '\0';
470 if ((flags
& READ_ONELINER_SKIP_IF_EMPTY
) && buf
->len
== orig_len
)
476 static struct tree
*empty_tree(struct repository
*r
)
478 return lookup_tree(r
, the_hash_algo
->empty_tree
);
481 static int error_dirty_index(struct repository
*repo
, struct replay_opts
*opts
)
483 if (repo_read_index_unmerged(repo
))
484 return error_resolve_conflict(_(action_name(opts
)));
486 error(_("your local changes would be overwritten by %s."),
487 _(action_name(opts
)));
489 if (advice_commit_before_merge
)
490 advise(_("commit your changes or stash them to proceed."));
494 static void update_abort_safety_file(void)
496 struct object_id head
;
498 /* Do nothing on a single-pick */
499 if (!file_exists(git_path_seq_dir()))
502 if (!get_oid("HEAD", &head
))
503 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head
));
505 write_file(git_path_abort_safety_file(), "%s", "");
508 static int fast_forward_to(struct repository
*r
,
509 const struct object_id
*to
,
510 const struct object_id
*from
,
512 struct replay_opts
*opts
)
514 struct ref_transaction
*transaction
;
515 struct strbuf sb
= STRBUF_INIT
;
516 struct strbuf err
= STRBUF_INIT
;
519 if (checkout_fast_forward(r
, from
, to
, 1))
520 return -1; /* the callee should have complained already */
522 strbuf_addf(&sb
, _("%s: fast-forward"), _(action_name(opts
)));
524 transaction
= ref_transaction_begin(&err
);
526 ref_transaction_update(transaction
, "HEAD",
527 to
, unborn
&& !is_rebase_i(opts
) ?
530 ref_transaction_commit(transaction
, &err
)) {
531 ref_transaction_free(transaction
);
532 error("%s", err
.buf
);
534 strbuf_release(&err
);
539 strbuf_release(&err
);
540 ref_transaction_free(transaction
);
541 update_abort_safety_file();
545 enum commit_msg_cleanup_mode
get_cleanup_mode(const char *cleanup_arg
,
548 if (!cleanup_arg
|| !strcmp(cleanup_arg
, "default"))
549 return use_editor
? COMMIT_MSG_CLEANUP_ALL
:
550 COMMIT_MSG_CLEANUP_SPACE
;
551 else if (!strcmp(cleanup_arg
, "verbatim"))
552 return COMMIT_MSG_CLEANUP_NONE
;
553 else if (!strcmp(cleanup_arg
, "whitespace"))
554 return COMMIT_MSG_CLEANUP_SPACE
;
555 else if (!strcmp(cleanup_arg
, "strip"))
556 return COMMIT_MSG_CLEANUP_ALL
;
557 else if (!strcmp(cleanup_arg
, "scissors"))
558 return use_editor
? COMMIT_MSG_CLEANUP_SCISSORS
:
559 COMMIT_MSG_CLEANUP_SPACE
;
561 die(_("Invalid cleanup mode %s"), cleanup_arg
);
565 * NB using int rather than enum cleanup_mode to stop clang's
566 * -Wtautological-constant-out-of-range-compare complaining that the comparison
569 static const char *describe_cleanup_mode(int cleanup_mode
)
571 static const char *modes
[] = { "whitespace",
576 if (cleanup_mode
< ARRAY_SIZE(modes
))
577 return modes
[cleanup_mode
];
579 BUG("invalid cleanup_mode provided (%d)", cleanup_mode
);
582 void append_conflicts_hint(struct index_state
*istate
,
583 struct strbuf
*msgbuf
, enum commit_msg_cleanup_mode cleanup_mode
)
587 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
588 strbuf_addch(msgbuf
, '\n');
589 wt_status_append_cut_line(msgbuf
);
590 strbuf_addch(msgbuf
, comment_line_char
);
593 strbuf_addch(msgbuf
, '\n');
594 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
595 for (i
= 0; i
< istate
->cache_nr
;) {
596 const struct cache_entry
*ce
= istate
->cache
[i
++];
598 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
599 while (i
< istate
->cache_nr
&&
600 !strcmp(ce
->name
, istate
->cache
[i
]->name
))
606 static int do_recursive_merge(struct repository
*r
,
607 struct commit
*base
, struct commit
*next
,
608 const char *base_label
, const char *next_label
,
609 struct object_id
*head
, struct strbuf
*msgbuf
,
610 struct replay_opts
*opts
)
612 struct merge_options o
;
613 struct merge_result result
;
614 struct tree
*next_tree
, *base_tree
, *head_tree
;
615 int clean
, show_output
;
617 struct lock_file index_lock
= LOCK_INIT
;
619 if (repo_hold_locked_index(r
, &index_lock
, LOCK_REPORT_ON_ERROR
) < 0)
624 init_merge_options(&o
, r
);
625 o
.ancestor
= base
? base_label
: "(empty tree)";
627 o
.branch2
= next
? next_label
: "(empty tree)";
628 if (is_rebase_i(opts
))
630 o
.show_rename_progress
= 1;
632 head_tree
= parse_tree_indirect(head
);
633 next_tree
= next
? get_commit_tree(next
) : empty_tree(r
);
634 base_tree
= base
? get_commit_tree(base
) : empty_tree(r
);
636 for (i
= 0; i
< opts
->xopts_nr
; i
++)
637 parse_merge_opt(&o
, opts
->xopts
[i
]);
639 if (opts
->strategy
&& !strcmp(opts
->strategy
, "ort")) {
640 memset(&result
, 0, sizeof(result
));
641 merge_incore_nonrecursive(&o
, base_tree
, head_tree
, next_tree
,
643 show_output
= !is_rebase_i(opts
) || !result
.clean
;
645 * TODO: merge_switch_to_result will update index/working tree;
646 * we only really want to do that if !result.clean || this is
647 * the final patch to be picked. But determining this is the
648 * final patch would take some work, and "head_tree" would need
649 * to be replace with the tree the index matched before we
650 * started doing any picks.
652 merge_switch_to_result(&o
, head_tree
, &result
, 1, show_output
);
653 clean
= result
.clean
;
655 clean
= merge_trees(&o
, head_tree
, next_tree
, base_tree
);
656 if (is_rebase_i(opts
) && clean
<= 0)
657 fputs(o
.obuf
.buf
, stdout
);
658 strbuf_release(&o
.obuf
);
661 rollback_lock_file(&index_lock
);
665 if (write_locked_index(r
->index
, &index_lock
,
666 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
668 * TRANSLATORS: %s will be "revert", "cherry-pick" or
671 return error(_("%s: Unable to write new index file"),
672 _(action_name(opts
)));
675 append_conflicts_hint(r
->index
, msgbuf
,
676 opts
->default_msg_cleanup
);
681 static struct object_id
*get_cache_tree_oid(struct index_state
*istate
)
683 if (!cache_tree_fully_valid(istate
->cache_tree
))
684 if (cache_tree_update(istate
, 0)) {
685 error(_("unable to update cache tree"));
689 return &istate
->cache_tree
->oid
;
692 static int is_index_unchanged(struct repository
*r
)
694 struct object_id head_oid
, *cache_tree_oid
;
695 struct commit
*head_commit
;
696 struct index_state
*istate
= r
->index
;
698 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
699 return error(_("could not resolve HEAD commit"));
701 head_commit
= lookup_commit(r
, &head_oid
);
704 * If head_commit is NULL, check_commit, called from
705 * lookup_commit, would have indicated that head_commit is not
706 * a commit object already. parse_commit() will return failure
707 * without further complaints in such a case. Otherwise, if
708 * the commit is invalid, parse_commit() will complain. So
709 * there is nothing for us to say here. Just return failure.
711 if (parse_commit(head_commit
))
714 if (!(cache_tree_oid
= get_cache_tree_oid(istate
)))
717 return oideq(cache_tree_oid
, get_commit_tree_oid(head_commit
));
720 static int write_author_script(const char *message
)
722 struct strbuf buf
= STRBUF_INIT
;
727 if (!*message
|| starts_with(message
, "\n")) {
729 /* Missing 'author' line? */
730 unlink(rebase_path_author_script());
732 } else if (skip_prefix(message
, "author ", &message
))
734 else if ((eol
= strchr(message
, '\n')))
739 strbuf_addstr(&buf
, "GIT_AUTHOR_NAME='");
740 while (*message
&& *message
!= '\n' && *message
!= '\r')
741 if (skip_prefix(message
, " <", &message
))
743 else if (*message
!= '\'')
744 strbuf_addch(&buf
, *(message
++));
746 strbuf_addf(&buf
, "'\\%c'", *(message
++));
747 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_EMAIL='");
748 while (*message
&& *message
!= '\n' && *message
!= '\r')
749 if (skip_prefix(message
, "> ", &message
))
751 else if (*message
!= '\'')
752 strbuf_addch(&buf
, *(message
++));
754 strbuf_addf(&buf
, "'\\%c'", *(message
++));
755 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_DATE='@");
756 while (*message
&& *message
!= '\n' && *message
!= '\r')
757 if (*message
!= '\'')
758 strbuf_addch(&buf
, *(message
++));
760 strbuf_addf(&buf
, "'\\%c'", *(message
++));
761 strbuf_addch(&buf
, '\'');
762 res
= write_message(buf
.buf
, buf
.len
, rebase_path_author_script(), 1);
763 strbuf_release(&buf
);
768 * Take a series of KEY='VALUE' lines where VALUE part is
769 * sq-quoted, and append <KEY, VALUE> at the end of the string list
771 static int parse_key_value_squoted(char *buf
, struct string_list
*list
)
774 struct string_list_item
*item
;
776 char *cp
= strchr(buf
, '=');
778 np
= strchrnul(buf
, '\n');
779 return error(_("no key present in '%.*s'"),
780 (int) (np
- buf
), buf
);
782 np
= strchrnul(cp
, '\n');
784 item
= string_list_append(list
, buf
);
786 buf
= np
+ (*np
== '\n');
790 return error(_("unable to dequote value of '%s'"),
792 item
->util
= xstrdup(cp
);
798 * Reads and parses the state directory's "author-script" file, and sets name,
799 * email and date accordingly.
800 * Returns 0 on success, -1 if the file could not be parsed.
802 * The author script is of the format:
804 * GIT_AUTHOR_NAME='$author_name'
805 * GIT_AUTHOR_EMAIL='$author_email'
806 * GIT_AUTHOR_DATE='$author_date'
808 * where $author_name, $author_email and $author_date are quoted. We are strict
809 * with our parsing, as the file was meant to be eval'd in the now-removed
810 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
811 * from what this function expects, it is better to bail out than to do
812 * something that the user does not expect.
814 int read_author_script(const char *path
, char **name
, char **email
, char **date
,
817 struct strbuf buf
= STRBUF_INIT
;
818 struct string_list kv
= STRING_LIST_INIT_DUP
;
819 int retval
= -1; /* assume failure */
820 int i
, name_i
= -2, email_i
= -2, date_i
= -2, err
= 0;
822 if (strbuf_read_file(&buf
, path
, 256) <= 0) {
823 strbuf_release(&buf
);
824 if (errno
== ENOENT
&& allow_missing
)
827 return error_errno(_("could not open '%s' for reading"),
831 if (parse_key_value_squoted(buf
.buf
, &kv
))
834 for (i
= 0; i
< kv
.nr
; i
++) {
835 if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_NAME")) {
837 name_i
= error(_("'GIT_AUTHOR_NAME' already given"));
840 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_EMAIL")) {
842 email_i
= error(_("'GIT_AUTHOR_EMAIL' already given"));
845 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_DATE")) {
847 date_i
= error(_("'GIT_AUTHOR_DATE' already given"));
851 err
= error(_("unknown variable '%s'"),
856 error(_("missing 'GIT_AUTHOR_NAME'"));
858 error(_("missing 'GIT_AUTHOR_EMAIL'"));
860 error(_("missing 'GIT_AUTHOR_DATE'"));
861 if (date_i
< 0 || email_i
< 0 || date_i
< 0 || err
)
863 *name
= kv
.items
[name_i
].util
;
864 *email
= kv
.items
[email_i
].util
;
865 *date
= kv
.items
[date_i
].util
;
868 string_list_clear(&kv
, !!retval
);
869 strbuf_release(&buf
);
874 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
875 * file with shell quoting into struct strvec. Returns -1 on
876 * error, 0 otherwise.
878 static int read_env_script(struct strvec
*env
)
880 char *name
, *email
, *date
;
882 if (read_author_script(rebase_path_author_script(),
883 &name
, &email
, &date
, 0))
886 strvec_pushf(env
, "GIT_AUTHOR_NAME=%s", name
);
887 strvec_pushf(env
, "GIT_AUTHOR_EMAIL=%s", email
);
888 strvec_pushf(env
, "GIT_AUTHOR_DATE=%s", date
);
896 static char *get_author(const char *message
)
901 a
= find_commit_header(message
, "author", &len
);
903 return xmemdupz(a
, len
);
908 static const char *author_date_from_env_array(const struct strvec
*env
)
913 for (i
= 0; i
< env
->nr
; i
++)
914 if (skip_prefix(env
->v
[i
],
915 "GIT_AUTHOR_DATE=", &date
))
918 * If GIT_AUTHOR_DATE is missing we should have already errored out when
921 BUG("GIT_AUTHOR_DATE missing from author script");
924 static const char staged_changes_advice
[] =
925 N_("you have staged changes in your working tree\n"
926 "If these changes are meant to be squashed into the previous commit, run:\n"
928 " git commit --amend %s\n"
930 "If they are meant to go into a new commit, run:\n"
934 "In both cases, once you're done, continue with:\n"
936 " git rebase --continue\n");
938 #define ALLOW_EMPTY (1<<0)
939 #define EDIT_MSG (1<<1)
940 #define AMEND_MSG (1<<2)
941 #define CLEANUP_MSG (1<<3)
942 #define VERIFY_MSG (1<<4)
943 #define CREATE_ROOT_COMMIT (1<<5)
944 #define VERBATIM_MSG (1<<6)
946 static int run_command_silent_on_success(struct child_process
*cmd
)
948 struct strbuf buf
= STRBUF_INIT
;
951 cmd
->stdout_to_stderr
= 1;
952 rc
= pipe_command(cmd
,
958 fputs(buf
.buf
, stderr
);
959 strbuf_release(&buf
);
964 * If we are cherry-pick, and if the merge did not result in
965 * hand-editing, we will hit this commit and inherit the original
966 * author date and name.
968 * If we are revert, or if our cherry-pick results in a hand merge,
969 * we had better say that the current user is responsible for that.
971 * An exception is when run_git_commit() is called during an
972 * interactive rebase: in that case, we will want to retain the
975 static int run_git_commit(const char *defmsg
,
976 struct replay_opts
*opts
,
979 struct child_process cmd
= CHILD_PROCESS_INIT
;
981 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
982 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
986 if (is_rebase_i(opts
) && read_env_script(&cmd
.env_array
)) {
987 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
989 return error(_(staged_changes_advice
),
993 if (opts
->committer_date_is_author_date
)
994 strvec_pushf(&cmd
.env_array
, "GIT_COMMITTER_DATE=%s",
997 author_date_from_env_array(&cmd
.env_array
));
998 if (opts
->ignore_date
)
999 strvec_push(&cmd
.env_array
, "GIT_AUTHOR_DATE=");
1001 strvec_push(&cmd
.args
, "commit");
1003 if (!(flags
& VERIFY_MSG
))
1004 strvec_push(&cmd
.args
, "-n");
1005 if ((flags
& AMEND_MSG
))
1006 strvec_push(&cmd
.args
, "--amend");
1008 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
1010 strvec_push(&cmd
.args
, "--no-gpg-sign");
1012 strvec_pushl(&cmd
.args
, "-F", defmsg
, NULL
);
1013 else if (!(flags
& EDIT_MSG
))
1014 strvec_pushl(&cmd
.args
, "-C", "HEAD", NULL
);
1015 if ((flags
& CLEANUP_MSG
))
1016 strvec_push(&cmd
.args
, "--cleanup=strip");
1017 if ((flags
& VERBATIM_MSG
))
1018 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1019 if ((flags
& EDIT_MSG
))
1020 strvec_push(&cmd
.args
, "-e");
1021 else if (!(flags
& CLEANUP_MSG
) &&
1022 !opts
->signoff
&& !opts
->record_origin
&&
1023 !opts
->explicit_cleanup
)
1024 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1026 if ((flags
& ALLOW_EMPTY
))
1027 strvec_push(&cmd
.args
, "--allow-empty");
1029 if (!(flags
& EDIT_MSG
))
1030 strvec_push(&cmd
.args
, "--allow-empty-message");
1032 if (is_rebase_i(opts
) && !(flags
& EDIT_MSG
))
1033 return run_command_silent_on_success(&cmd
);
1035 return run_command(&cmd
);
1038 static int rest_is_empty(const struct strbuf
*sb
, int start
)
1043 /* Check if the rest is just whitespace and Signed-off-by's. */
1044 for (i
= start
; i
< sb
->len
; i
++) {
1045 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
1051 if (strlen(sign_off_header
) <= eol
- i
&&
1052 starts_with(sb
->buf
+ i
, sign_off_header
)) {
1057 if (!isspace(sb
->buf
[i
++]))
1064 void cleanup_message(struct strbuf
*msgbuf
,
1065 enum commit_msg_cleanup_mode cleanup_mode
, int verbose
)
1067 if (verbose
|| /* Truncate the message just before the diff, if any. */
1068 cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
)
1069 strbuf_setlen(msgbuf
, wt_status_locate_end(msgbuf
->buf
, msgbuf
->len
));
1070 if (cleanup_mode
!= COMMIT_MSG_CLEANUP_NONE
)
1071 strbuf_stripspace(msgbuf
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1075 * Find out if the message in the strbuf contains only whitespace and
1076 * Signed-off-by lines.
1078 int message_is_empty(const struct strbuf
*sb
,
1079 enum commit_msg_cleanup_mode cleanup_mode
)
1081 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1083 return rest_is_empty(sb
, 0);
1087 * See if the user edited the message in the editor or left what
1088 * was in the template intact
1090 int template_untouched(const struct strbuf
*sb
, const char *template_file
,
1091 enum commit_msg_cleanup_mode cleanup_mode
)
1093 struct strbuf tmpl
= STRBUF_INIT
;
1096 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1099 if (!template_file
|| strbuf_read_file(&tmpl
, template_file
, 0) <= 0)
1102 strbuf_stripspace(&tmpl
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1103 if (!skip_prefix(sb
->buf
, tmpl
.buf
, &start
))
1105 strbuf_release(&tmpl
);
1106 return rest_is_empty(sb
, start
- sb
->buf
);
1109 int update_head_with_reflog(const struct commit
*old_head
,
1110 const struct object_id
*new_head
,
1111 const char *action
, const struct strbuf
*msg
,
1114 struct ref_transaction
*transaction
;
1115 struct strbuf sb
= STRBUF_INIT
;
1120 strbuf_addstr(&sb
, action
);
1121 strbuf_addstr(&sb
, ": ");
1124 nl
= strchr(msg
->buf
, '\n');
1126 strbuf_add(&sb
, msg
->buf
, nl
+ 1 - msg
->buf
);
1128 strbuf_addbuf(&sb
, msg
);
1129 strbuf_addch(&sb
, '\n');
1132 transaction
= ref_transaction_begin(err
);
1134 ref_transaction_update(transaction
, "HEAD", new_head
,
1135 old_head
? &old_head
->object
.oid
: null_oid(),
1137 ref_transaction_commit(transaction
, err
)) {
1140 ref_transaction_free(transaction
);
1141 strbuf_release(&sb
);
1146 static int run_rewrite_hook(const struct object_id
*oldoid
,
1147 const struct object_id
*newoid
)
1149 struct child_process proc
= CHILD_PROCESS_INIT
;
1150 const char *argv
[3];
1152 struct strbuf sb
= STRBUF_INIT
;
1154 argv
[0] = find_hook("post-rewrite");
1163 proc
.stdout_to_stderr
= 1;
1164 proc
.trace2_hook_name
= "post-rewrite";
1166 code
= start_command(&proc
);
1169 strbuf_addf(&sb
, "%s %s\n", oid_to_hex(oldoid
), oid_to_hex(newoid
));
1170 sigchain_push(SIGPIPE
, SIG_IGN
);
1171 write_in_full(proc
.in
, sb
.buf
, sb
.len
);
1173 strbuf_release(&sb
);
1174 sigchain_pop(SIGPIPE
);
1175 return finish_command(&proc
);
1178 void commit_post_rewrite(struct repository
*r
,
1179 const struct commit
*old_head
,
1180 const struct object_id
*new_head
)
1182 struct notes_rewrite_cfg
*cfg
;
1184 cfg
= init_copy_notes_for_rewrite("amend");
1186 /* we are amending, so old_head is not NULL */
1187 copy_note_for_rewrite(cfg
, &old_head
->object
.oid
, new_head
);
1188 finish_copy_notes_for_rewrite(r
, cfg
, "Notes added by 'git commit --amend'");
1190 run_rewrite_hook(&old_head
->object
.oid
, new_head
);
1193 static int run_prepare_commit_msg_hook(struct repository
*r
,
1198 const char *name
, *arg1
= NULL
, *arg2
= NULL
;
1200 name
= git_path_commit_editmsg();
1201 if (write_message(msg
->buf
, msg
->len
, name
, 0))
1210 if (run_commit_hook(0, r
->index_file
, "prepare-commit-msg", name
,
1212 ret
= error(_("'prepare-commit-msg' hook failed"));
1217 static const char implicit_ident_advice_noconfig
[] =
1218 N_("Your name and email address were configured automatically based\n"
1219 "on your username and hostname. Please check that they are accurate.\n"
1220 "You can suppress this message by setting them explicitly. Run the\n"
1221 "following command and follow the instructions in your editor to edit\n"
1222 "your configuration file:\n"
1224 " git config --global --edit\n"
1226 "After doing this, you may fix the identity used for this commit with:\n"
1228 " git commit --amend --reset-author\n");
1230 static const char implicit_ident_advice_config
[] =
1231 N_("Your name and email address were configured automatically based\n"
1232 "on your username and hostname. Please check that they are accurate.\n"
1233 "You can suppress this message by setting them explicitly:\n"
1235 " git config --global user.name \"Your Name\"\n"
1236 " git config --global user.email you@example.com\n"
1238 "After doing this, you may fix the identity used for this commit with:\n"
1240 " git commit --amend --reset-author\n");
1242 static const char *implicit_ident_advice(void)
1244 char *user_config
= expand_user_path("~/.gitconfig", 0);
1245 char *xdg_config
= xdg_config_home("config");
1246 int config_exists
= file_exists(user_config
) || file_exists(xdg_config
);
1252 return _(implicit_ident_advice_config
);
1254 return _(implicit_ident_advice_noconfig
);
1258 void print_commit_summary(struct repository
*r
,
1260 const struct object_id
*oid
,
1263 struct rev_info rev
;
1264 struct commit
*commit
;
1265 struct strbuf format
= STRBUF_INIT
;
1267 struct pretty_print_context pctx
= {0};
1268 struct strbuf author_ident
= STRBUF_INIT
;
1269 struct strbuf committer_ident
= STRBUF_INIT
;
1271 commit
= lookup_commit(r
, oid
);
1273 die(_("couldn't look up newly created commit"));
1274 if (parse_commit(commit
))
1275 die(_("could not parse newly created commit"));
1277 strbuf_addstr(&format
, "format:%h] %s");
1279 format_commit_message(commit
, "%an <%ae>", &author_ident
, &pctx
);
1280 format_commit_message(commit
, "%cn <%ce>", &committer_ident
, &pctx
);
1281 if (strbuf_cmp(&author_ident
, &committer_ident
)) {
1282 strbuf_addstr(&format
, "\n Author: ");
1283 strbuf_addbuf_percentquote(&format
, &author_ident
);
1285 if (flags
& SUMMARY_SHOW_AUTHOR_DATE
) {
1286 struct strbuf date
= STRBUF_INIT
;
1288 format_commit_message(commit
, "%ad", &date
, &pctx
);
1289 strbuf_addstr(&format
, "\n Date: ");
1290 strbuf_addbuf_percentquote(&format
, &date
);
1291 strbuf_release(&date
);
1293 if (!committer_ident_sufficiently_given()) {
1294 strbuf_addstr(&format
, "\n Committer: ");
1295 strbuf_addbuf_percentquote(&format
, &committer_ident
);
1296 if (advice_implicit_identity
) {
1297 strbuf_addch(&format
, '\n');
1298 strbuf_addstr(&format
, implicit_ident_advice());
1301 strbuf_release(&author_ident
);
1302 strbuf_release(&committer_ident
);
1304 repo_init_revisions(r
, &rev
, prefix
);
1305 setup_revisions(0, NULL
, &rev
, NULL
);
1308 rev
.diffopt
.output_format
=
1309 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
1311 rev
.verbose_header
= 1;
1312 rev
.show_root_diff
= 1;
1313 get_commit_format(format
.buf
, &rev
);
1314 rev
.always_show_header
= 0;
1315 rev
.diffopt
.detect_rename
= DIFF_DETECT_RENAME
;
1316 rev
.diffopt
.break_opt
= 0;
1317 diff_setup_done(&rev
.diffopt
);
1319 head
= resolve_ref_unsafe("HEAD", 0, NULL
, NULL
);
1321 die_errno(_("unable to resolve HEAD after creating commit"));
1322 if (!strcmp(head
, "HEAD"))
1323 head
= _("detached HEAD");
1325 skip_prefix(head
, "refs/heads/", &head
);
1326 printf("[%s%s ", head
, (flags
& SUMMARY_INITIAL_COMMIT
) ?
1327 _(" (root-commit)") : "");
1329 if (!log_tree_commit(&rev
, commit
)) {
1330 rev
.always_show_header
= 1;
1331 rev
.use_terminator
= 1;
1332 log_tree_commit(&rev
, commit
);
1335 strbuf_release(&format
);
1338 static int parse_head(struct repository
*r
, struct commit
**head
)
1340 struct commit
*current_head
;
1341 struct object_id oid
;
1343 if (get_oid("HEAD", &oid
)) {
1344 current_head
= NULL
;
1346 current_head
= lookup_commit_reference(r
, &oid
);
1348 return error(_("could not parse HEAD"));
1349 if (!oideq(&oid
, ¤t_head
->object
.oid
)) {
1350 warning(_("HEAD %s is not a commit!"),
1353 if (parse_commit(current_head
))
1354 return error(_("could not parse HEAD commit"));
1356 *head
= current_head
;
1362 * Try to commit without forking 'git commit'. In some cases we need
1363 * to run 'git commit' to display an error message
1366 * -1 - error unable to commit
1368 * 1 - run 'git commit'
1370 static int try_to_commit(struct repository
*r
,
1371 struct strbuf
*msg
, const char *author
,
1372 struct replay_opts
*opts
, unsigned int flags
,
1373 struct object_id
*oid
)
1375 struct object_id tree
;
1376 struct commit
*current_head
= NULL
;
1377 struct commit_list
*parents
= NULL
;
1378 struct commit_extra_header
*extra
= NULL
;
1379 struct strbuf err
= STRBUF_INIT
;
1380 struct strbuf commit_msg
= STRBUF_INIT
;
1381 char *amend_author
= NULL
;
1382 const char *committer
= NULL
;
1383 const char *hook_commit
= NULL
;
1384 enum commit_msg_cleanup_mode cleanup
;
1387 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1388 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1390 if (parse_head(r
, ¤t_head
))
1393 if (flags
& AMEND_MSG
) {
1394 const char *exclude_gpgsig
[] = { "gpgsig", "gpgsig-sha256", NULL
};
1395 const char *out_enc
= get_commit_output_encoding();
1396 const char *message
= logmsg_reencode(current_head
, NULL
,
1400 const char *orig_message
= NULL
;
1402 find_commit_subject(message
, &orig_message
);
1404 strbuf_addstr(msg
, orig_message
);
1405 hook_commit
= "HEAD";
1407 author
= amend_author
= get_author(message
);
1408 unuse_commit_buffer(current_head
, message
);
1410 res
= error(_("unable to parse commit author"));
1413 parents
= copy_commit_list(current_head
->parents
);
1414 extra
= read_commit_extra_headers(current_head
, exclude_gpgsig
);
1415 } else if (current_head
&&
1416 (!(flags
& CREATE_ROOT_COMMIT
) || (flags
& AMEND_MSG
))) {
1417 commit_list_insert(current_head
, &parents
);
1420 if (write_index_as_tree(&tree
, r
->index
, r
->index_file
, 0, NULL
)) {
1421 res
= error(_("git write-tree failed to write a tree"));
1425 if (!(flags
& ALLOW_EMPTY
)) {
1426 struct commit
*first_parent
= current_head
;
1428 if (flags
& AMEND_MSG
) {
1429 if (current_head
->parents
) {
1430 first_parent
= current_head
->parents
->item
;
1431 if (repo_parse_commit(r
, first_parent
)) {
1432 res
= error(_("could not parse HEAD commit"));
1436 first_parent
= NULL
;
1439 if (oideq(first_parent
1440 ? get_commit_tree_oid(first_parent
)
1441 : the_hash_algo
->empty_tree
,
1443 res
= 1; /* run 'git commit' to display error message */
1448 if (find_hook("prepare-commit-msg")) {
1449 res
= run_prepare_commit_msg_hook(r
, msg
, hook_commit
);
1452 if (strbuf_read_file(&commit_msg
, git_path_commit_editmsg(),
1454 res
= error_errno(_("unable to read commit message "
1456 git_path_commit_editmsg());
1462 if (flags
& CLEANUP_MSG
)
1463 cleanup
= COMMIT_MSG_CLEANUP_ALL
;
1464 else if (flags
& VERBATIM_MSG
)
1465 cleanup
= COMMIT_MSG_CLEANUP_NONE
;
1466 else if ((opts
->signoff
|| opts
->record_origin
) &&
1467 !opts
->explicit_cleanup
)
1468 cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
1470 cleanup
= opts
->default_msg_cleanup
;
1472 if (cleanup
!= COMMIT_MSG_CLEANUP_NONE
)
1473 strbuf_stripspace(msg
, cleanup
== COMMIT_MSG_CLEANUP_ALL
);
1474 if ((flags
& EDIT_MSG
) && message_is_empty(msg
, cleanup
)) {
1475 res
= 1; /* run 'git commit' to display error message */
1479 if (opts
->committer_date_is_author_date
) {
1480 struct ident_split id
;
1481 struct strbuf date
= STRBUF_INIT
;
1483 if (!opts
->ignore_date
) {
1484 if (split_ident_line(&id
, author
, (int)strlen(author
)) < 0) {
1485 res
= error(_("invalid author identity '%s'"),
1489 if (!id
.date_begin
) {
1491 "corrupt author: missing date information"));
1494 strbuf_addf(&date
, "@%.*s %.*s",
1495 (int)(id
.date_end
- id
.date_begin
),
1497 (int)(id
.tz_end
- id
.tz_begin
),
1502 committer
= fmt_ident(getenv("GIT_COMMITTER_NAME"),
1503 getenv("GIT_COMMITTER_EMAIL"),
1504 WANT_COMMITTER_IDENT
,
1505 opts
->ignore_date
? NULL
: date
.buf
,
1507 strbuf_release(&date
);
1512 if (opts
->ignore_date
) {
1513 struct ident_split id
;
1516 if (split_ident_line(&id
, author
, strlen(author
)) < 0) {
1517 error(_("invalid author identity '%s'"), author
);
1520 name
= xmemdupz(id
.name_begin
, id
.name_end
- id
.name_begin
);
1521 email
= xmemdupz(id
.mail_begin
, id
.mail_end
- id
.mail_begin
);
1522 author
= fmt_ident(name
, email
, WANT_AUTHOR_IDENT
, NULL
,
1528 if (commit_tree_extended(msg
->buf
, msg
->len
, &tree
, parents
, oid
,
1529 author
, committer
, opts
->gpg_sign
, extra
)) {
1530 res
= error(_("failed to write commit object"));
1534 if (update_head_with_reflog(current_head
, oid
,
1535 getenv("GIT_REFLOG_ACTION"), msg
, &err
)) {
1536 res
= error("%s", err
.buf
);
1540 run_commit_hook(0, r
->index_file
, "post-commit", NULL
);
1541 if (flags
& AMEND_MSG
)
1542 commit_post_rewrite(r
, current_head
, oid
);
1545 free_commit_extra_headers(extra
);
1546 strbuf_release(&err
);
1547 strbuf_release(&commit_msg
);
1553 static int write_rebase_head(struct object_id
*oid
)
1555 if (update_ref("rebase", "REBASE_HEAD", oid
,
1556 NULL
, REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
1557 return error(_("could not update %s"), "REBASE_HEAD");
1562 static int do_commit(struct repository
*r
,
1563 const char *msg_file
, const char *author
,
1564 struct replay_opts
*opts
, unsigned int flags
,
1565 struct object_id
*oid
)
1569 if (!(flags
& EDIT_MSG
) && !(flags
& VERIFY_MSG
)) {
1570 struct object_id oid
;
1571 struct strbuf sb
= STRBUF_INIT
;
1573 if (msg_file
&& strbuf_read_file(&sb
, msg_file
, 2048) < 0)
1574 return error_errno(_("unable to read commit message "
1578 res
= try_to_commit(r
, msg_file
? &sb
: NULL
,
1579 author
, opts
, flags
, &oid
);
1580 strbuf_release(&sb
);
1582 refs_delete_ref(get_main_ref_store(r
), "",
1583 "CHERRY_PICK_HEAD", NULL
, 0);
1584 unlink(git_path_merge_msg(r
));
1585 if (!is_rebase_i(opts
))
1586 print_commit_summary(r
, NULL
, &oid
,
1587 SUMMARY_SHOW_AUTHOR_DATE
);
1592 if (is_rebase_i(opts
) && oid
)
1593 if (write_rebase_head(oid
))
1595 return run_git_commit(msg_file
, opts
, flags
);
1601 static int is_original_commit_empty(struct commit
*commit
)
1603 const struct object_id
*ptree_oid
;
1605 if (parse_commit(commit
))
1606 return error(_("could not parse commit %s"),
1607 oid_to_hex(&commit
->object
.oid
));
1608 if (commit
->parents
) {
1609 struct commit
*parent
= commit
->parents
->item
;
1610 if (parse_commit(parent
))
1611 return error(_("could not parse parent commit %s"),
1612 oid_to_hex(&parent
->object
.oid
));
1613 ptree_oid
= get_commit_tree_oid(parent
);
1615 ptree_oid
= the_hash_algo
->empty_tree
; /* commit is root */
1618 return oideq(ptree_oid
, get_commit_tree_oid(commit
));
1622 * Should empty commits be allowed? Return status:
1623 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1624 * 0: Halt on empty commit
1625 * 1: Allow empty commit
1626 * 2: Drop empty commit
1628 static int allow_empty(struct repository
*r
,
1629 struct replay_opts
*opts
,
1630 struct commit
*commit
)
1632 int index_unchanged
, originally_empty
;
1637 * (1) we do not allow empty at all and error out.
1639 * (2) we allow ones that were initially empty, and
1640 * just drop the ones that become empty
1642 * (3) we allow ones that were initially empty, but
1643 * halt for the ones that become empty;
1645 * (4) we allow both.
1647 if (!opts
->allow_empty
)
1648 return 0; /* let "git commit" barf as necessary */
1650 index_unchanged
= is_index_unchanged(r
);
1651 if (index_unchanged
< 0)
1652 return index_unchanged
;
1653 if (!index_unchanged
)
1654 return 0; /* we do not have to say --allow-empty */
1656 if (opts
->keep_redundant_commits
)
1659 originally_empty
= is_original_commit_empty(commit
);
1660 if (originally_empty
< 0)
1661 return originally_empty
;
1662 if (originally_empty
)
1664 else if (opts
->drop_redundant_commits
)
1673 } todo_command_info
[] = {
1690 static const char *command_to_string(const enum todo_command command
)
1692 if (command
< TODO_COMMENT
)
1693 return todo_command_info
[command
].str
;
1694 die(_("unknown command: %d"), command
);
1697 static char command_to_char(const enum todo_command command
)
1699 if (command
< TODO_COMMENT
)
1700 return todo_command_info
[command
].c
;
1701 return comment_line_char
;
1704 static int is_noop(const enum todo_command command
)
1706 return TODO_NOOP
<= command
;
1709 static int is_fixup(enum todo_command command
)
1711 return command
== TODO_FIXUP
|| command
== TODO_SQUASH
;
1714 /* Does this command create a (non-merge) commit? */
1715 static int is_pick_or_similar(enum todo_command command
)
1730 enum todo_item_flags
{
1731 TODO_EDIT_MERGE_MSG
= (1 << 0),
1732 TODO_REPLACE_FIXUP_MSG
= (1 << 1),
1733 TODO_EDIT_FIXUP_MSG
= (1 << 2),
1736 static const char first_commit_msg_str
[] = N_("This is the 1st commit message:");
1737 static const char nth_commit_msg_fmt
[] = N_("This is the commit message #%d:");
1738 static const char skip_first_commit_msg_str
[] = N_("The 1st commit message will be skipped:");
1739 static const char skip_nth_commit_msg_fmt
[] = N_("The commit message #%d will be skipped:");
1740 static const char combined_commit_msg_fmt
[] = N_("This is a combination of %d commits.");
1742 static int is_fixup_flag(enum todo_command command
, unsigned flag
)
1744 return command
== TODO_FIXUP
&& ((flag
& TODO_REPLACE_FIXUP_MSG
) ||
1745 (flag
& TODO_EDIT_FIXUP_MSG
));
1749 * Wrapper around strbuf_add_commented_lines() which avoids double
1750 * commenting commit subjects.
1752 static void add_commented_lines(struct strbuf
*buf
, const void *str
, size_t len
)
1754 const char *s
= str
;
1755 while (len
> 0 && s
[0] == comment_line_char
) {
1757 const char *n
= memchr(s
, '\n', len
);
1762 strbuf_add(buf
, s
, count
);
1766 strbuf_add_commented_lines(buf
, s
, len
);
1769 /* Does the current fixup chain contain a squash command? */
1770 static int seen_squash(struct replay_opts
*opts
)
1772 return starts_with(opts
->current_fixups
.buf
, "squash") ||
1773 strstr(opts
->current_fixups
.buf
, "\nsquash");
1776 static void update_comment_bufs(struct strbuf
*buf1
, struct strbuf
*buf2
, int n
)
1778 strbuf_setlen(buf1
, 2);
1779 strbuf_addf(buf1
, _(nth_commit_msg_fmt
), n
);
1780 strbuf_addch(buf1
, '\n');
1781 strbuf_setlen(buf2
, 2);
1782 strbuf_addf(buf2
, _(skip_nth_commit_msg_fmt
), n
);
1783 strbuf_addch(buf2
, '\n');
1787 * Comment out any un-commented commit messages, updating the message comments
1788 * to say they will be skipped but do not comment out the empty lines that
1789 * surround commit messages and their comments.
1791 static void update_squash_message_for_fixup(struct strbuf
*msg
)
1793 void (*copy_lines
)(struct strbuf
*, const void *, size_t) = strbuf_add
;
1794 struct strbuf buf1
= STRBUF_INIT
, buf2
= STRBUF_INIT
;
1795 const char *s
, *start
;
1797 size_t orig_msg_len
;
1800 strbuf_addf(&buf1
, "# %s\n", _(first_commit_msg_str
));
1801 strbuf_addf(&buf2
, "# %s\n", _(skip_first_commit_msg_str
));
1802 s
= start
= orig_msg
= strbuf_detach(msg
, &orig_msg_len
);
1806 if (skip_prefix(s
, buf1
.buf
, &next
)) {
1808 * Copy the last message, preserving the blank line
1809 * preceding the current line
1811 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1812 copy_lines(msg
, start
, s
- start
- off
);
1814 strbuf_addch(msg
, '\n');
1816 * The next message needs to be commented out but the
1817 * message header is already commented out so just copy
1818 * it and the blank line that follows it.
1820 strbuf_addbuf(msg
, &buf2
);
1822 strbuf_addch(msg
, *next
++);
1824 copy_lines
= add_commented_lines
;
1825 update_comment_bufs(&buf1
, &buf2
, ++i
);
1826 } else if (skip_prefix(s
, buf2
.buf
, &next
)) {
1827 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1828 copy_lines(msg
, start
, s
- start
- off
);
1831 copy_lines
= strbuf_add
;
1832 update_comment_bufs(&buf1
, &buf2
, ++i
);
1834 s
= strchr(s
, '\n');
1839 copy_lines(msg
, start
, orig_msg_len
- (start
- orig_msg
));
1841 strbuf_release(&buf1
);
1842 strbuf_release(&buf2
);
1845 static int append_squash_message(struct strbuf
*buf
, const char *body
,
1846 enum todo_command command
, struct replay_opts
*opts
,
1849 const char *fixup_msg
;
1850 size_t commented_len
= 0, fixup_off
;
1852 * amend is non-interactive and not normally used with fixup!
1853 * or squash! commits, so only comment out those subjects when
1854 * squashing commit messages.
1856 if (starts_with(body
, "amend!") ||
1857 ((command
== TODO_SQUASH
|| seen_squash(opts
)) &&
1858 (starts_with(body
, "squash!") || starts_with(body
, "fixup!"))))
1859 commented_len
= commit_subject_length(body
);
1861 strbuf_addf(buf
, "\n%c ", comment_line_char
);
1862 strbuf_addf(buf
, _(nth_commit_msg_fmt
),
1863 ++opts
->current_fixup_count
+ 1);
1864 strbuf_addstr(buf
, "\n\n");
1865 strbuf_add_commented_lines(buf
, body
, commented_len
);
1866 /* buf->buf may be reallocated so store an offset into the buffer */
1867 fixup_off
= buf
->len
;
1868 strbuf_addstr(buf
, body
+ commented_len
);
1870 /* fixup -C after squash behaves like squash */
1871 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
)) {
1873 * We're replacing the commit message so we need to
1874 * append the Signed-off-by: trailer if the user
1875 * requested '--signoff'.
1878 append_signoff(buf
, 0, 0);
1880 if ((command
== TODO_FIXUP
) &&
1881 (flag
& TODO_REPLACE_FIXUP_MSG
) &&
1882 (file_exists(rebase_path_fixup_msg()) ||
1883 !file_exists(rebase_path_squash_msg()))) {
1884 fixup_msg
= skip_blank_lines(buf
->buf
+ fixup_off
);
1885 if (write_message(fixup_msg
, strlen(fixup_msg
),
1886 rebase_path_fixup_msg(), 0) < 0)
1887 return error(_("cannot write '%s'"),
1888 rebase_path_fixup_msg());
1890 unlink(rebase_path_fixup_msg());
1893 unlink(rebase_path_fixup_msg());
1899 static int update_squash_messages(struct repository
*r
,
1900 enum todo_command command
,
1901 struct commit
*commit
,
1902 struct replay_opts
*opts
,
1905 struct strbuf buf
= STRBUF_INIT
;
1907 const char *message
, *body
;
1908 const char *encoding
= get_commit_output_encoding();
1910 if (opts
->current_fixup_count
> 0) {
1911 struct strbuf header
= STRBUF_INIT
;
1914 if (strbuf_read_file(&buf
, rebase_path_squash_msg(), 9) <= 0)
1915 return error(_("could not read '%s'"),
1916 rebase_path_squash_msg());
1918 eol
= buf
.buf
[0] != comment_line_char
?
1919 buf
.buf
: strchrnul(buf
.buf
, '\n');
1921 strbuf_addf(&header
, "%c ", comment_line_char
);
1922 strbuf_addf(&header
, _(combined_commit_msg_fmt
),
1923 opts
->current_fixup_count
+ 2);
1924 strbuf_splice(&buf
, 0, eol
- buf
.buf
, header
.buf
, header
.len
);
1925 strbuf_release(&header
);
1926 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
))
1927 update_squash_message_for_fixup(&buf
);
1929 struct object_id head
;
1930 struct commit
*head_commit
;
1931 const char *head_message
, *body
;
1933 if (get_oid("HEAD", &head
))
1934 return error(_("need a HEAD to fixup"));
1935 if (!(head_commit
= lookup_commit_reference(r
, &head
)))
1936 return error(_("could not read HEAD"));
1937 if (!(head_message
= logmsg_reencode(head_commit
, NULL
, encoding
)))
1938 return error(_("could not read HEAD's commit message"));
1940 find_commit_subject(head_message
, &body
);
1941 if (command
== TODO_FIXUP
&& !flag
&& write_message(body
, strlen(body
),
1942 rebase_path_fixup_msg(), 0) < 0) {
1943 unuse_commit_buffer(head_commit
, head_message
);
1944 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
1946 strbuf_addf(&buf
, "%c ", comment_line_char
);
1947 strbuf_addf(&buf
, _(combined_commit_msg_fmt
), 2);
1948 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
1949 strbuf_addstr(&buf
, is_fixup_flag(command
, flag
) ?
1950 _(skip_first_commit_msg_str
) :
1951 _(first_commit_msg_str
));
1952 strbuf_addstr(&buf
, "\n\n");
1953 if (is_fixup_flag(command
, flag
))
1954 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
1956 strbuf_addstr(&buf
, body
);
1958 unuse_commit_buffer(head_commit
, head_message
);
1961 if (!(message
= logmsg_reencode(commit
, NULL
, encoding
)))
1962 return error(_("could not read commit message of %s"),
1963 oid_to_hex(&commit
->object
.oid
));
1964 find_commit_subject(message
, &body
);
1966 if (command
== TODO_SQUASH
|| is_fixup_flag(command
, flag
)) {
1967 res
= append_squash_message(&buf
, body
, command
, opts
, flag
);
1968 } else if (command
== TODO_FIXUP
) {
1969 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
1970 strbuf_addf(&buf
, _(skip_nth_commit_msg_fmt
),
1971 ++opts
->current_fixup_count
+ 1);
1972 strbuf_addstr(&buf
, "\n\n");
1973 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
1975 return error(_("unknown command: %d"), command
);
1976 unuse_commit_buffer(commit
, message
);
1979 res
= write_message(buf
.buf
, buf
.len
, rebase_path_squash_msg(),
1981 strbuf_release(&buf
);
1984 strbuf_addf(&opts
->current_fixups
, "%s%s %s",
1985 opts
->current_fixups
.len
? "\n" : "",
1986 command_to_string(command
),
1987 oid_to_hex(&commit
->object
.oid
));
1988 res
= write_message(opts
->current_fixups
.buf
,
1989 opts
->current_fixups
.len
,
1990 rebase_path_current_fixups(), 0);
1996 static void flush_rewritten_pending(void)
1998 struct strbuf buf
= STRBUF_INIT
;
1999 struct object_id newoid
;
2002 if (strbuf_read_file(&buf
, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ
+ 1) * 2) > 0 &&
2003 !get_oid("HEAD", &newoid
) &&
2004 (out
= fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
2005 char *bol
= buf
.buf
, *eol
;
2008 eol
= strchrnul(bol
, '\n');
2009 fprintf(out
, "%.*s %s\n", (int)(eol
- bol
),
2010 bol
, oid_to_hex(&newoid
));
2016 unlink(rebase_path_rewritten_pending());
2018 strbuf_release(&buf
);
2021 static void record_in_rewritten(struct object_id
*oid
,
2022 enum todo_command next_command
)
2024 FILE *out
= fopen_or_warn(rebase_path_rewritten_pending(), "a");
2029 fprintf(out
, "%s\n", oid_to_hex(oid
));
2032 if (!is_fixup(next_command
))
2033 flush_rewritten_pending();
2036 static int should_edit(struct replay_opts
*opts
) {
2039 * Note that we only handle the case of non-conflicted
2040 * commits; continue_single_pick() handles the conflicted
2041 * commits itself instead of calling this function.
2043 return (opts
->action
== REPLAY_REVERT
&& isatty(0)) ? 1 : 0;
2047 static int do_pick_commit(struct repository
*r
,
2048 struct todo_item
*item
,
2049 struct replay_opts
*opts
,
2050 int final_fixup
, int *check_todo
)
2052 unsigned int flags
= should_edit(opts
) ? EDIT_MSG
: 0;
2053 const char *msg_file
= should_edit(opts
) ? NULL
: git_path_merge_msg(r
);
2054 struct object_id head
;
2055 struct commit
*base
, *next
, *parent
;
2056 const char *base_label
, *next_label
;
2057 char *author
= NULL
;
2058 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
2059 struct strbuf msgbuf
= STRBUF_INIT
;
2060 int res
, unborn
= 0, reword
= 0, allow
, drop_commit
;
2061 enum todo_command command
= item
->command
;
2062 struct commit
*commit
= item
->commit
;
2064 if (opts
->no_commit
) {
2066 * We do not intend to commit immediately. We just want to
2067 * merge the differences in, so let's compute the tree
2068 * that represents the "current" state for merge-recursive
2071 if (write_index_as_tree(&head
, r
->index
, r
->index_file
, 0, NULL
))
2072 return error(_("your index file is unmerged."));
2074 unborn
= get_oid("HEAD", &head
);
2075 /* Do we want to generate a root commit? */
2076 if (is_pick_or_similar(command
) && opts
->have_squash_onto
&&
2077 oideq(&head
, &opts
->squash_onto
)) {
2078 if (is_fixup(command
))
2079 return error(_("cannot fixup root commit"));
2080 flags
|= CREATE_ROOT_COMMIT
;
2083 oidcpy(&head
, the_hash_algo
->empty_tree
);
2084 if (index_differs_from(r
, unborn
? empty_tree_oid_hex() : "HEAD",
2086 return error_dirty_index(r
, opts
);
2088 discard_index(r
->index
);
2090 if (!commit
->parents
)
2092 else if (commit
->parents
->next
) {
2093 /* Reverting or cherry-picking a merge commit */
2095 struct commit_list
*p
;
2097 if (!opts
->mainline
)
2098 return error(_("commit %s is a merge but no -m option was given."),
2099 oid_to_hex(&commit
->object
.oid
));
2101 for (cnt
= 1, p
= commit
->parents
;
2102 cnt
!= opts
->mainline
&& p
;
2105 if (cnt
!= opts
->mainline
|| !p
)
2106 return error(_("commit %s does not have parent %d"),
2107 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2109 } else if (1 < opts
->mainline
)
2111 * Non-first parent explicitly specified as mainline for
2114 return error(_("commit %s does not have parent %d"),
2115 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2117 parent
= commit
->parents
->item
;
2119 if (get_message(commit
, &msg
) != 0)
2120 return error(_("cannot get commit message for %s"),
2121 oid_to_hex(&commit
->object
.oid
));
2123 if (opts
->allow_ff
&& !is_fixup(command
) &&
2124 ((parent
&& oideq(&parent
->object
.oid
, &head
)) ||
2125 (!parent
&& unborn
))) {
2126 if (is_rebase_i(opts
))
2127 write_author_script(msg
.message
);
2128 res
= fast_forward_to(r
, &commit
->object
.oid
, &head
, unborn
,
2130 if (res
|| command
!= TODO_REWORD
)
2134 goto fast_forward_edit
;
2136 if (parent
&& parse_commit(parent
) < 0)
2137 /* TRANSLATORS: The first %s will be a "todo" command like
2138 "revert" or "pick", the second %s a SHA1. */
2139 return error(_("%s: cannot parse parent commit %s"),
2140 command_to_string(command
),
2141 oid_to_hex(&parent
->object
.oid
));
2144 * "commit" is an existing commit. We would want to apply
2145 * the difference it introduces since its first parent "prev"
2146 * on top of the current HEAD if we are cherry-pick. Or the
2147 * reverse of it if we are revert.
2150 if (command
== TODO_REVERT
) {
2152 base_label
= msg
.label
;
2154 next_label
= msg
.parent_label
;
2155 strbuf_addstr(&msgbuf
, "Revert \"");
2156 strbuf_addstr(&msgbuf
, msg
.subject
);
2157 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
2158 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
2160 if (commit
->parents
&& commit
->parents
->next
) {
2161 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
2162 strbuf_addstr(&msgbuf
, oid_to_hex(&parent
->object
.oid
));
2164 strbuf_addstr(&msgbuf
, ".\n");
2169 base_label
= msg
.parent_label
;
2171 next_label
= msg
.label
;
2173 /* Append the commit log message to msgbuf. */
2174 if (find_commit_subject(msg
.message
, &p
))
2175 strbuf_addstr(&msgbuf
, p
);
2177 if (opts
->record_origin
) {
2178 strbuf_complete_line(&msgbuf
);
2179 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
2180 strbuf_addch(&msgbuf
, '\n');
2181 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
2182 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
2183 strbuf_addstr(&msgbuf
, ")\n");
2185 if (!is_fixup(command
))
2186 author
= get_author(msg
.message
);
2189 if (command
== TODO_REWORD
)
2191 else if (is_fixup(command
)) {
2192 if (update_squash_messages(r
, command
, commit
,
2197 msg_file
= rebase_path_squash_msg();
2198 else if (file_exists(rebase_path_fixup_msg())) {
2199 flags
|= VERBATIM_MSG
;
2200 msg_file
= rebase_path_fixup_msg();
2202 const char *dest
= git_path_squash_msg(r
);
2204 if (copy_file(dest
, rebase_path_squash_msg(), 0666))
2205 return error(_("could not rename '%s' to '%s'"),
2206 rebase_path_squash_msg(), dest
);
2207 unlink(git_path_merge_msg(r
));
2213 if (opts
->signoff
&& !is_fixup(command
))
2214 append_signoff(&msgbuf
, 0, 0);
2216 if (is_rebase_i(opts
) && write_author_script(msg
.message
) < 0)
2218 else if (!opts
->strategy
||
2219 !strcmp(opts
->strategy
, "recursive") ||
2220 !strcmp(opts
->strategy
, "ort") ||
2221 command
== TODO_REVERT
) {
2222 res
= do_recursive_merge(r
, base
, next
, base_label
, next_label
,
2223 &head
, &msgbuf
, opts
);
2227 res
|= write_message(msgbuf
.buf
, msgbuf
.len
,
2228 git_path_merge_msg(r
), 0);
2230 struct commit_list
*common
= NULL
;
2231 struct commit_list
*remotes
= NULL
;
2233 res
= write_message(msgbuf
.buf
, msgbuf
.len
,
2234 git_path_merge_msg(r
), 0);
2236 commit_list_insert(base
, &common
);
2237 commit_list_insert(next
, &remotes
);
2238 res
|= try_merge_command(r
, opts
->strategy
,
2239 opts
->xopts_nr
, (const char **)opts
->xopts
,
2240 common
, oid_to_hex(&head
), remotes
);
2241 free_commit_list(common
);
2242 free_commit_list(remotes
);
2244 strbuf_release(&msgbuf
);
2247 * If the merge was clean or if it failed due to conflict, we write
2248 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2249 * However, if the merge did not even start, then we don't want to
2252 if ((command
== TODO_PICK
|| command
== TODO_REWORD
||
2253 command
== TODO_EDIT
) && !opts
->no_commit
&&
2254 (res
== 0 || res
== 1) &&
2255 update_ref(NULL
, "CHERRY_PICK_HEAD", &commit
->object
.oid
, NULL
,
2256 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2258 if (command
== TODO_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1) &&
2259 update_ref(NULL
, "REVERT_HEAD", &commit
->object
.oid
, NULL
,
2260 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2264 error(command
== TODO_REVERT
2265 ? _("could not revert %s... %s")
2266 : _("could not apply %s... %s"),
2267 short_commit_name(commit
), msg
.subject
);
2268 print_advice(r
, res
== 1, opts
);
2269 repo_rerere(r
, opts
->allow_rerere_auto
);
2274 allow
= allow_empty(r
, opts
, commit
);
2278 } else if (allow
== 1) {
2279 flags
|= ALLOW_EMPTY
;
2280 } else if (allow
== 2) {
2282 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
2284 unlink(git_path_merge_msg(r
));
2285 unlink(git_path_auto_merge(r
));
2287 _("dropping %s %s -- patch contents already upstream\n"),
2288 oid_to_hex(&commit
->object
.oid
), msg
.subject
);
2289 } /* else allow == 0 and there's nothing special to do */
2290 if (!opts
->no_commit
&& !drop_commit
) {
2291 if (author
|| command
== TODO_REVERT
|| (flags
& AMEND_MSG
))
2292 res
= do_commit(r
, msg_file
, author
, opts
, flags
,
2293 commit
? &commit
->object
.oid
: NULL
);
2295 res
= error(_("unable to parse commit author"));
2296 *check_todo
= !!(flags
& EDIT_MSG
);
2297 if (!res
&& reword
) {
2299 res
= run_git_commit(NULL
, opts
, EDIT_MSG
|
2300 VERIFY_MSG
| AMEND_MSG
|
2301 (flags
& ALLOW_EMPTY
));
2307 if (!res
&& final_fixup
) {
2308 unlink(rebase_path_fixup_msg());
2309 unlink(rebase_path_squash_msg());
2310 unlink(rebase_path_current_fixups());
2311 strbuf_reset(&opts
->current_fixups
);
2312 opts
->current_fixup_count
= 0;
2316 free_message(commit
, &msg
);
2318 update_abort_safety_file();
2323 static int prepare_revs(struct replay_opts
*opts
)
2326 * picking (but not reverting) ranges (but not individual revisions)
2327 * should be done in reverse
2329 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
2330 opts
->revs
->reverse
^= 1;
2332 if (prepare_revision_walk(opts
->revs
))
2333 return error(_("revision walk setup failed"));
2338 static int read_and_refresh_cache(struct repository
*r
,
2339 struct replay_opts
*opts
)
2341 struct lock_file index_lock
= LOCK_INIT
;
2342 int index_fd
= repo_hold_locked_index(r
, &index_lock
, 0);
2343 if (repo_read_index(r
) < 0) {
2344 rollback_lock_file(&index_lock
);
2345 return error(_("git %s: failed to read the index"),
2346 _(action_name(opts
)));
2348 refresh_index(r
->index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
2349 if (index_fd
>= 0) {
2350 if (write_locked_index(r
->index
, &index_lock
,
2351 COMMIT_LOCK
| SKIP_IF_UNCHANGED
)) {
2352 return error(_("git %s: failed to refresh the index"),
2353 _(action_name(opts
)));
2359 void todo_list_release(struct todo_list
*todo_list
)
2361 strbuf_release(&todo_list
->buf
);
2362 FREE_AND_NULL(todo_list
->items
);
2363 todo_list
->nr
= todo_list
->alloc
= 0;
2366 static struct todo_item
*append_new_todo(struct todo_list
*todo_list
)
2368 ALLOC_GROW(todo_list
->items
, todo_list
->nr
+ 1, todo_list
->alloc
);
2369 todo_list
->total_nr
++;
2370 return todo_list
->items
+ todo_list
->nr
++;
2373 const char *todo_item_get_arg(struct todo_list
*todo_list
,
2374 struct todo_item
*item
)
2376 return todo_list
->buf
.buf
+ item
->arg_offset
;
2379 static int is_command(enum todo_command command
, const char **bol
)
2381 const char *str
= todo_command_info
[command
].str
;
2382 const char nick
= todo_command_info
[command
].c
;
2383 const char *p
= *bol
+ 1;
2385 return skip_prefix(*bol
, str
, bol
) ||
2386 ((nick
&& **bol
== nick
) &&
2387 (*p
== ' ' || *p
== '\t' || *p
== '\n' || *p
== '\r' || !*p
) &&
2391 static int parse_insn_line(struct repository
*r
, struct todo_item
*item
,
2392 const char *buf
, const char *bol
, char *eol
)
2394 struct object_id commit_oid
;
2395 char *end_of_object_name
;
2396 int i
, saved
, status
, padding
;
2401 bol
+= strspn(bol
, " \t");
2403 if (bol
== eol
|| *bol
== '\r' || *bol
== comment_line_char
) {
2404 item
->command
= TODO_COMMENT
;
2405 item
->commit
= NULL
;
2406 item
->arg_offset
= bol
- buf
;
2407 item
->arg_len
= eol
- bol
;
2411 for (i
= 0; i
< TODO_COMMENT
; i
++)
2412 if (is_command(i
, &bol
)) {
2416 if (i
>= TODO_COMMENT
)
2419 /* Eat up extra spaces/ tabs before object name */
2420 padding
= strspn(bol
, " \t");
2423 if (item
->command
== TODO_NOOP
|| item
->command
== TODO_BREAK
) {
2425 return error(_("%s does not accept arguments: '%s'"),
2426 command_to_string(item
->command
), bol
);
2427 item
->commit
= NULL
;
2428 item
->arg_offset
= bol
- buf
;
2429 item
->arg_len
= eol
- bol
;
2434 return error(_("missing arguments for %s"),
2435 command_to_string(item
->command
));
2437 if (item
->command
== TODO_EXEC
|| item
->command
== TODO_LABEL
||
2438 item
->command
== TODO_RESET
) {
2439 item
->commit
= NULL
;
2440 item
->arg_offset
= bol
- buf
;
2441 item
->arg_len
= (int)(eol
- bol
);
2445 if (item
->command
== TODO_FIXUP
) {
2446 if (skip_prefix(bol
, "-C", &bol
) &&
2447 (*bol
== ' ' || *bol
== '\t')) {
2448 bol
+= strspn(bol
, " \t");
2449 item
->flags
|= TODO_REPLACE_FIXUP_MSG
;
2450 } else if (skip_prefix(bol
, "-c", &bol
) &&
2451 (*bol
== ' ' || *bol
== '\t')) {
2452 bol
+= strspn(bol
, " \t");
2453 item
->flags
|= TODO_EDIT_FIXUP_MSG
;
2457 if (item
->command
== TODO_MERGE
) {
2458 if (skip_prefix(bol
, "-C", &bol
))
2459 bol
+= strspn(bol
, " \t");
2460 else if (skip_prefix(bol
, "-c", &bol
)) {
2461 bol
+= strspn(bol
, " \t");
2462 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2464 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2465 item
->commit
= NULL
;
2466 item
->arg_offset
= bol
- buf
;
2467 item
->arg_len
= (int)(eol
- bol
);
2472 end_of_object_name
= (char *) bol
+ strcspn(bol
, " \t\n");
2473 saved
= *end_of_object_name
;
2474 *end_of_object_name
= '\0';
2475 status
= get_oid(bol
, &commit_oid
);
2477 error(_("could not parse '%s'"), bol
); /* return later */
2478 *end_of_object_name
= saved
;
2480 bol
= end_of_object_name
+ strspn(end_of_object_name
, " \t");
2481 item
->arg_offset
= bol
- buf
;
2482 item
->arg_len
= (int)(eol
- bol
);
2487 item
->commit
= lookup_commit_reference(r
, &commit_oid
);
2488 return item
->commit
? 0 : -1;
2491 int sequencer_get_last_command(struct repository
*r
, enum replay_action
*action
)
2493 const char *todo_file
, *bol
;
2494 struct strbuf buf
= STRBUF_INIT
;
2497 todo_file
= git_path_todo_file();
2498 if (strbuf_read_file(&buf
, todo_file
, 0) < 0) {
2499 if (errno
== ENOENT
|| errno
== ENOTDIR
)
2502 return error_errno("unable to open '%s'", todo_file
);
2504 bol
= buf
.buf
+ strspn(buf
.buf
, " \t\r\n");
2505 if (is_command(TODO_PICK
, &bol
) && (*bol
== ' ' || *bol
== '\t'))
2506 *action
= REPLAY_PICK
;
2507 else if (is_command(TODO_REVERT
, &bol
) &&
2508 (*bol
== ' ' || *bol
== '\t'))
2509 *action
= REPLAY_REVERT
;
2513 strbuf_release(&buf
);
2518 int todo_list_parse_insn_buffer(struct repository
*r
, char *buf
,
2519 struct todo_list
*todo_list
)
2521 struct todo_item
*item
;
2522 char *p
= buf
, *next_p
;
2523 int i
, res
= 0, fixup_okay
= file_exists(rebase_path_done());
2525 todo_list
->current
= todo_list
->nr
= 0;
2527 for (i
= 1; *p
; i
++, p
= next_p
) {
2528 char *eol
= strchrnul(p
, '\n');
2530 next_p
= *eol
? eol
+ 1 /* skip LF */ : eol
;
2532 if (p
!= eol
&& eol
[-1] == '\r')
2533 eol
--; /* strip Carriage Return */
2535 item
= append_new_todo(todo_list
);
2536 item
->offset_in_buf
= p
- todo_list
->buf
.buf
;
2537 if (parse_insn_line(r
, item
, buf
, p
, eol
)) {
2538 res
= error(_("invalid line %d: %.*s"),
2539 i
, (int)(eol
- p
), p
);
2540 item
->command
= TODO_COMMENT
+ 1;
2541 item
->arg_offset
= p
- buf
;
2542 item
->arg_len
= (int)(eol
- p
);
2543 item
->commit
= NULL
;
2548 else if (is_fixup(item
->command
))
2549 return error(_("cannot '%s' without a previous commit"),
2550 command_to_string(item
->command
));
2551 else if (!is_noop(item
->command
))
2558 static int count_commands(struct todo_list
*todo_list
)
2562 for (i
= 0; i
< todo_list
->nr
; i
++)
2563 if (todo_list
->items
[i
].command
!= TODO_COMMENT
)
2569 static int get_item_line_offset(struct todo_list
*todo_list
, int index
)
2571 return index
< todo_list
->nr
?
2572 todo_list
->items
[index
].offset_in_buf
: todo_list
->buf
.len
;
2575 static const char *get_item_line(struct todo_list
*todo_list
, int index
)
2577 return todo_list
->buf
.buf
+ get_item_line_offset(todo_list
, index
);
2580 static int get_item_line_length(struct todo_list
*todo_list
, int index
)
2582 return get_item_line_offset(todo_list
, index
+ 1)
2583 - get_item_line_offset(todo_list
, index
);
2586 static ssize_t
strbuf_read_file_or_whine(struct strbuf
*sb
, const char *path
)
2591 fd
= open(path
, O_RDONLY
);
2593 return error_errno(_("could not open '%s'"), path
);
2594 len
= strbuf_read(sb
, fd
, 0);
2597 return error(_("could not read '%s'."), path
);
2601 static int have_finished_the_last_pick(void)
2603 struct strbuf buf
= STRBUF_INIT
;
2605 const char *todo_path
= git_path_todo_file();
2608 if (strbuf_read_file(&buf
, todo_path
, 0) < 0) {
2609 if (errno
== ENOENT
) {
2612 error_errno("unable to open '%s'", todo_path
);
2616 /* If there is only one line then we are done */
2617 eol
= strchr(buf
.buf
, '\n');
2618 if (!eol
|| !eol
[1])
2621 strbuf_release(&buf
);
2626 void sequencer_post_commit_cleanup(struct repository
*r
, int verbose
)
2628 struct replay_opts opts
= REPLAY_OPTS_INIT
;
2629 int need_cleanup
= 0;
2631 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
2632 if (!refs_delete_ref(get_main_ref_store(r
), "",
2633 "CHERRY_PICK_HEAD", NULL
, 0) &&
2635 warning(_("cancelling a cherry picking in progress"));
2636 opts
.action
= REPLAY_PICK
;
2640 if (refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
2641 if (!refs_delete_ref(get_main_ref_store(r
), "", "REVERT_HEAD",
2644 warning(_("cancelling a revert in progress"));
2645 opts
.action
= REPLAY_REVERT
;
2649 unlink(git_path_auto_merge(r
));
2654 if (!have_finished_the_last_pick())
2657 sequencer_remove_state(&opts
);
2660 static void todo_list_write_total_nr(struct todo_list
*todo_list
)
2662 FILE *f
= fopen_or_warn(rebase_path_msgtotal(), "w");
2665 fprintf(f
, "%d\n", todo_list
->total_nr
);
2670 static int read_populate_todo(struct repository
*r
,
2671 struct todo_list
*todo_list
,
2672 struct replay_opts
*opts
)
2675 const char *todo_file
= get_todo_path(opts
);
2678 strbuf_reset(&todo_list
->buf
);
2679 if (strbuf_read_file_or_whine(&todo_list
->buf
, todo_file
) < 0)
2682 res
= stat(todo_file
, &st
);
2684 return error(_("could not stat '%s'"), todo_file
);
2685 fill_stat_data(&todo_list
->stat
, &st
);
2687 res
= todo_list_parse_insn_buffer(r
, todo_list
->buf
.buf
, todo_list
);
2689 if (is_rebase_i(opts
))
2690 return error(_("please fix this using "
2691 "'git rebase --edit-todo'."));
2692 return error(_("unusable instruction sheet: '%s'"), todo_file
);
2695 if (!todo_list
->nr
&&
2696 (!is_rebase_i(opts
) || !file_exists(rebase_path_done())))
2697 return error(_("no commits parsed."));
2699 if (!is_rebase_i(opts
)) {
2700 enum todo_command valid
=
2701 opts
->action
== REPLAY_PICK
? TODO_PICK
: TODO_REVERT
;
2704 for (i
= 0; i
< todo_list
->nr
; i
++)
2705 if (valid
== todo_list
->items
[i
].command
)
2707 else if (valid
== TODO_PICK
)
2708 return error(_("cannot cherry-pick during a revert."));
2710 return error(_("cannot revert during a cherry-pick."));
2713 if (is_rebase_i(opts
)) {
2714 struct todo_list done
= TODO_LIST_INIT
;
2716 if (strbuf_read_file(&done
.buf
, rebase_path_done(), 0) > 0 &&
2717 !todo_list_parse_insn_buffer(r
, done
.buf
.buf
, &done
))
2718 todo_list
->done_nr
= count_commands(&done
);
2720 todo_list
->done_nr
= 0;
2722 todo_list
->total_nr
= todo_list
->done_nr
2723 + count_commands(todo_list
);
2724 todo_list_release(&done
);
2726 todo_list_write_total_nr(todo_list
);
2732 static int git_config_string_dup(char **dest
,
2733 const char *var
, const char *value
)
2736 return config_error_nonbool(var
);
2738 *dest
= xstrdup(value
);
2742 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
2744 struct replay_opts
*opts
= data
;
2749 else if (!strcmp(key
, "options.no-commit"))
2750 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
2751 else if (!strcmp(key
, "options.edit"))
2752 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
2753 else if (!strcmp(key
, "options.allow-empty"))
2755 git_config_bool_or_int(key
, value
, &error_flag
);
2756 else if (!strcmp(key
, "options.allow-empty-message"))
2757 opts
->allow_empty_message
=
2758 git_config_bool_or_int(key
, value
, &error_flag
);
2759 else if (!strcmp(key
, "options.keep-redundant-commits"))
2760 opts
->keep_redundant_commits
=
2761 git_config_bool_or_int(key
, value
, &error_flag
);
2762 else if (!strcmp(key
, "options.signoff"))
2763 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
2764 else if (!strcmp(key
, "options.record-origin"))
2765 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
2766 else if (!strcmp(key
, "options.allow-ff"))
2767 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
2768 else if (!strcmp(key
, "options.mainline"))
2769 opts
->mainline
= git_config_int(key
, value
);
2770 else if (!strcmp(key
, "options.strategy"))
2771 git_config_string_dup(&opts
->strategy
, key
, value
);
2772 else if (!strcmp(key
, "options.gpg-sign"))
2773 git_config_string_dup(&opts
->gpg_sign
, key
, value
);
2774 else if (!strcmp(key
, "options.strategy-option")) {
2775 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
2776 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
2777 } else if (!strcmp(key
, "options.allow-rerere-auto"))
2778 opts
->allow_rerere_auto
=
2779 git_config_bool_or_int(key
, value
, &error_flag
) ?
2780 RERERE_AUTOUPDATE
: RERERE_NOAUTOUPDATE
;
2781 else if (!strcmp(key
, "options.default-msg-cleanup")) {
2782 opts
->explicit_cleanup
= 1;
2783 opts
->default_msg_cleanup
= get_cleanup_mode(value
, 1);
2785 return error(_("invalid key: %s"), key
);
2788 return error(_("invalid value for %s: %s"), key
, value
);
2793 void parse_strategy_opts(struct replay_opts
*opts
, char *raw_opts
)
2796 char *strategy_opts_string
= raw_opts
;
2798 if (*strategy_opts_string
== ' ')
2799 strategy_opts_string
++;
2801 opts
->xopts_nr
= split_cmdline(strategy_opts_string
,
2802 (const char ***)&opts
->xopts
);
2803 for (i
= 0; i
< opts
->xopts_nr
; i
++) {
2804 const char *arg
= opts
->xopts
[i
];
2806 skip_prefix(arg
, "--", &arg
);
2807 opts
->xopts
[i
] = xstrdup(arg
);
2811 static void read_strategy_opts(struct replay_opts
*opts
, struct strbuf
*buf
)
2814 if (!read_oneliner(buf
, rebase_path_strategy(), 0))
2816 opts
->strategy
= strbuf_detach(buf
, NULL
);
2817 if (!read_oneliner(buf
, rebase_path_strategy_opts(), 0))
2820 parse_strategy_opts(opts
, buf
->buf
);
2823 static int read_populate_opts(struct replay_opts
*opts
)
2825 if (is_rebase_i(opts
)) {
2826 struct strbuf buf
= STRBUF_INIT
;
2829 if (read_oneliner(&buf
, rebase_path_gpg_sign_opt(),
2830 READ_ONELINER_SKIP_IF_EMPTY
)) {
2831 if (!starts_with(buf
.buf
, "-S"))
2834 free(opts
->gpg_sign
);
2835 opts
->gpg_sign
= xstrdup(buf
.buf
+ 2);
2840 if (read_oneliner(&buf
, rebase_path_allow_rerere_autoupdate(),
2841 READ_ONELINER_SKIP_IF_EMPTY
)) {
2842 if (!strcmp(buf
.buf
, "--rerere-autoupdate"))
2843 opts
->allow_rerere_auto
= RERERE_AUTOUPDATE
;
2844 else if (!strcmp(buf
.buf
, "--no-rerere-autoupdate"))
2845 opts
->allow_rerere_auto
= RERERE_NOAUTOUPDATE
;
2849 if (file_exists(rebase_path_verbose()))
2852 if (file_exists(rebase_path_quiet()))
2855 if (file_exists(rebase_path_signoff())) {
2860 if (file_exists(rebase_path_cdate_is_adate())) {
2862 opts
->committer_date_is_author_date
= 1;
2865 if (file_exists(rebase_path_ignore_date())) {
2867 opts
->ignore_date
= 1;
2870 if (file_exists(rebase_path_reschedule_failed_exec()))
2871 opts
->reschedule_failed_exec
= 1;
2872 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
2873 opts
->reschedule_failed_exec
= 0;
2875 if (file_exists(rebase_path_drop_redundant_commits()))
2876 opts
->drop_redundant_commits
= 1;
2878 if (file_exists(rebase_path_keep_redundant_commits()))
2879 opts
->keep_redundant_commits
= 1;
2881 read_strategy_opts(opts
, &buf
);
2884 if (read_oneliner(&opts
->current_fixups
,
2885 rebase_path_current_fixups(),
2886 READ_ONELINER_SKIP_IF_EMPTY
)) {
2887 const char *p
= opts
->current_fixups
.buf
;
2888 opts
->current_fixup_count
= 1;
2889 while ((p
= strchr(p
, '\n'))) {
2890 opts
->current_fixup_count
++;
2895 if (read_oneliner(&buf
, rebase_path_squash_onto(), 0)) {
2896 if (get_oid_committish(buf
.buf
, &opts
->squash_onto
) < 0) {
2897 ret
= error(_("unusable squash-onto"));
2900 opts
->have_squash_onto
= 1;
2904 strbuf_release(&buf
);
2908 if (!file_exists(git_path_opts_file()))
2911 * The function git_parse_source(), called from git_config_from_file(),
2912 * may die() in case of a syntactically incorrect file. We do not care
2913 * about this case, though, because we wrote that file ourselves, so we
2914 * are pretty certain that it is syntactically correct.
2916 if (git_config_from_file(populate_opts_cb
, git_path_opts_file(), opts
) < 0)
2917 return error(_("malformed options sheet: '%s'"),
2918 git_path_opts_file());
2922 static void write_strategy_opts(struct replay_opts
*opts
)
2925 struct strbuf buf
= STRBUF_INIT
;
2927 for (i
= 0; i
< opts
->xopts_nr
; ++i
)
2928 strbuf_addf(&buf
, " --%s", opts
->xopts
[i
]);
2930 write_file(rebase_path_strategy_opts(), "%s\n", buf
.buf
);
2931 strbuf_release(&buf
);
2934 int write_basic_state(struct replay_opts
*opts
, const char *head_name
,
2935 struct commit
*onto
, const struct object_id
*orig_head
)
2938 write_file(rebase_path_head_name(), "%s\n", head_name
);
2940 write_file(rebase_path_onto(), "%s\n",
2941 oid_to_hex(&onto
->object
.oid
));
2943 write_file(rebase_path_orig_head(), "%s\n",
2944 oid_to_hex(orig_head
));
2947 write_file(rebase_path_quiet(), "%s", "");
2949 write_file(rebase_path_verbose(), "%s", "");
2951 write_file(rebase_path_strategy(), "%s\n", opts
->strategy
);
2952 if (opts
->xopts_nr
> 0)
2953 write_strategy_opts(opts
);
2955 if (opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
)
2956 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
2957 else if (opts
->allow_rerere_auto
== RERERE_NOAUTOUPDATE
)
2958 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
2961 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts
->gpg_sign
);
2963 write_file(rebase_path_signoff(), "--signoff\n");
2964 if (opts
->drop_redundant_commits
)
2965 write_file(rebase_path_drop_redundant_commits(), "%s", "");
2966 if (opts
->keep_redundant_commits
)
2967 write_file(rebase_path_keep_redundant_commits(), "%s", "");
2968 if (opts
->committer_date_is_author_date
)
2969 write_file(rebase_path_cdate_is_adate(), "%s", "");
2970 if (opts
->ignore_date
)
2971 write_file(rebase_path_ignore_date(), "%s", "");
2972 if (opts
->reschedule_failed_exec
)
2973 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
2975 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
2980 static int walk_revs_populate_todo(struct todo_list
*todo_list
,
2981 struct replay_opts
*opts
)
2983 enum todo_command command
= opts
->action
== REPLAY_PICK
?
2984 TODO_PICK
: TODO_REVERT
;
2985 const char *command_string
= todo_command_info
[command
].str
;
2986 const char *encoding
;
2987 struct commit
*commit
;
2989 if (prepare_revs(opts
))
2992 encoding
= get_log_output_encoding();
2994 while ((commit
= get_revision(opts
->revs
))) {
2995 struct todo_item
*item
= append_new_todo(todo_list
);
2996 const char *commit_buffer
= logmsg_reencode(commit
, NULL
, encoding
);
2997 const char *subject
;
3000 item
->command
= command
;
3001 item
->commit
= commit
;
3002 item
->arg_offset
= 0;
3004 item
->offset_in_buf
= todo_list
->buf
.len
;
3005 subject_len
= find_commit_subject(commit_buffer
, &subject
);
3006 strbuf_addf(&todo_list
->buf
, "%s %s %.*s\n", command_string
,
3007 short_commit_name(commit
), subject_len
, subject
);
3008 unuse_commit_buffer(commit
, commit_buffer
);
3012 return error(_("empty commit set passed"));
3017 static int create_seq_dir(struct repository
*r
)
3019 enum replay_action action
;
3020 const char *in_progress_error
= NULL
;
3021 const char *in_progress_advice
= NULL
;
3022 unsigned int advise_skip
=
3023 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD") ||
3024 refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD");
3026 if (!sequencer_get_last_command(r
, &action
)) {
3029 in_progress_error
= _("revert is already in progress");
3030 in_progress_advice
=
3031 _("try \"git revert (--continue | %s--abort | --quit)\"");
3034 in_progress_error
= _("cherry-pick is already in progress");
3035 in_progress_advice
=
3036 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
3039 BUG("unexpected action in create_seq_dir");
3042 if (in_progress_error
) {
3043 error("%s", in_progress_error
);
3044 if (advice_sequencer_in_use
)
3045 advise(in_progress_advice
,
3046 advise_skip
? "--skip | " : "");
3049 if (mkdir(git_path_seq_dir(), 0777) < 0)
3050 return error_errno(_("could not create sequencer directory '%s'"),
3051 git_path_seq_dir());
3056 static int save_head(const char *head
)
3058 struct lock_file head_lock
= LOCK_INIT
;
3059 struct strbuf buf
= STRBUF_INIT
;
3063 fd
= hold_lock_file_for_update(&head_lock
, git_path_head_file(), 0);
3065 return error_errno(_("could not lock HEAD"));
3066 strbuf_addf(&buf
, "%s\n", head
);
3067 written
= write_in_full(fd
, buf
.buf
, buf
.len
);
3068 strbuf_release(&buf
);
3070 error_errno(_("could not write to '%s'"), git_path_head_file());
3071 rollback_lock_file(&head_lock
);
3074 if (commit_lock_file(&head_lock
) < 0)
3075 return error(_("failed to finalize '%s'"), git_path_head_file());
3079 static int rollback_is_safe(void)
3081 struct strbuf sb
= STRBUF_INIT
;
3082 struct object_id expected_head
, actual_head
;
3084 if (strbuf_read_file(&sb
, git_path_abort_safety_file(), 0) >= 0) {
3086 if (get_oid_hex(sb
.buf
, &expected_head
)) {
3087 strbuf_release(&sb
);
3088 die(_("could not parse %s"), git_path_abort_safety_file());
3090 strbuf_release(&sb
);
3092 else if (errno
== ENOENT
)
3093 oidclr(&expected_head
);
3095 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3097 if (get_oid("HEAD", &actual_head
))
3098 oidclr(&actual_head
);
3100 return oideq(&actual_head
, &expected_head
);
3103 static int reset_merge(const struct object_id
*oid
)
3106 struct strvec argv
= STRVEC_INIT
;
3108 strvec_pushl(&argv
, "reset", "--merge", NULL
);
3110 if (!is_null_oid(oid
))
3111 strvec_push(&argv
, oid_to_hex(oid
));
3113 ret
= run_command_v_opt(argv
.v
, RUN_GIT_CMD
);
3114 strvec_clear(&argv
);
3119 static int rollback_single_pick(struct repository
*r
)
3121 struct object_id head_oid
;
3123 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
3124 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
3125 return error(_("no cherry-pick or revert in progress"));
3126 if (read_ref_full("HEAD", 0, &head_oid
, NULL
))
3127 return error(_("cannot resolve HEAD"));
3128 if (is_null_oid(&head_oid
))
3129 return error(_("cannot abort from a branch yet to be born"));
3130 return reset_merge(&head_oid
);
3133 static int skip_single_pick(void)
3135 struct object_id head
;
3137 if (read_ref_full("HEAD", 0, &head
, NULL
))
3138 return error(_("cannot resolve HEAD"));
3139 return reset_merge(&head
);
3142 int sequencer_rollback(struct repository
*r
, struct replay_opts
*opts
)
3145 struct object_id oid
;
3146 struct strbuf buf
= STRBUF_INIT
;
3149 f
= fopen(git_path_head_file(), "r");
3150 if (!f
&& errno
== ENOENT
) {
3152 * There is no multiple-cherry-pick in progress.
3153 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3154 * a single-cherry-pick in progress, abort that.
3156 return rollback_single_pick(r
);
3159 return error_errno(_("cannot open '%s'"), git_path_head_file());
3160 if (strbuf_getline_lf(&buf
, f
)) {
3161 error(_("cannot read '%s': %s"), git_path_head_file(),
3162 ferror(f
) ? strerror(errno
) : _("unexpected end of file"));
3167 if (parse_oid_hex(buf
.buf
, &oid
, &p
) || *p
!= '\0') {
3168 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
3169 git_path_head_file());
3172 if (is_null_oid(&oid
)) {
3173 error(_("cannot abort from a branch yet to be born"));
3177 if (!rollback_is_safe()) {
3178 /* Do not error, just do not rollback */
3179 warning(_("You seem to have moved HEAD. "
3180 "Not rewinding, check your HEAD!"));
3182 if (reset_merge(&oid
))
3184 strbuf_release(&buf
);
3185 return sequencer_remove_state(opts
);
3187 strbuf_release(&buf
);
3191 int sequencer_skip(struct repository
*r
, struct replay_opts
*opts
)
3193 enum replay_action action
= -1;
3194 sequencer_get_last_command(r
, &action
);
3197 * Check whether the subcommand requested to skip the commit is actually
3198 * in progress and that it's safe to skip the commit.
3200 * opts->action tells us which subcommand requested to skip the commit.
3201 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3202 * action is in progress and we can skip the commit.
3204 * Otherwise we check that the last instruction was related to the
3205 * particular subcommand we're trying to execute and barf if that's not
3208 * Finally we check that the rollback is "safe", i.e., has the HEAD
3209 * moved? In this case, it doesn't make sense to "reset the merge" and
3210 * "skip the commit" as the user already handled this by committing. But
3211 * we'd not want to barf here, instead give advice on how to proceed. We
3212 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3213 * it gets removed when the user commits, so if it still exists we're
3214 * sure the user can't have committed before.
3216 switch (opts
->action
) {
3218 if (!refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
3219 if (action
!= REPLAY_REVERT
)
3220 return error(_("no revert in progress"));
3221 if (!rollback_is_safe())
3226 if (!refs_ref_exists(get_main_ref_store(r
),
3227 "CHERRY_PICK_HEAD")) {
3228 if (action
!= REPLAY_PICK
)
3229 return error(_("no cherry-pick in progress"));
3230 if (!rollback_is_safe())
3235 BUG("unexpected action in sequencer_skip");
3238 if (skip_single_pick())
3239 return error(_("failed to skip the commit"));
3240 if (!is_directory(git_path_seq_dir()))
3243 return sequencer_continue(r
, opts
);
3246 error(_("there is nothing to skip"));
3248 if (advice_resolve_conflict
) {
3249 advise(_("have you committed already?\n"
3250 "try \"git %s --continue\""),
3251 action
== REPLAY_REVERT
? "revert" : "cherry-pick");
3256 static int save_todo(struct todo_list
*todo_list
, struct replay_opts
*opts
)
3258 struct lock_file todo_lock
= LOCK_INIT
;
3259 const char *todo_path
= get_todo_path(opts
);
3260 int next
= todo_list
->current
, offset
, fd
;
3263 * rebase -i writes "git-rebase-todo" without the currently executing
3264 * command, appending it to "done" instead.
3266 if (is_rebase_i(opts
))
3269 fd
= hold_lock_file_for_update(&todo_lock
, todo_path
, 0);
3271 return error_errno(_("could not lock '%s'"), todo_path
);
3272 offset
= get_item_line_offset(todo_list
, next
);
3273 if (write_in_full(fd
, todo_list
->buf
.buf
+ offset
,
3274 todo_list
->buf
.len
- offset
) < 0)
3275 return error_errno(_("could not write to '%s'"), todo_path
);
3276 if (commit_lock_file(&todo_lock
) < 0)
3277 return error(_("failed to finalize '%s'"), todo_path
);
3279 if (is_rebase_i(opts
) && next
> 0) {
3280 const char *done
= rebase_path_done();
3281 int fd
= open(done
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
3286 if (write_in_full(fd
, get_item_line(todo_list
, next
- 1),
3287 get_item_line_length(todo_list
, next
- 1))
3289 ret
= error_errno(_("could not write to '%s'"), done
);
3291 ret
= error_errno(_("failed to finalize '%s'"), done
);
3297 static int save_opts(struct replay_opts
*opts
)
3299 const char *opts_file
= git_path_opts_file();
3302 if (opts
->no_commit
)
3303 res
|= git_config_set_in_file_gently(opts_file
,
3304 "options.no-commit", "true");
3305 if (opts
->edit
>= 0)
3306 res
|= git_config_set_in_file_gently(opts_file
, "options.edit",
3307 opts
->edit
? "true" : "false");
3308 if (opts
->allow_empty
)
3309 res
|= git_config_set_in_file_gently(opts_file
,
3310 "options.allow-empty", "true");
3311 if (opts
->allow_empty_message
)
3312 res
|= git_config_set_in_file_gently(opts_file
,
3313 "options.allow-empty-message", "true");
3314 if (opts
->keep_redundant_commits
)
3315 res
|= git_config_set_in_file_gently(opts_file
,
3316 "options.keep-redundant-commits", "true");
3318 res
|= git_config_set_in_file_gently(opts_file
,
3319 "options.signoff", "true");
3320 if (opts
->record_origin
)
3321 res
|= git_config_set_in_file_gently(opts_file
,
3322 "options.record-origin", "true");
3324 res
|= git_config_set_in_file_gently(opts_file
,
3325 "options.allow-ff", "true");
3326 if (opts
->mainline
) {
3327 struct strbuf buf
= STRBUF_INIT
;
3328 strbuf_addf(&buf
, "%d", opts
->mainline
);
3329 res
|= git_config_set_in_file_gently(opts_file
,
3330 "options.mainline", buf
.buf
);
3331 strbuf_release(&buf
);
3334 res
|= git_config_set_in_file_gently(opts_file
,
3335 "options.strategy", opts
->strategy
);
3337 res
|= git_config_set_in_file_gently(opts_file
,
3338 "options.gpg-sign", opts
->gpg_sign
);
3341 for (i
= 0; i
< opts
->xopts_nr
; i
++)
3342 res
|= git_config_set_multivar_in_file_gently(opts_file
,
3343 "options.strategy-option",
3344 opts
->xopts
[i
], "^$", 0);
3346 if (opts
->allow_rerere_auto
)
3347 res
|= git_config_set_in_file_gently(opts_file
,
3348 "options.allow-rerere-auto",
3349 opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
?
3352 if (opts
->explicit_cleanup
)
3353 res
|= git_config_set_in_file_gently(opts_file
,
3354 "options.default-msg-cleanup",
3355 describe_cleanup_mode(opts
->default_msg_cleanup
));
3359 static int make_patch(struct repository
*r
,
3360 struct commit
*commit
,
3361 struct replay_opts
*opts
)
3363 struct strbuf buf
= STRBUF_INIT
;
3364 struct rev_info log_tree_opt
;
3365 const char *subject
;
3366 char hex
[GIT_MAX_HEXSZ
+ 1];
3369 oid_to_hex_r(hex
, &commit
->object
.oid
);
3370 if (write_message(hex
, strlen(hex
), rebase_path_stopped_sha(), 1) < 0)
3372 res
|= write_rebase_head(&commit
->object
.oid
);
3374 strbuf_addf(&buf
, "%s/patch", get_dir(opts
));
3375 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
3376 repo_init_revisions(r
, &log_tree_opt
, NULL
);
3377 log_tree_opt
.abbrev
= 0;
3378 log_tree_opt
.diff
= 1;
3379 log_tree_opt
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
3380 log_tree_opt
.disable_stdin
= 1;
3381 log_tree_opt
.no_commit_id
= 1;
3382 log_tree_opt
.diffopt
.file
= fopen(buf
.buf
, "w");
3383 log_tree_opt
.diffopt
.use_color
= GIT_COLOR_NEVER
;
3384 if (!log_tree_opt
.diffopt
.file
)
3385 res
|= error_errno(_("could not open '%s'"), buf
.buf
);
3387 res
|= log_tree_commit(&log_tree_opt
, commit
);
3388 fclose(log_tree_opt
.diffopt
.file
);
3392 strbuf_addf(&buf
, "%s/message", get_dir(opts
));
3393 if (!file_exists(buf
.buf
)) {
3394 const char *encoding
= get_commit_output_encoding();
3395 const char *commit_buffer
= logmsg_reencode(commit
, NULL
, encoding
);
3396 find_commit_subject(commit_buffer
, &subject
);
3397 res
|= write_message(subject
, strlen(subject
), buf
.buf
, 1);
3398 unuse_commit_buffer(commit
, commit_buffer
);
3400 strbuf_release(&buf
);
3405 static int intend_to_amend(void)
3407 struct object_id head
;
3410 if (get_oid("HEAD", &head
))
3411 return error(_("cannot read HEAD"));
3413 p
= oid_to_hex(&head
);
3414 return write_message(p
, strlen(p
), rebase_path_amend(), 1);
3417 static int error_with_patch(struct repository
*r
,
3418 struct commit
*commit
,
3419 const char *subject
, int subject_len
,
3420 struct replay_opts
*opts
,
3421 int exit_code
, int to_amend
)
3424 if (make_patch(r
, commit
, opts
))
3426 } else if (copy_file(rebase_path_message(),
3427 git_path_merge_msg(r
), 0666))
3428 return error(_("unable to copy '%s' to '%s'"),
3429 git_path_merge_msg(r
), rebase_path_message());
3432 if (intend_to_amend())
3436 _("You can amend the commit now, with\n"
3438 " git commit --amend %s\n"
3440 "Once you are satisfied with your changes, run\n"
3442 " git rebase --continue\n"),
3443 gpg_sign_opt_quoted(opts
));
3444 } else if (exit_code
) {
3446 fprintf_ln(stderr
, _("Could not apply %s... %.*s"),
3447 short_commit_name(commit
), subject_len
, subject
);
3450 * We don't have the hash of the parent so
3451 * just print the line from the todo file.
3453 fprintf_ln(stderr
, _("Could not merge %.*s"),
3454 subject_len
, subject
);
3460 static int error_failed_squash(struct repository
*r
,
3461 struct commit
*commit
,
3462 struct replay_opts
*opts
,
3464 const char *subject
)
3466 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3467 return error(_("could not copy '%s' to '%s'"),
3468 rebase_path_squash_msg(), rebase_path_message());
3469 unlink(git_path_merge_msg(r
));
3470 if (copy_file(git_path_merge_msg(r
), rebase_path_message(), 0666))
3471 return error(_("could not copy '%s' to '%s'"),
3472 rebase_path_message(),
3473 git_path_merge_msg(r
));
3474 return error_with_patch(r
, commit
, subject
, subject_len
, opts
, 1, 0);
3477 static int do_exec(struct repository
*r
, const char *command_line
)
3479 struct strvec child_env
= STRVEC_INIT
;
3480 const char *child_argv
[] = { NULL
, NULL
};
3483 fprintf(stderr
, _("Executing: %s\n"), command_line
);
3484 child_argv
[0] = command_line
;
3485 strvec_pushf(&child_env
, "GIT_DIR=%s", absolute_path(get_git_dir()));
3486 strvec_pushf(&child_env
, "GIT_WORK_TREE=%s",
3487 absolute_path(get_git_work_tree()));
3488 status
= run_command_v_opt_cd_env(child_argv
, RUN_USING_SHELL
, NULL
,
3491 /* force re-reading of the cache */
3492 if (discard_index(r
->index
) < 0 || repo_read_index(r
) < 0)
3493 return error(_("could not read index"));
3495 dirty
= require_clean_work_tree(r
, "rebase", NULL
, 1, 1);
3498 warning(_("execution failed: %s\n%s"
3499 "You can fix the problem, and then run\n"
3501 " git rebase --continue\n"
3504 dirty
? N_("and made changes to the index and/or the "
3505 "working tree\n") : "");
3507 /* command not found */
3510 warning(_("execution succeeded: %s\nbut "
3511 "left changes to the index and/or the working tree\n"
3512 "Commit or stash your changes, and then run\n"
3514 " git rebase --continue\n"
3515 "\n"), command_line
);
3519 strvec_clear(&child_env
);
3524 static int safe_append(const char *filename
, const char *fmt
, ...)
3527 struct lock_file lock
= LOCK_INIT
;
3528 int fd
= hold_lock_file_for_update(&lock
, filename
,
3529 LOCK_REPORT_ON_ERROR
);
3530 struct strbuf buf
= STRBUF_INIT
;
3535 if (strbuf_read_file(&buf
, filename
, 0) < 0 && errno
!= ENOENT
) {
3536 error_errno(_("could not read '%s'"), filename
);
3537 rollback_lock_file(&lock
);
3540 strbuf_complete(&buf
, '\n');
3542 strbuf_vaddf(&buf
, fmt
, ap
);
3545 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
3546 error_errno(_("could not write to '%s'"), filename
);
3547 strbuf_release(&buf
);
3548 rollback_lock_file(&lock
);
3551 if (commit_lock_file(&lock
) < 0) {
3552 strbuf_release(&buf
);
3553 rollback_lock_file(&lock
);
3554 return error(_("failed to finalize '%s'"), filename
);
3557 strbuf_release(&buf
);
3561 static int do_label(struct repository
*r
, const char *name
, int len
)
3563 struct ref_store
*refs
= get_main_ref_store(r
);
3564 struct ref_transaction
*transaction
;
3565 struct strbuf ref_name
= STRBUF_INIT
, err
= STRBUF_INIT
;
3566 struct strbuf msg
= STRBUF_INIT
;
3568 struct object_id head_oid
;
3570 if (len
== 1 && *name
== '#')
3571 return error(_("illegal label name: '%.*s'"), len
, name
);
3573 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
3574 strbuf_addf(&msg
, "rebase (label) '%.*s'", len
, name
);
3576 transaction
= ref_store_transaction_begin(refs
, &err
);
3578 error("%s", err
.buf
);
3580 } else if (get_oid("HEAD", &head_oid
)) {
3581 error(_("could not read HEAD"));
3583 } else if (ref_transaction_update(transaction
, ref_name
.buf
, &head_oid
,
3584 NULL
, 0, msg
.buf
, &err
) < 0 ||
3585 ref_transaction_commit(transaction
, &err
)) {
3586 error("%s", err
.buf
);
3589 ref_transaction_free(transaction
);
3590 strbuf_release(&err
);
3591 strbuf_release(&msg
);
3594 ret
= safe_append(rebase_path_refs_to_delete(),
3595 "%s\n", ref_name
.buf
);
3596 strbuf_release(&ref_name
);
3601 static const char *reflog_message(struct replay_opts
*opts
,
3602 const char *sub_action
, const char *fmt
, ...);
3604 static int do_reset(struct repository
*r
,
3605 const char *name
, int len
,
3606 struct replay_opts
*opts
)
3608 struct strbuf ref_name
= STRBUF_INIT
;
3609 struct object_id oid
;
3610 struct lock_file lock
= LOCK_INIT
;
3611 struct tree_desc desc
;
3613 struct unpack_trees_options unpack_tree_opts
;
3616 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0)
3619 if (len
== 10 && !strncmp("[new root]", name
, len
)) {
3620 if (!opts
->have_squash_onto
) {
3622 if (commit_tree("", 0, the_hash_algo
->empty_tree
,
3623 NULL
, &opts
->squash_onto
,
3625 return error(_("writing fake root commit"));
3626 opts
->have_squash_onto
= 1;
3627 hex
= oid_to_hex(&opts
->squash_onto
);
3628 if (write_message(hex
, strlen(hex
),
3629 rebase_path_squash_onto(), 0))
3630 return error(_("writing squash-onto"));
3632 oidcpy(&oid
, &opts
->squash_onto
);
3636 /* Determine the length of the label */
3637 for (i
= 0; i
< len
; i
++)
3638 if (isspace(name
[i
]))
3642 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
3643 if (get_oid(ref_name
.buf
, &oid
) &&
3644 get_oid(ref_name
.buf
+ strlen("refs/rewritten/"), &oid
)) {
3645 error(_("could not read '%s'"), ref_name
.buf
);
3646 rollback_lock_file(&lock
);
3647 strbuf_release(&ref_name
);
3652 memset(&unpack_tree_opts
, 0, sizeof(unpack_tree_opts
));
3653 setup_unpack_trees_porcelain(&unpack_tree_opts
, "reset");
3654 unpack_tree_opts
.head_idx
= 1;
3655 unpack_tree_opts
.src_index
= r
->index
;
3656 unpack_tree_opts
.dst_index
= r
->index
;
3657 unpack_tree_opts
.fn
= oneway_merge
;
3658 unpack_tree_opts
.merge
= 1;
3659 unpack_tree_opts
.update
= 1;
3660 init_checkout_metadata(&unpack_tree_opts
.meta
, name
, &oid
, NULL
);
3662 if (repo_read_index_unmerged(r
)) {
3663 rollback_lock_file(&lock
);
3664 strbuf_release(&ref_name
);
3665 return error_resolve_conflict(_(action_name(opts
)));
3668 if (!fill_tree_descriptor(r
, &desc
, &oid
)) {
3669 error(_("failed to find tree of %s"), oid_to_hex(&oid
));
3670 rollback_lock_file(&lock
);
3671 free((void *)desc
.buffer
);
3672 strbuf_release(&ref_name
);
3676 if (unpack_trees(1, &desc
, &unpack_tree_opts
)) {
3677 rollback_lock_file(&lock
);
3678 free((void *)desc
.buffer
);
3679 strbuf_release(&ref_name
);
3683 tree
= parse_tree_indirect(&oid
);
3684 prime_cache_tree(r
, r
->index
, tree
);
3686 if (write_locked_index(r
->index
, &lock
, COMMIT_LOCK
) < 0)
3687 ret
= error(_("could not write index"));
3688 free((void *)desc
.buffer
);
3691 ret
= update_ref(reflog_message(opts
, "reset", "'%.*s'",
3692 len
, name
), "HEAD", &oid
,
3693 NULL
, 0, UPDATE_REFS_MSG_ON_ERR
);
3695 strbuf_release(&ref_name
);
3699 static struct commit
*lookup_label(const char *label
, int len
,
3702 struct commit
*commit
;
3705 strbuf_addf(buf
, "refs/rewritten/%.*s", len
, label
);
3706 commit
= lookup_commit_reference_by_name(buf
->buf
);
3708 /* fall back to non-rewritten ref or commit */
3709 strbuf_splice(buf
, 0, strlen("refs/rewritten/"), "", 0);
3710 commit
= lookup_commit_reference_by_name(buf
->buf
);
3714 error(_("could not resolve '%s'"), buf
->buf
);
3719 static int do_merge(struct repository
*r
,
3720 struct commit
*commit
,
3721 const char *arg
, int arg_len
,
3722 int flags
, struct replay_opts
*opts
)
3724 int run_commit_flags
= (flags
& TODO_EDIT_MERGE_MSG
) ?
3725 EDIT_MSG
| VERIFY_MSG
: 0;
3726 struct strbuf ref_name
= STRBUF_INIT
;
3727 struct commit
*head_commit
, *merge_commit
, *i
;
3728 struct commit_list
*bases
, *j
, *reversed
= NULL
;
3729 struct commit_list
*to_merge
= NULL
, **tail
= &to_merge
;
3730 const char *strategy
= !opts
->xopts_nr
&&
3732 !strcmp(opts
->strategy
, "recursive") ||
3733 !strcmp(opts
->strategy
, "ort")) ?
3734 NULL
: opts
->strategy
;
3735 struct merge_options o
;
3736 int merge_arg_len
, oneline_offset
, can_fast_forward
, ret
, k
;
3737 static struct lock_file lock
;
3740 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0) {
3745 head_commit
= lookup_commit_reference_by_name("HEAD");
3747 ret
= error(_("cannot merge without a current revision"));
3752 * For octopus merges, the arg starts with the list of revisions to be
3753 * merged. The list is optionally followed by '#' and the oneline.
3755 merge_arg_len
= oneline_offset
= arg_len
;
3756 for (p
= arg
; p
- arg
< arg_len
; p
+= strspn(p
, " \t\n")) {
3759 if (*p
== '#' && (!p
[1] || isspace(p
[1]))) {
3760 p
+= 1 + strspn(p
+ 1, " \t\n");
3761 oneline_offset
= p
- arg
;
3764 k
= strcspn(p
, " \t\n");
3767 merge_commit
= lookup_label(p
, k
, &ref_name
);
3768 if (!merge_commit
) {
3769 ret
= error(_("unable to parse '%.*s'"), k
, p
);
3772 tail
= &commit_list_insert(merge_commit
, tail
)->next
;
3774 merge_arg_len
= p
- arg
;
3778 ret
= error(_("nothing to merge: '%.*s'"), arg_len
, arg
);
3782 if (opts
->have_squash_onto
&&
3783 oideq(&head_commit
->object
.oid
, &opts
->squash_onto
)) {
3785 * When the user tells us to "merge" something into a
3786 * "[new root]", let's simply fast-forward to the merge head.
3788 rollback_lock_file(&lock
);
3790 ret
= error(_("octopus merge cannot be executed on "
3791 "top of a [new root]"));
3793 ret
= fast_forward_to(r
, &to_merge
->item
->object
.oid
,
3794 &head_commit
->object
.oid
, 0,
3800 const char *encoding
= get_commit_output_encoding();
3801 const char *message
= logmsg_reencode(commit
, NULL
, encoding
);
3806 ret
= error(_("could not get commit message of '%s'"),
3807 oid_to_hex(&commit
->object
.oid
));
3810 write_author_script(message
);
3811 find_commit_subject(message
, &body
);
3813 ret
= write_message(body
, len
, git_path_merge_msg(r
), 0);
3814 unuse_commit_buffer(commit
, message
);
3816 error_errno(_("could not write '%s'"),
3817 git_path_merge_msg(r
));
3821 struct strbuf buf
= STRBUF_INIT
;
3824 strbuf_addf(&buf
, "author %s", git_author_info(0));
3825 write_author_script(buf
.buf
);
3828 if (oneline_offset
< arg_len
) {
3829 p
= arg
+ oneline_offset
;
3830 len
= arg_len
- oneline_offset
;
3832 strbuf_addf(&buf
, "Merge %s '%.*s'",
3833 to_merge
->next
? "branches" : "branch",
3834 merge_arg_len
, arg
);
3839 ret
= write_message(p
, len
, git_path_merge_msg(r
), 0);
3840 strbuf_release(&buf
);
3842 error_errno(_("could not write '%s'"),
3843 git_path_merge_msg(r
));
3849 * If HEAD is not identical to the first parent of the original merge
3850 * commit, we cannot fast-forward.
3852 can_fast_forward
= opts
->allow_ff
&& commit
&& commit
->parents
&&
3853 oideq(&commit
->parents
->item
->object
.oid
,
3854 &head_commit
->object
.oid
);
3857 * If any merge head is different from the original one, we cannot
3860 if (can_fast_forward
) {
3861 struct commit_list
*p
= commit
->parents
->next
;
3863 for (j
= to_merge
; j
&& p
; j
= j
->next
, p
= p
->next
)
3864 if (!oideq(&j
->item
->object
.oid
,
3865 &p
->item
->object
.oid
)) {
3866 can_fast_forward
= 0;
3870 * If the number of merge heads differs from the original merge
3871 * commit, we cannot fast-forward.
3874 can_fast_forward
= 0;
3877 if (can_fast_forward
) {
3878 rollback_lock_file(&lock
);
3879 ret
= fast_forward_to(r
, &commit
->object
.oid
,
3880 &head_commit
->object
.oid
, 0, opts
);
3881 if (flags
& TODO_EDIT_MERGE_MSG
) {
3882 run_commit_flags
|= AMEND_MSG
;
3883 goto fast_forward_edit
;
3888 if (strategy
|| to_merge
->next
) {
3890 struct child_process cmd
= CHILD_PROCESS_INIT
;
3892 if (read_env_script(&cmd
.env_array
)) {
3893 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
3895 ret
= error(_(staged_changes_advice
), gpg_opt
, gpg_opt
);
3899 if (opts
->committer_date_is_author_date
)
3900 strvec_pushf(&cmd
.env_array
, "GIT_COMMITTER_DATE=%s",
3903 author_date_from_env_array(&cmd
.env_array
));
3904 if (opts
->ignore_date
)
3905 strvec_push(&cmd
.env_array
, "GIT_AUTHOR_DATE=");
3908 strvec_push(&cmd
.args
, "merge");
3909 strvec_push(&cmd
.args
, "-s");
3911 strvec_push(&cmd
.args
, "octopus");
3913 strvec_push(&cmd
.args
, strategy
);
3914 for (k
= 0; k
< opts
->xopts_nr
; k
++)
3915 strvec_pushf(&cmd
.args
,
3916 "-X%s", opts
->xopts
[k
]);
3918 strvec_push(&cmd
.args
, "--no-edit");
3919 strvec_push(&cmd
.args
, "--no-ff");
3920 strvec_push(&cmd
.args
, "--no-log");
3921 strvec_push(&cmd
.args
, "--no-stat");
3922 strvec_push(&cmd
.args
, "-F");
3923 strvec_push(&cmd
.args
, git_path_merge_msg(r
));
3925 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
3927 strvec_push(&cmd
.args
, "--no-gpg-sign");
3929 /* Add the tips to be merged */
3930 for (j
= to_merge
; j
; j
= j
->next
)
3931 strvec_push(&cmd
.args
,
3932 oid_to_hex(&j
->item
->object
.oid
));
3934 strbuf_release(&ref_name
);
3935 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
3937 rollback_lock_file(&lock
);
3939 ret
= run_command(&cmd
);
3941 /* force re-reading of the cache */
3942 if (!ret
&& (discard_index(r
->index
) < 0 ||
3943 repo_read_index(r
) < 0))
3944 ret
= error(_("could not read index"));
3948 merge_commit
= to_merge
->item
;
3949 bases
= get_merge_bases(head_commit
, merge_commit
);
3950 if (bases
&& oideq(&merge_commit
->object
.oid
,
3951 &bases
->item
->object
.oid
)) {
3953 /* skip merging an ancestor of HEAD */
3957 write_message(oid_to_hex(&merge_commit
->object
.oid
), the_hash_algo
->hexsz
,
3958 git_path_merge_head(r
), 0);
3959 write_message("no-ff", 5, git_path_merge_mode(r
), 0);
3961 for (j
= bases
; j
; j
= j
->next
)
3962 commit_list_insert(j
->item
, &reversed
);
3963 free_commit_list(bases
);
3966 init_merge_options(&o
, r
);
3968 o
.branch2
= ref_name
.buf
;
3969 o
.buffer_output
= 2;
3971 if (opts
->strategy
&& !strcmp(opts
->strategy
, "ort")) {
3973 * TODO: Should use merge_incore_recursive() and
3974 * merge_switch_to_result(), skipping the call to
3975 * merge_switch_to_result() when we don't actually need to
3976 * update the index and working copy immediately.
3978 ret
= merge_ort_recursive(&o
,
3979 head_commit
, merge_commit
, reversed
,
3982 ret
= merge_recursive(&o
, head_commit
, merge_commit
, reversed
,
3986 fputs(o
.obuf
.buf
, stdout
);
3987 strbuf_release(&o
.obuf
);
3989 error(_("could not even attempt to merge '%.*s'"),
3990 merge_arg_len
, arg
);
3994 * The return value of merge_recursive() is 1 on clean, and 0 on
3997 * Let's reverse that, so that do_merge() returns 0 upon success and
3998 * 1 upon failed merge (keeping the return value -1 for the cases where
3999 * we will want to reschedule the `merge` command).
4003 if (r
->index
->cache_changed
&&
4004 write_locked_index(r
->index
, &lock
, COMMIT_LOCK
)) {
4005 ret
= error(_("merge: Unable to write new index file"));
4009 rollback_lock_file(&lock
);
4011 repo_rerere(r
, opts
->allow_rerere_auto
);
4014 * In case of problems, we now want to return a positive
4015 * value (a negative one would indicate that the `merge`
4016 * command needs to be rescheduled).
4019 ret
= !!run_git_commit(git_path_merge_msg(r
), opts
,
4023 strbuf_release(&ref_name
);
4024 rollback_lock_file(&lock
);
4025 free_commit_list(to_merge
);
4029 static int is_final_fixup(struct todo_list
*todo_list
)
4031 int i
= todo_list
->current
;
4033 if (!is_fixup(todo_list
->items
[i
].command
))
4036 while (++i
< todo_list
->nr
)
4037 if (is_fixup(todo_list
->items
[i
].command
))
4039 else if (!is_noop(todo_list
->items
[i
].command
))
4044 static enum todo_command
peek_command(struct todo_list
*todo_list
, int offset
)
4048 for (i
= todo_list
->current
+ offset
; i
< todo_list
->nr
; i
++)
4049 if (!is_noop(todo_list
->items
[i
].command
))
4050 return todo_list
->items
[i
].command
;
4055 void create_autostash(struct repository
*r
, const char *path
,
4056 const char *default_reflog_action
)
4058 struct strbuf buf
= STRBUF_INIT
;
4059 struct lock_file lock_file
= LOCK_INIT
;
4062 fd
= repo_hold_locked_index(r
, &lock_file
, 0);
4063 refresh_index(r
->index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
4065 repo_update_index_if_able(r
, &lock_file
);
4066 rollback_lock_file(&lock_file
);
4068 if (has_unstaged_changes(r
, 1) ||
4069 has_uncommitted_changes(r
, 1)) {
4070 struct child_process stash
= CHILD_PROCESS_INIT
;
4071 struct object_id oid
;
4073 strvec_pushl(&stash
.args
,
4074 "stash", "create", "autostash", NULL
);
4078 if (capture_command(&stash
, &buf
, GIT_MAX_HEXSZ
))
4079 die(_("Cannot autostash"));
4080 strbuf_trim_trailing_newline(&buf
);
4081 if (get_oid(buf
.buf
, &oid
))
4082 die(_("Unexpected stash response: '%s'"),
4085 strbuf_add_unique_abbrev(&buf
, &oid
, DEFAULT_ABBREV
);
4087 if (safe_create_leading_directories_const(path
))
4088 die(_("Could not create directory for '%s'"),
4090 write_file(path
, "%s", oid_to_hex(&oid
));
4091 printf(_("Created autostash: %s\n"), buf
.buf
);
4092 if (reset_head(r
, NULL
, "reset --hard",
4093 NULL
, RESET_HEAD_HARD
, NULL
, NULL
,
4094 default_reflog_action
) < 0)
4095 die(_("could not reset --hard"));
4097 if (discard_index(r
->index
) < 0 ||
4098 repo_read_index(r
) < 0)
4099 die(_("could not read index"));
4101 strbuf_release(&buf
);
4104 static int apply_save_autostash_oid(const char *stash_oid
, int attempt_apply
)
4106 struct child_process child
= CHILD_PROCESS_INIT
;
4109 if (attempt_apply
) {
4111 child
.no_stdout
= 1;
4112 child
.no_stderr
= 1;
4113 strvec_push(&child
.args
, "stash");
4114 strvec_push(&child
.args
, "apply");
4115 strvec_push(&child
.args
, stash_oid
);
4116 ret
= run_command(&child
);
4119 if (attempt_apply
&& !ret
)
4120 fprintf(stderr
, _("Applied autostash.\n"));
4122 struct child_process store
= CHILD_PROCESS_INIT
;
4125 strvec_push(&store
.args
, "stash");
4126 strvec_push(&store
.args
, "store");
4127 strvec_push(&store
.args
, "-m");
4128 strvec_push(&store
.args
, "autostash");
4129 strvec_push(&store
.args
, "-q");
4130 strvec_push(&store
.args
, stash_oid
);
4131 if (run_command(&store
))
4132 ret
= error(_("cannot store %s"), stash_oid
);
4136 "Your changes are safe in the stash.\n"
4137 "You can run \"git stash pop\" or"
4138 " \"git stash drop\" at any time.\n"),
4140 _("Applying autostash resulted in conflicts.") :
4141 _("Autostash exists; creating a new stash entry."));
4147 static int apply_save_autostash(const char *path
, int attempt_apply
)
4149 struct strbuf stash_oid
= STRBUF_INIT
;
4152 if (!read_oneliner(&stash_oid
, path
,
4153 READ_ONELINER_SKIP_IF_EMPTY
)) {
4154 strbuf_release(&stash_oid
);
4157 strbuf_trim(&stash_oid
);
4159 ret
= apply_save_autostash_oid(stash_oid
.buf
, attempt_apply
);
4162 strbuf_release(&stash_oid
);
4166 int save_autostash(const char *path
)
4168 return apply_save_autostash(path
, 0);
4171 int apply_autostash(const char *path
)
4173 return apply_save_autostash(path
, 1);
4176 int apply_autostash_oid(const char *stash_oid
)
4178 return apply_save_autostash_oid(stash_oid
, 1);
4181 static const char *reflog_message(struct replay_opts
*opts
,
4182 const char *sub_action
, const char *fmt
, ...)
4185 static struct strbuf buf
= STRBUF_INIT
;
4186 char *reflog_action
= getenv(GIT_REFLOG_ACTION
);
4190 strbuf_addstr(&buf
, reflog_action
? reflog_action
: action_name(opts
));
4192 strbuf_addf(&buf
, " (%s)", sub_action
);
4194 strbuf_addstr(&buf
, ": ");
4195 strbuf_vaddf(&buf
, fmt
, ap
);
4202 static int run_git_checkout(struct repository
*r
, struct replay_opts
*opts
,
4203 const char *commit
, const char *action
)
4205 struct child_process cmd
= CHILD_PROCESS_INIT
;
4210 strvec_push(&cmd
.args
, "checkout");
4211 strvec_push(&cmd
.args
, commit
);
4212 strvec_pushf(&cmd
.env_array
, GIT_REFLOG_ACTION
"=%s", action
);
4215 ret
= run_command(&cmd
);
4217 ret
= run_command_silent_on_success(&cmd
);
4220 discard_index(r
->index
);
4225 static int checkout_onto(struct repository
*r
, struct replay_opts
*opts
,
4226 const char *onto_name
, const struct object_id
*onto
,
4227 const struct object_id
*orig_head
)
4229 const char *action
= reflog_message(opts
, "start", "checkout %s", onto_name
);
4231 if (run_git_checkout(r
, opts
, oid_to_hex(onto
), action
)) {
4232 apply_autostash(rebase_path_autostash());
4233 sequencer_remove_state(opts
);
4234 return error(_("could not detach HEAD"));
4237 return update_ref(NULL
, "ORIG_HEAD", orig_head
, NULL
, 0, UPDATE_REFS_MSG_ON_ERR
);
4240 static int stopped_at_head(struct repository
*r
)
4242 struct object_id head
;
4243 struct commit
*commit
;
4244 struct commit_message message
;
4246 if (get_oid("HEAD", &head
) ||
4247 !(commit
= lookup_commit(r
, &head
)) ||
4248 parse_commit(commit
) || get_message(commit
, &message
))
4249 fprintf(stderr
, _("Stopped at HEAD\n"));
4251 fprintf(stderr
, _("Stopped at %s\n"), message
.label
);
4252 free_message(commit
, &message
);
4258 static const char rescheduled_advice
[] =
4259 N_("Could not execute the todo command\n"
4263 "It has been rescheduled; To edit the command before continuing, please\n"
4264 "edit the todo list first:\n"
4266 " git rebase --edit-todo\n"
4267 " git rebase --continue\n");
4269 static int pick_commits(struct repository
*r
,
4270 struct todo_list
*todo_list
,
4271 struct replay_opts
*opts
)
4273 int res
= 0, reschedule
= 0;
4274 char *prev_reflog_action
;
4276 /* Note that 0 for 3rd parameter of setenv means set only if not set */
4277 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
4278 prev_reflog_action
= xstrdup(getenv(GIT_REFLOG_ACTION
));
4280 assert(!(opts
->signoff
|| opts
->no_commit
||
4281 opts
->record_origin
|| should_edit(opts
) ||
4282 opts
->committer_date_is_author_date
||
4283 opts
->ignore_date
));
4284 if (read_and_refresh_cache(r
, opts
))
4287 while (todo_list
->current
< todo_list
->nr
) {
4288 struct todo_item
*item
= todo_list
->items
+ todo_list
->current
;
4289 const char *arg
= todo_item_get_arg(todo_list
, item
);
4292 if (save_todo(todo_list
, opts
))
4294 if (is_rebase_i(opts
)) {
4295 if (item
->command
!= TODO_COMMENT
) {
4296 FILE *f
= fopen(rebase_path_msgnum(), "w");
4298 todo_list
->done_nr
++;
4301 fprintf(f
, "%d\n", todo_list
->done_nr
);
4305 fprintf(stderr
, _("Rebasing (%d/%d)%s"),
4307 todo_list
->total_nr
,
4308 opts
->verbose
? "\n" : "\r");
4310 unlink(rebase_path_message());
4311 unlink(rebase_path_author_script());
4312 unlink(rebase_path_stopped_sha());
4313 unlink(rebase_path_amend());
4314 unlink(git_path_merge_head(r
));
4315 unlink(git_path_auto_merge(r
));
4316 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
4318 if (item
->command
== TODO_BREAK
) {
4321 return stopped_at_head(r
);
4324 if (item
->command
<= TODO_SQUASH
) {
4325 if (is_rebase_i(opts
))
4326 setenv(GIT_REFLOG_ACTION
, reflog_message(opts
,
4327 command_to_string(item
->command
), NULL
),
4329 res
= do_pick_commit(r
, item
, opts
,
4330 is_final_fixup(todo_list
),
4332 if (is_rebase_i(opts
))
4333 setenv(GIT_REFLOG_ACTION
, prev_reflog_action
, 1);
4334 if (is_rebase_i(opts
) && res
< 0) {
4336 advise(_(rescheduled_advice
),
4337 get_item_line_length(todo_list
,
4338 todo_list
->current
),
4339 get_item_line(todo_list
,
4340 todo_list
->current
));
4341 todo_list
->current
--;
4342 if (save_todo(todo_list
, opts
))
4345 if (item
->command
== TODO_EDIT
) {
4346 struct commit
*commit
= item
->commit
;
4351 _("Stopped at %s... %.*s\n"),
4352 short_commit_name(commit
),
4353 item
->arg_len
, arg
);
4355 return error_with_patch(r
, commit
,
4356 arg
, item
->arg_len
, opts
, res
, !res
);
4358 if (is_rebase_i(opts
) && !res
)
4359 record_in_rewritten(&item
->commit
->object
.oid
,
4360 peek_command(todo_list
, 1));
4361 if (res
&& is_fixup(item
->command
)) {
4364 return error_failed_squash(r
, item
->commit
, opts
,
4365 item
->arg_len
, arg
);
4366 } else if (res
&& is_rebase_i(opts
) && item
->commit
) {
4368 struct object_id oid
;
4371 * If we are rewording and have either
4372 * fast-forwarded already, or are about to
4373 * create a new root commit, we want to amend,
4374 * otherwise we do not.
4376 if (item
->command
== TODO_REWORD
&&
4377 !get_oid("HEAD", &oid
) &&
4378 (oideq(&item
->commit
->object
.oid
, &oid
) ||
4379 (opts
->have_squash_onto
&&
4380 oideq(&opts
->squash_onto
, &oid
))))
4383 return res
| error_with_patch(r
, item
->commit
,
4384 arg
, item
->arg_len
, opts
,
4387 } else if (item
->command
== TODO_EXEC
) {
4388 char *end_of_arg
= (char *)(arg
+ item
->arg_len
);
4389 int saved
= *end_of_arg
;
4394 res
= do_exec(r
, arg
);
4395 *end_of_arg
= saved
;
4398 if (opts
->reschedule_failed_exec
)
4402 } else if (item
->command
== TODO_LABEL
) {
4403 if ((res
= do_label(r
, arg
, item
->arg_len
)))
4405 } else if (item
->command
== TODO_RESET
) {
4406 if ((res
= do_reset(r
, arg
, item
->arg_len
, opts
)))
4408 } else if (item
->command
== TODO_MERGE
) {
4409 if ((res
= do_merge(r
, item
->commit
,
4411 item
->flags
, opts
)) < 0)
4413 else if (item
->commit
)
4414 record_in_rewritten(&item
->commit
->object
.oid
,
4415 peek_command(todo_list
, 1));
4417 /* failed with merge conflicts */
4418 return error_with_patch(r
, item
->commit
,
4421 } else if (!is_noop(item
->command
))
4422 return error(_("unknown command %d"), item
->command
);
4425 advise(_(rescheduled_advice
),
4426 get_item_line_length(todo_list
,
4427 todo_list
->current
),
4428 get_item_line(todo_list
, todo_list
->current
));
4429 todo_list
->current
--;
4430 if (save_todo(todo_list
, opts
))
4433 return error_with_patch(r
,
4437 } else if (is_rebase_i(opts
) && check_todo
&& !res
) {
4440 if (stat(get_todo_path(opts
), &st
)) {
4441 res
= error_errno(_("could not stat '%s'"),
4442 get_todo_path(opts
));
4443 } else if (match_stat_data(&todo_list
->stat
, &st
)) {
4444 /* Reread the todo file if it has changed. */
4445 todo_list_release(todo_list
);
4446 if (read_populate_todo(r
, todo_list
, opts
))
4447 res
= -1; /* message was printed */
4448 /* `current` will be incremented below */
4449 todo_list
->current
= -1;
4453 todo_list
->current
++;
4458 if (is_rebase_i(opts
)) {
4459 struct strbuf head_ref
= STRBUF_INIT
, buf
= STRBUF_INIT
;
4462 /* Stopped in the middle, as planned? */
4463 if (todo_list
->current
< todo_list
->nr
)
4466 if (read_oneliner(&head_ref
, rebase_path_head_name(), 0) &&
4467 starts_with(head_ref
.buf
, "refs/")) {
4469 struct object_id head
, orig
;
4472 if (get_oid("HEAD", &head
)) {
4473 res
= error(_("cannot read HEAD"));
4475 strbuf_release(&head_ref
);
4476 strbuf_release(&buf
);
4479 if (!read_oneliner(&buf
, rebase_path_orig_head(), 0) ||
4480 get_oid_hex(buf
.buf
, &orig
)) {
4481 res
= error(_("could not read orig-head"));
4482 goto cleanup_head_ref
;
4485 if (!read_oneliner(&buf
, rebase_path_onto(), 0)) {
4486 res
= error(_("could not read 'onto'"));
4487 goto cleanup_head_ref
;
4489 msg
= reflog_message(opts
, "finish", "%s onto %s",
4490 head_ref
.buf
, buf
.buf
);
4491 if (update_ref(msg
, head_ref
.buf
, &head
, &orig
,
4492 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
)) {
4493 res
= error(_("could not update %s"),
4495 goto cleanup_head_ref
;
4497 msg
= reflog_message(opts
, "finish", "returning to %s",
4499 if (create_symref("HEAD", head_ref
.buf
, msg
)) {
4500 res
= error(_("could not update HEAD to %s"),
4502 goto cleanup_head_ref
;
4507 if (opts
->verbose
) {
4508 struct rev_info log_tree_opt
;
4509 struct object_id orig
, head
;
4511 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
4512 repo_init_revisions(r
, &log_tree_opt
, NULL
);
4513 log_tree_opt
.diff
= 1;
4514 log_tree_opt
.diffopt
.output_format
=
4515 DIFF_FORMAT_DIFFSTAT
;
4516 log_tree_opt
.disable_stdin
= 1;
4518 if (read_oneliner(&buf
, rebase_path_orig_head(), 0) &&
4519 !get_oid(buf
.buf
, &orig
) &&
4520 !get_oid("HEAD", &head
)) {
4521 diff_tree_oid(&orig
, &head
, "",
4522 &log_tree_opt
.diffopt
);
4523 log_tree_diff_flush(&log_tree_opt
);
4526 flush_rewritten_pending();
4527 if (!stat(rebase_path_rewritten_list(), &st
) &&
4529 struct child_process child
= CHILD_PROCESS_INIT
;
4530 const char *post_rewrite_hook
=
4531 find_hook("post-rewrite");
4533 child
.in
= open(rebase_path_rewritten_list(), O_RDONLY
);
4535 strvec_push(&child
.args
, "notes");
4536 strvec_push(&child
.args
, "copy");
4537 strvec_push(&child
.args
, "--for-rewrite=rebase");
4538 /* we don't care if this copying failed */
4539 run_command(&child
);
4541 if (post_rewrite_hook
) {
4542 struct child_process hook
= CHILD_PROCESS_INIT
;
4544 hook
.in
= open(rebase_path_rewritten_list(),
4546 hook
.stdout_to_stderr
= 1;
4547 hook
.trace2_hook_name
= "post-rewrite";
4548 strvec_push(&hook
.args
, post_rewrite_hook
);
4549 strvec_push(&hook
.args
, "rebase");
4550 /* we don't care if this hook failed */
4554 apply_autostash(rebase_path_autostash());
4560 _("Successfully rebased and updated %s.\n"),
4564 strbuf_release(&buf
);
4565 strbuf_release(&head_ref
);
4569 * Sequence of picks finished successfully; cleanup by
4570 * removing the .git/sequencer directory
4572 return sequencer_remove_state(opts
);
4575 static int continue_single_pick(struct repository
*r
, struct replay_opts
*opts
)
4577 struct strvec argv
= STRVEC_INIT
;
4580 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
4581 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
4582 return error(_("no cherry-pick or revert in progress"));
4584 strvec_push(&argv
, "commit");
4587 * continue_single_pick() handles the case of recovering from a
4588 * conflict. should_edit() doesn't handle that case; for a conflict,
4589 * we want to edit if the user asked for it, or if they didn't specify
4590 * and stdin is a tty.
4592 if (!opts
->edit
|| (opts
->edit
< 0 && !isatty(0)))
4594 * Include --cleanup=strip as well because we don't want the
4595 * "# Conflicts:" messages.
4597 strvec_pushl(&argv
, "--no-edit", "--cleanup=strip", NULL
);
4599 ret
= run_command_v_opt(argv
.v
, RUN_GIT_CMD
);
4600 strvec_clear(&argv
);
4604 static int commit_staged_changes(struct repository
*r
,
4605 struct replay_opts
*opts
,
4606 struct todo_list
*todo_list
)
4608 unsigned int flags
= ALLOW_EMPTY
| EDIT_MSG
;
4609 unsigned int final_fixup
= 0, is_clean
;
4611 if (has_unstaged_changes(r
, 1))
4612 return error(_("cannot rebase: You have unstaged changes."));
4614 is_clean
= !has_uncommitted_changes(r
, 0);
4616 if (file_exists(rebase_path_amend())) {
4617 struct strbuf rev
= STRBUF_INIT
;
4618 struct object_id head
, to_amend
;
4620 if (get_oid("HEAD", &head
))
4621 return error(_("cannot amend non-existing commit"));
4622 if (!read_oneliner(&rev
, rebase_path_amend(), 0))
4623 return error(_("invalid file: '%s'"), rebase_path_amend());
4624 if (get_oid_hex(rev
.buf
, &to_amend
))
4625 return error(_("invalid contents: '%s'"),
4626 rebase_path_amend());
4627 if (!is_clean
&& !oideq(&head
, &to_amend
))
4628 return error(_("\nYou have uncommitted changes in your "
4629 "working tree. Please, commit them\n"
4630 "first and then run 'git rebase "
4631 "--continue' again."));
4633 * When skipping a failed fixup/squash, we need to edit the
4634 * commit message, the current fixup list and count, and if it
4635 * was the last fixup/squash in the chain, we need to clean up
4636 * the commit message and if there was a squash, let the user
4639 if (!is_clean
|| !opts
->current_fixup_count
)
4640 ; /* this is not the final fixup */
4641 else if (!oideq(&head
, &to_amend
) ||
4642 !file_exists(rebase_path_stopped_sha())) {
4643 /* was a final fixup or squash done manually? */
4644 if (!is_fixup(peek_command(todo_list
, 0))) {
4645 unlink(rebase_path_fixup_msg());
4646 unlink(rebase_path_squash_msg());
4647 unlink(rebase_path_current_fixups());
4648 strbuf_reset(&opts
->current_fixups
);
4649 opts
->current_fixup_count
= 0;
4652 /* we are in a fixup/squash chain */
4653 const char *p
= opts
->current_fixups
.buf
;
4654 int len
= opts
->current_fixups
.len
;
4656 opts
->current_fixup_count
--;
4658 BUG("Incorrect current_fixups:\n%s", p
);
4659 while (len
&& p
[len
- 1] != '\n')
4661 strbuf_setlen(&opts
->current_fixups
, len
);
4662 if (write_message(p
, len
, rebase_path_current_fixups(),
4664 return error(_("could not write file: '%s'"),
4665 rebase_path_current_fixups());
4668 * If a fixup/squash in a fixup/squash chain failed, the
4669 * commit message is already correct, no need to commit
4672 * Only if it is the final command in the fixup/squash
4673 * chain, and only if the chain is longer than a single
4674 * fixup/squash command (which was just skipped), do we
4675 * actually need to re-commit with a cleaned up commit
4678 if (opts
->current_fixup_count
> 0 &&
4679 !is_fixup(peek_command(todo_list
, 0))) {
4682 * If there was not a single "squash" in the
4683 * chain, we only need to clean up the commit
4684 * message, no need to bother the user with
4685 * opening the commit message in the editor.
4687 if (!starts_with(p
, "squash ") &&
4688 !strstr(p
, "\nsquash "))
4689 flags
= (flags
& ~EDIT_MSG
) | CLEANUP_MSG
;
4690 } else if (is_fixup(peek_command(todo_list
, 0))) {
4692 * We need to update the squash message to skip
4693 * the latest commit message.
4695 struct commit
*commit
;
4696 const char *path
= rebase_path_squash_msg();
4697 const char *encoding
= get_commit_output_encoding();
4699 if (parse_head(r
, &commit
) ||
4700 !(p
= logmsg_reencode(commit
, NULL
, encoding
)) ||
4701 write_message(p
, strlen(p
), path
, 0)) {
4702 unuse_commit_buffer(commit
, p
);
4703 return error(_("could not write file: "
4706 unuse_commit_buffer(commit
, p
);
4710 strbuf_release(&rev
);
4715 if (refs_ref_exists(get_main_ref_store(r
),
4716 "CHERRY_PICK_HEAD") &&
4717 refs_delete_ref(get_main_ref_store(r
), "",
4718 "CHERRY_PICK_HEAD", NULL
, 0))
4719 return error(_("could not remove CHERRY_PICK_HEAD"));
4724 if (run_git_commit(final_fixup
? NULL
: rebase_path_message(),
4726 return error(_("could not commit staged changes."));
4727 unlink(rebase_path_amend());
4728 unlink(git_path_merge_head(r
));
4729 unlink(git_path_auto_merge(r
));
4731 unlink(rebase_path_fixup_msg());
4732 unlink(rebase_path_squash_msg());
4734 if (opts
->current_fixup_count
> 0) {
4736 * Whether final fixup or not, we just cleaned up the commit
4739 unlink(rebase_path_current_fixups());
4740 strbuf_reset(&opts
->current_fixups
);
4741 opts
->current_fixup_count
= 0;
4746 int sequencer_continue(struct repository
*r
, struct replay_opts
*opts
)
4748 struct todo_list todo_list
= TODO_LIST_INIT
;
4751 if (read_and_refresh_cache(r
, opts
))
4754 if (read_populate_opts(opts
))
4756 if (is_rebase_i(opts
)) {
4757 if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
4758 goto release_todo_list
;
4760 if (file_exists(rebase_path_dropped())) {
4761 if ((res
= todo_list_check_against_backup(r
, &todo_list
)))
4762 goto release_todo_list
;
4764 unlink(rebase_path_dropped());
4767 if (commit_staged_changes(r
, opts
, &todo_list
)) {
4769 goto release_todo_list
;
4771 } else if (!file_exists(get_todo_path(opts
)))
4772 return continue_single_pick(r
, opts
);
4773 else if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
4774 goto release_todo_list
;
4776 if (!is_rebase_i(opts
)) {
4777 /* Verify that the conflict has been resolved */
4778 if (refs_ref_exists(get_main_ref_store(r
),
4779 "CHERRY_PICK_HEAD") ||
4780 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
4781 res
= continue_single_pick(r
, opts
);
4783 goto release_todo_list
;
4785 if (index_differs_from(r
, "HEAD", NULL
, 0)) {
4786 res
= error_dirty_index(r
, opts
);
4787 goto release_todo_list
;
4789 todo_list
.current
++;
4790 } else if (file_exists(rebase_path_stopped_sha())) {
4791 struct strbuf buf
= STRBUF_INIT
;
4792 struct object_id oid
;
4794 if (read_oneliner(&buf
, rebase_path_stopped_sha(),
4795 READ_ONELINER_SKIP_IF_EMPTY
) &&
4796 !get_oid_hex(buf
.buf
, &oid
))
4797 record_in_rewritten(&oid
, peek_command(&todo_list
, 0));
4798 strbuf_release(&buf
);
4801 res
= pick_commits(r
, &todo_list
, opts
);
4803 todo_list_release(&todo_list
);
4807 static int single_pick(struct repository
*r
,
4808 struct commit
*cmit
,
4809 struct replay_opts
*opts
)
4812 struct todo_item item
;
4814 item
.command
= opts
->action
== REPLAY_PICK
?
4815 TODO_PICK
: TODO_REVERT
;
4818 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
4819 return do_pick_commit(r
, &item
, opts
, 0, &check_todo
);
4822 int sequencer_pick_revisions(struct repository
*r
,
4823 struct replay_opts
*opts
)
4825 struct todo_list todo_list
= TODO_LIST_INIT
;
4826 struct object_id oid
;
4830 if (read_and_refresh_cache(r
, opts
))
4833 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
4834 struct object_id oid
;
4835 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
4837 /* This happens when using --stdin. */
4841 if (!get_oid(name
, &oid
)) {
4842 if (!lookup_commit_reference_gently(r
, &oid
, 1)) {
4843 enum object_type type
= oid_object_info(r
,
4846 return error(_("%s: can't cherry-pick a %s"),
4847 name
, type_name(type
));
4850 return error(_("%s: bad revision"), name
);
4854 * If we were called as "git cherry-pick <commit>", just
4855 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
4856 * REVERT_HEAD, and don't touch the sequencer state.
4857 * This means it is possible to cherry-pick in the middle
4858 * of a cherry-pick sequence.
4860 if (opts
->revs
->cmdline
.nr
== 1 &&
4861 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
4862 opts
->revs
->no_walk
&&
4863 !opts
->revs
->cmdline
.rev
->flags
) {
4864 struct commit
*cmit
;
4865 if (prepare_revision_walk(opts
->revs
))
4866 return error(_("revision walk setup failed"));
4867 cmit
= get_revision(opts
->revs
);
4869 return error(_("empty commit set passed"));
4870 if (get_revision(opts
->revs
))
4871 BUG("unexpected extra commit from walk");
4872 return single_pick(r
, cmit
, opts
);
4876 * Start a new cherry-pick/ revert sequence; but
4877 * first, make sure that an existing one isn't in
4881 if (walk_revs_populate_todo(&todo_list
, opts
) ||
4882 create_seq_dir(r
) < 0)
4884 if (get_oid("HEAD", &oid
) && (opts
->action
== REPLAY_REVERT
))
4885 return error(_("can't revert as initial commit"));
4886 if (save_head(oid_to_hex(&oid
)))
4888 if (save_opts(opts
))
4890 update_abort_safety_file();
4891 res
= pick_commits(r
, &todo_list
, opts
);
4892 todo_list_release(&todo_list
);
4896 void append_signoff(struct strbuf
*msgbuf
, size_t ignore_footer
, unsigned flag
)
4898 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
4899 struct strbuf sob
= STRBUF_INIT
;
4902 strbuf_addstr(&sob
, sign_off_header
);
4903 strbuf_addstr(&sob
, fmt_name(WANT_COMMITTER_IDENT
));
4904 strbuf_addch(&sob
, '\n');
4907 strbuf_complete_line(msgbuf
);
4910 * If the whole message buffer is equal to the sob, pretend that we
4911 * found a conforming footer with a matching sob
4913 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
4914 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
4917 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
4920 const char *append_newlines
= NULL
;
4921 size_t len
= msgbuf
->len
- ignore_footer
;
4925 * The buffer is completely empty. Leave foom for
4926 * the title and body to be filled in by the user.
4928 append_newlines
= "\n\n";
4929 } else if (len
== 1) {
4931 * Buffer contains a single newline. Add another
4932 * so that we leave room for the title and body.
4934 append_newlines
= "\n";
4935 } else if (msgbuf
->buf
[len
- 2] != '\n') {
4937 * Buffer ends with a single newline. Add another
4938 * so that there is an empty line between the message
4941 append_newlines
= "\n";
4942 } /* else, the buffer already ends with two newlines. */
4944 if (append_newlines
)
4945 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
4946 append_newlines
, strlen(append_newlines
));
4949 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
4950 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
4953 strbuf_release(&sob
);
4956 struct labels_entry
{
4957 struct hashmap_entry entry
;
4958 char label
[FLEX_ARRAY
];
4961 static int labels_cmp(const void *fndata
, const struct hashmap_entry
*eptr
,
4962 const struct hashmap_entry
*entry_or_key
, const void *key
)
4964 const struct labels_entry
*a
, *b
;
4966 a
= container_of(eptr
, const struct labels_entry
, entry
);
4967 b
= container_of(entry_or_key
, const struct labels_entry
, entry
);
4969 return key
? strcmp(a
->label
, key
) : strcmp(a
->label
, b
->label
);
4972 struct string_entry
{
4973 struct oidmap_entry entry
;
4974 char string
[FLEX_ARRAY
];
4977 struct label_state
{
4978 struct oidmap commit2label
;
4979 struct hashmap labels
;
4983 static const char *label_oid(struct object_id
*oid
, const char *label
,
4984 struct label_state
*state
)
4986 struct labels_entry
*labels_entry
;
4987 struct string_entry
*string_entry
;
4988 struct object_id dummy
;
4991 string_entry
= oidmap_get(&state
->commit2label
, oid
);
4993 return string_entry
->string
;
4996 * For "uninteresting" commits, i.e. commits that are not to be
4997 * rebased, and which can therefore not be labeled, we use a unique
4998 * abbreviation of the commit name. This is slightly more complicated
4999 * than calling find_unique_abbrev() because we also need to make
5000 * sure that the abbreviation does not conflict with any other
5003 * We disallow "interesting" commits to be labeled by a string that
5004 * is a valid full-length hash, to ensure that we always can find an
5005 * abbreviation for any uninteresting commit's names that does not
5006 * clash with any other label.
5008 strbuf_reset(&state
->buf
);
5012 strbuf_grow(&state
->buf
, GIT_MAX_HEXSZ
);
5013 label
= p
= state
->buf
.buf
;
5015 find_unique_abbrev_r(p
, oid
, default_abbrev
);
5018 * We may need to extend the abbreviated hash so that there is
5019 * no conflicting label.
5021 if (hashmap_get_from_hash(&state
->labels
, strihash(p
), p
)) {
5022 size_t i
= strlen(p
) + 1;
5024 oid_to_hex_r(p
, oid
);
5025 for (; i
< the_hash_algo
->hexsz
; i
++) {
5028 if (!hashmap_get_from_hash(&state
->labels
,
5035 struct strbuf
*buf
= &state
->buf
;
5038 * Sanitize labels by replacing non-alpha-numeric characters
5039 * (including white-space ones) by dashes, as they might be
5040 * illegal in file names (and hence in ref names).
5042 * Note that we retain non-ASCII UTF-8 characters (identified
5043 * via the most significant bit). They should be all acceptable
5044 * in file names. We do not validate the UTF-8 here, that's not
5045 * the job of this function.
5047 for (; *label
; label
++)
5048 if ((*label
& 0x80) || isalnum(*label
))
5049 strbuf_addch(buf
, *label
);
5050 /* avoid leading dash and double-dashes */
5051 else if (buf
->len
&& buf
->buf
[buf
->len
- 1] != '-')
5052 strbuf_addch(buf
, '-');
5054 strbuf_addstr(buf
, "rev-");
5055 strbuf_add_unique_abbrev(buf
, oid
, default_abbrev
);
5059 if ((buf
->len
== the_hash_algo
->hexsz
&&
5060 !get_oid_hex(label
, &dummy
)) ||
5061 (buf
->len
== 1 && *label
== '#') ||
5062 hashmap_get_from_hash(&state
->labels
,
5063 strihash(label
), label
)) {
5065 * If the label already exists, or if the label is a
5066 * valid full OID, or the label is a '#' (which we use
5067 * as a separator between merge heads and oneline), we
5068 * append a dash and a number to make it unique.
5070 size_t len
= buf
->len
;
5072 for (i
= 2; ; i
++) {
5073 strbuf_setlen(buf
, len
);
5074 strbuf_addf(buf
, "-%d", i
);
5075 if (!hashmap_get_from_hash(&state
->labels
,
5085 FLEX_ALLOC_STR(labels_entry
, label
, label
);
5086 hashmap_entry_init(&labels_entry
->entry
, strihash(label
));
5087 hashmap_add(&state
->labels
, &labels_entry
->entry
);
5089 FLEX_ALLOC_STR(string_entry
, string
, label
);
5090 oidcpy(&string_entry
->entry
.oid
, oid
);
5091 oidmap_put(&state
->commit2label
, string_entry
);
5093 return string_entry
->string
;
5096 static int make_script_with_merges(struct pretty_print_context
*pp
,
5097 struct rev_info
*revs
, struct strbuf
*out
,
5100 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5101 int rebase_cousins
= flags
& TODO_LIST_REBASE_COUSINS
;
5102 int root_with_onto
= flags
& TODO_LIST_ROOT_WITH_ONTO
;
5103 struct strbuf buf
= STRBUF_INIT
, oneline
= STRBUF_INIT
;
5104 struct strbuf label
= STRBUF_INIT
;
5105 struct commit_list
*commits
= NULL
, **tail
= &commits
, *iter
;
5106 struct commit_list
*tips
= NULL
, **tips_tail
= &tips
;
5107 struct commit
*commit
;
5108 struct oidmap commit2todo
= OIDMAP_INIT
;
5109 struct string_entry
*entry
;
5110 struct oidset interesting
= OIDSET_INIT
, child_seen
= OIDSET_INIT
,
5111 shown
= OIDSET_INIT
;
5112 struct label_state state
= { OIDMAP_INIT
, { NULL
}, STRBUF_INIT
};
5114 int abbr
= flags
& TODO_LIST_ABBREVIATE_CMDS
;
5115 const char *cmd_pick
= abbr
? "p" : "pick",
5116 *cmd_label
= abbr
? "l" : "label",
5117 *cmd_reset
= abbr
? "t" : "reset",
5118 *cmd_merge
= abbr
? "m" : "merge";
5120 oidmap_init(&commit2todo
, 0);
5121 oidmap_init(&state
.commit2label
, 0);
5122 hashmap_init(&state
.labels
, labels_cmp
, NULL
, 0);
5123 strbuf_init(&state
.buf
, 32);
5125 if (revs
->cmdline
.nr
&& (revs
->cmdline
.rev
[0].flags
& BOTTOM
)) {
5126 struct labels_entry
*onto_label_entry
;
5127 struct object_id
*oid
= &revs
->cmdline
.rev
[0].item
->oid
;
5128 FLEX_ALLOC_STR(entry
, string
, "onto");
5129 oidcpy(&entry
->entry
.oid
, oid
);
5130 oidmap_put(&state
.commit2label
, entry
);
5132 FLEX_ALLOC_STR(onto_label_entry
, label
, "onto");
5133 hashmap_entry_init(&onto_label_entry
->entry
, strihash("onto"));
5134 hashmap_add(&state
.labels
, &onto_label_entry
->entry
);
5139 * - get onelines for all commits
5140 * - gather all branch tips (i.e. 2nd or later parents of merges)
5141 * - label all branch tips
5143 while ((commit
= get_revision(revs
))) {
5144 struct commit_list
*to_merge
;
5145 const char *p1
, *p2
;
5146 struct object_id
*oid
;
5149 tail
= &commit_list_insert(commit
, tail
)->next
;
5150 oidset_insert(&interesting
, &commit
->object
.oid
);
5152 is_empty
= is_original_commit_empty(commit
);
5153 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
))
5155 if (is_empty
&& !keep_empty
)
5158 strbuf_reset(&oneline
);
5159 pretty_print_commit(pp
, commit
, &oneline
);
5161 to_merge
= commit
->parents
? commit
->parents
->next
: NULL
;
5163 /* non-merge commit: easy case */
5165 strbuf_addf(&buf
, "%s %s %s", cmd_pick
,
5166 oid_to_hex(&commit
->object
.oid
),
5169 strbuf_addf(&buf
, " %c empty",
5172 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5173 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5174 oidmap_put(&commit2todo
, entry
);
5179 /* Create a label */
5180 strbuf_reset(&label
);
5181 if (skip_prefix(oneline
.buf
, "Merge ", &p1
) &&
5182 (p1
= strchr(p1
, '\'')) &&
5183 (p2
= strchr(++p1
, '\'')))
5184 strbuf_add(&label
, p1
, p2
- p1
);
5185 else if (skip_prefix(oneline
.buf
, "Merge pull request ",
5187 (p1
= strstr(p1
, " from ")))
5188 strbuf_addstr(&label
, p1
+ strlen(" from "));
5190 strbuf_addbuf(&label
, &oneline
);
5193 strbuf_addf(&buf
, "%s -C %s",
5194 cmd_merge
, oid_to_hex(&commit
->object
.oid
));
5196 /* label the tips of merged branches */
5197 for (; to_merge
; to_merge
= to_merge
->next
) {
5198 oid
= &to_merge
->item
->object
.oid
;
5199 strbuf_addch(&buf
, ' ');
5201 if (!oidset_contains(&interesting
, oid
)) {
5202 strbuf_addstr(&buf
, label_oid(oid
, NULL
,
5207 tips_tail
= &commit_list_insert(to_merge
->item
,
5210 strbuf_addstr(&buf
, label_oid(oid
, label
.buf
, &state
));
5212 strbuf_addf(&buf
, " # %s", oneline
.buf
);
5214 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5215 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5216 oidmap_put(&commit2todo
, entry
);
5221 * - label branch points
5222 * - add HEAD to the branch tips
5224 for (iter
= commits
; iter
; iter
= iter
->next
) {
5225 struct commit_list
*parent
= iter
->item
->parents
;
5226 for (; parent
; parent
= parent
->next
) {
5227 struct object_id
*oid
= &parent
->item
->object
.oid
;
5228 if (!oidset_contains(&interesting
, oid
))
5230 if (oidset_insert(&child_seen
, oid
))
5231 label_oid(oid
, "branch-point", &state
);
5234 /* Add HEAD as implicit "tip of branch" */
5236 tips_tail
= &commit_list_insert(iter
->item
,
5241 * Third phase: output the todo list. This is a bit tricky, as we
5242 * want to avoid jumping back and forth between revisions. To
5243 * accomplish that goal, we walk backwards from the branch tips,
5244 * gathering commits not yet shown, reversing the list on the fly,
5245 * then outputting that list (labeling revisions as needed).
5247 strbuf_addf(out
, "%s onto\n", cmd_label
);
5248 for (iter
= tips
; iter
; iter
= iter
->next
) {
5249 struct commit_list
*list
= NULL
, *iter2
;
5251 commit
= iter
->item
;
5252 if (oidset_contains(&shown
, &commit
->object
.oid
))
5254 entry
= oidmap_get(&state
.commit2label
, &commit
->object
.oid
);
5257 strbuf_addf(out
, "\n%c Branch %s\n", comment_line_char
, entry
->string
);
5259 strbuf_addch(out
, '\n');
5261 while (oidset_contains(&interesting
, &commit
->object
.oid
) &&
5262 !oidset_contains(&shown
, &commit
->object
.oid
)) {
5263 commit_list_insert(commit
, &list
);
5264 if (!commit
->parents
) {
5268 commit
= commit
->parents
->item
;
5272 strbuf_addf(out
, "%s %s\n", cmd_reset
,
5273 rebase_cousins
|| root_with_onto
?
5274 "onto" : "[new root]");
5276 const char *to
= NULL
;
5278 entry
= oidmap_get(&state
.commit2label
,
5279 &commit
->object
.oid
);
5282 else if (!rebase_cousins
)
5283 to
= label_oid(&commit
->object
.oid
, NULL
,
5286 if (!to
|| !strcmp(to
, "onto"))
5287 strbuf_addf(out
, "%s onto\n", cmd_reset
);
5289 strbuf_reset(&oneline
);
5290 pretty_print_commit(pp
, commit
, &oneline
);
5291 strbuf_addf(out
, "%s %s # %s\n",
5292 cmd_reset
, to
, oneline
.buf
);
5296 for (iter2
= list
; iter2
; iter2
= iter2
->next
) {
5297 struct object_id
*oid
= &iter2
->item
->object
.oid
;
5298 entry
= oidmap_get(&commit2todo
, oid
);
5299 /* only show if not already upstream */
5301 strbuf_addf(out
, "%s\n", entry
->string
);
5302 entry
= oidmap_get(&state
.commit2label
, oid
);
5304 strbuf_addf(out
, "%s %s\n",
5305 cmd_label
, entry
->string
);
5306 oidset_insert(&shown
, oid
);
5309 free_commit_list(list
);
5312 free_commit_list(commits
);
5313 free_commit_list(tips
);
5315 strbuf_release(&label
);
5316 strbuf_release(&oneline
);
5317 strbuf_release(&buf
);
5319 oidmap_free(&commit2todo
, 1);
5320 oidmap_free(&state
.commit2label
, 1);
5321 hashmap_clear_and_free(&state
.labels
, struct labels_entry
, entry
);
5322 strbuf_release(&state
.buf
);
5327 int sequencer_make_script(struct repository
*r
, struct strbuf
*out
, int argc
,
5328 const char **argv
, unsigned flags
)
5330 char *format
= NULL
;
5331 struct pretty_print_context pp
= {0};
5332 struct rev_info revs
;
5333 struct commit
*commit
;
5334 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5335 const char *insn
= flags
& TODO_LIST_ABBREVIATE_CMDS
? "p" : "pick";
5336 int rebase_merges
= flags
& TODO_LIST_REBASE_MERGES
;
5337 int reapply_cherry_picks
= flags
& TODO_LIST_REAPPLY_CHERRY_PICKS
;
5339 repo_init_revisions(r
, &revs
, NULL
);
5340 revs
.verbose_header
= 1;
5342 revs
.max_parents
= 1;
5343 revs
.cherry_mark
= !reapply_cherry_picks
;
5346 revs
.right_only
= 1;
5347 revs
.sort_order
= REV_SORT_IN_GRAPH_ORDER
;
5348 revs
.topo_order
= 1;
5350 revs
.pretty_given
= 1;
5351 git_config_get_string("rebase.instructionFormat", &format
);
5352 if (!format
|| !*format
) {
5354 format
= xstrdup("%s");
5356 get_commit_format(format
, &revs
);
5358 pp
.fmt
= revs
.commit_format
;
5359 pp
.output_encoding
= get_log_output_encoding();
5361 if (setup_revisions(argc
, argv
, &revs
, NULL
) > 1)
5362 return error(_("make_script: unhandled options"));
5364 if (prepare_revision_walk(&revs
) < 0)
5365 return error(_("make_script: error preparing revisions"));
5368 return make_script_with_merges(&pp
, &revs
, out
, flags
);
5370 while ((commit
= get_revision(&revs
))) {
5371 int is_empty
= is_original_commit_empty(commit
);
5373 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
))
5375 if (is_empty
&& !keep_empty
)
5377 strbuf_addf(out
, "%s %s ", insn
,
5378 oid_to_hex(&commit
->object
.oid
));
5379 pretty_print_commit(&pp
, commit
, out
);
5381 strbuf_addf(out
, " %c empty", comment_line_char
);
5382 strbuf_addch(out
, '\n');
5388 * Add commands after pick and (series of) squash/fixup commands
5391 void todo_list_add_exec_commands(struct todo_list
*todo_list
,
5392 struct string_list
*commands
)
5394 struct strbuf
*buf
= &todo_list
->buf
;
5395 size_t base_offset
= buf
->len
;
5396 int i
, insert
, nr
= 0, alloc
= 0;
5397 struct todo_item
*items
= NULL
, *base_items
= NULL
;
5399 CALLOC_ARRAY(base_items
, commands
->nr
);
5400 for (i
= 0; i
< commands
->nr
; i
++) {
5401 size_t command_len
= strlen(commands
->items
[i
].string
);
5403 strbuf_addstr(buf
, commands
->items
[i
].string
);
5404 strbuf_addch(buf
, '\n');
5406 base_items
[i
].command
= TODO_EXEC
;
5407 base_items
[i
].offset_in_buf
= base_offset
;
5408 base_items
[i
].arg_offset
= base_offset
+ strlen("exec ");
5409 base_items
[i
].arg_len
= command_len
- strlen("exec ");
5411 base_offset
+= command_len
+ 1;
5415 * Insert <commands> after every pick. Here, fixup/squash chains
5416 * are considered part of the pick, so we insert the commands *after*
5417 * those chains if there are any.
5419 * As we insert the exec commands immediately after rearranging
5420 * any fixups and before the user edits the list, a fixup chain
5421 * can never contain comments (any comments are empty picks that
5422 * have been commented out because the user did not specify
5423 * --keep-empty). So, it is safe to insert an exec command
5424 * without looking at the command following a comment.
5427 for (i
= 0; i
< todo_list
->nr
; i
++) {
5428 enum todo_command command
= todo_list
->items
[i
].command
;
5429 if (insert
&& !is_fixup(command
)) {
5430 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5431 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5437 ALLOC_GROW(items
, nr
+ 1, alloc
);
5438 items
[nr
++] = todo_list
->items
[i
];
5440 if (command
== TODO_PICK
|| command
== TODO_MERGE
)
5444 /* insert or append final <commands> */
5445 if (insert
|| nr
== todo_list
->nr
) {
5446 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5447 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5452 FREE_AND_NULL(todo_list
->items
);
5453 todo_list
->items
= items
;
5455 todo_list
->alloc
= alloc
;
5458 static void todo_list_to_strbuf(struct repository
*r
, struct todo_list
*todo_list
,
5459 struct strbuf
*buf
, int num
, unsigned flags
)
5461 struct todo_item
*item
;
5462 int i
, max
= todo_list
->nr
;
5464 if (num
> 0 && num
< max
)
5467 for (item
= todo_list
->items
, i
= 0; i
< max
; i
++, item
++) {
5470 /* if the item is not a command write it and continue */
5471 if (item
->command
>= TODO_COMMENT
) {
5472 strbuf_addf(buf
, "%.*s\n", item
->arg_len
,
5473 todo_item_get_arg(todo_list
, item
));
5477 /* add command to the buffer */
5478 cmd
= command_to_char(item
->command
);
5479 if ((flags
& TODO_LIST_ABBREVIATE_CMDS
) && cmd
)
5480 strbuf_addch(buf
, cmd
);
5482 strbuf_addstr(buf
, command_to_string(item
->command
));
5486 const char *oid
= flags
& TODO_LIST_SHORTEN_IDS
?
5487 short_commit_name(item
->commit
) :
5488 oid_to_hex(&item
->commit
->object
.oid
);
5490 if (item
->command
== TODO_FIXUP
) {
5491 if (item
->flags
& TODO_EDIT_FIXUP_MSG
)
5492 strbuf_addstr(buf
, " -c");
5493 else if (item
->flags
& TODO_REPLACE_FIXUP_MSG
) {
5494 strbuf_addstr(buf
, " -C");
5498 if (item
->command
== TODO_MERGE
) {
5499 if (item
->flags
& TODO_EDIT_MERGE_MSG
)
5500 strbuf_addstr(buf
, " -c");
5502 strbuf_addstr(buf
, " -C");
5505 strbuf_addf(buf
, " %s", oid
);
5508 /* add all the rest */
5510 strbuf_addch(buf
, '\n');
5512 strbuf_addf(buf
, " %.*s\n", item
->arg_len
,
5513 todo_item_get_arg(todo_list
, item
));
5517 int todo_list_write_to_file(struct repository
*r
, struct todo_list
*todo_list
,
5518 const char *file
, const char *shortrevisions
,
5519 const char *shortonto
, int num
, unsigned flags
)
5522 struct strbuf buf
= STRBUF_INIT
;
5524 todo_list_to_strbuf(r
, todo_list
, &buf
, num
, flags
);
5525 if (flags
& TODO_LIST_APPEND_TODO_HELP
)
5526 append_todo_help(count_commands(todo_list
),
5527 shortrevisions
, shortonto
, &buf
);
5529 res
= write_message(buf
.buf
, buf
.len
, file
, 0);
5530 strbuf_release(&buf
);
5535 /* skip picking commits whose parents are unchanged */
5536 static int skip_unnecessary_picks(struct repository
*r
,
5537 struct todo_list
*todo_list
,
5538 struct object_id
*base_oid
)
5540 struct object_id
*parent_oid
;
5543 for (i
= 0; i
< todo_list
->nr
; i
++) {
5544 struct todo_item
*item
= todo_list
->items
+ i
;
5546 if (item
->command
>= TODO_NOOP
)
5548 if (item
->command
!= TODO_PICK
)
5550 if (parse_commit(item
->commit
)) {
5551 return error(_("could not parse commit '%s'"),
5552 oid_to_hex(&item
->commit
->object
.oid
));
5554 if (!item
->commit
->parents
)
5555 break; /* root commit */
5556 if (item
->commit
->parents
->next
)
5557 break; /* merge commit */
5558 parent_oid
= &item
->commit
->parents
->item
->object
.oid
;
5559 if (!oideq(parent_oid
, base_oid
))
5561 oidcpy(base_oid
, &item
->commit
->object
.oid
);
5564 const char *done_path
= rebase_path_done();
5566 if (todo_list_write_to_file(r
, todo_list
, done_path
, NULL
, NULL
, i
, 0)) {
5567 error_errno(_("could not write to '%s'"), done_path
);
5571 MOVE_ARRAY(todo_list
->items
, todo_list
->items
+ i
, todo_list
->nr
- i
);
5573 todo_list
->current
= 0;
5574 todo_list
->done_nr
+= i
;
5576 if (is_fixup(peek_command(todo_list
, 0)))
5577 record_in_rewritten(base_oid
, peek_command(todo_list
, 0));
5583 int complete_action(struct repository
*r
, struct replay_opts
*opts
, unsigned flags
,
5584 const char *shortrevisions
, const char *onto_name
,
5585 struct commit
*onto
, const struct object_id
*orig_head
,
5586 struct string_list
*commands
, unsigned autosquash
,
5587 struct todo_list
*todo_list
)
5589 char shortonto
[GIT_MAX_HEXSZ
+ 1];
5590 const char *todo_file
= rebase_path_todo();
5591 struct todo_list new_todo
= TODO_LIST_INIT
;
5592 struct strbuf
*buf
= &todo_list
->buf
, buf2
= STRBUF_INIT
;
5593 struct object_id oid
= onto
->object
.oid
;
5596 find_unique_abbrev_r(shortonto
, &oid
, DEFAULT_ABBREV
);
5598 if (buf
->len
== 0) {
5599 struct todo_item
*item
= append_new_todo(todo_list
);
5600 item
->command
= TODO_NOOP
;
5601 item
->commit
= NULL
;
5602 item
->arg_len
= item
->arg_offset
= item
->flags
= item
->offset_in_buf
= 0;
5605 if (autosquash
&& todo_list_rearrange_squash(todo_list
))
5609 todo_list_add_exec_commands(todo_list
, commands
);
5611 if (count_commands(todo_list
) == 0) {
5612 apply_autostash(rebase_path_autostash());
5613 sequencer_remove_state(opts
);
5615 return error(_("nothing to do"));
5618 res
= edit_todo_list(r
, todo_list
, &new_todo
, shortrevisions
,
5622 else if (res
== -2) {
5623 apply_autostash(rebase_path_autostash());
5624 sequencer_remove_state(opts
);
5627 } else if (res
== -3) {
5628 apply_autostash(rebase_path_autostash());
5629 sequencer_remove_state(opts
);
5630 todo_list_release(&new_todo
);
5632 return error(_("nothing to do"));
5633 } else if (res
== -4) {
5634 checkout_onto(r
, opts
, onto_name
, &onto
->object
.oid
, orig_head
);
5635 todo_list_release(&new_todo
);
5640 /* Expand the commit IDs */
5641 todo_list_to_strbuf(r
, &new_todo
, &buf2
, -1, 0);
5642 strbuf_swap(&new_todo
.buf
, &buf2
);
5643 strbuf_release(&buf2
);
5644 new_todo
.total_nr
-= new_todo
.nr
;
5645 if (todo_list_parse_insn_buffer(r
, new_todo
.buf
.buf
, &new_todo
) < 0)
5646 BUG("invalid todo list after expanding IDs:\n%s",
5649 if (opts
->allow_ff
&& skip_unnecessary_picks(r
, &new_todo
, &oid
)) {
5650 todo_list_release(&new_todo
);
5651 return error(_("could not skip unnecessary pick commands"));
5654 if (todo_list_write_to_file(r
, &new_todo
, todo_file
, NULL
, NULL
, -1,
5655 flags
& ~(TODO_LIST_SHORTEN_IDS
))) {
5656 todo_list_release(&new_todo
);
5657 return error_errno(_("could not write '%s'"), todo_file
);
5662 if (checkout_onto(r
, opts
, onto_name
, &oid
, orig_head
))
5665 if (require_clean_work_tree(r
, "rebase", "", 1, 1))
5668 todo_list_write_total_nr(&new_todo
);
5669 res
= pick_commits(r
, &new_todo
, opts
);
5672 todo_list_release(&new_todo
);
5677 struct subject2item_entry
{
5678 struct hashmap_entry entry
;
5680 char subject
[FLEX_ARRAY
];
5683 static int subject2item_cmp(const void *fndata
,
5684 const struct hashmap_entry
*eptr
,
5685 const struct hashmap_entry
*entry_or_key
,
5688 const struct subject2item_entry
*a
, *b
;
5690 a
= container_of(eptr
, const struct subject2item_entry
, entry
);
5691 b
= container_of(entry_or_key
, const struct subject2item_entry
, entry
);
5693 return key
? strcmp(a
->subject
, key
) : strcmp(a
->subject
, b
->subject
);
5696 define_commit_slab(commit_todo_item
, struct todo_item
*);
5698 static int skip_fixupish(const char *subject
, const char **p
) {
5699 return skip_prefix(subject
, "fixup! ", p
) ||
5700 skip_prefix(subject
, "amend! ", p
) ||
5701 skip_prefix(subject
, "squash! ", p
);
5705 * Rearrange the todo list that has both "pick commit-id msg" and "pick
5706 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
5707 * after the former, and change "pick" to "fixup"/"squash".
5709 * Note that if the config has specified a custom instruction format, each log
5710 * message will have to be retrieved from the commit (as the oneline in the
5711 * script cannot be trusted) in order to normalize the autosquash arrangement.
5713 int todo_list_rearrange_squash(struct todo_list
*todo_list
)
5715 struct hashmap subject2item
;
5716 int rearranged
= 0, *next
, *tail
, i
, nr
= 0, alloc
= 0;
5718 struct commit_todo_item commit_todo
;
5719 struct todo_item
*items
= NULL
;
5721 init_commit_todo_item(&commit_todo
);
5723 * The hashmap maps onelines to the respective todo list index.
5725 * If any items need to be rearranged, the next[i] value will indicate
5726 * which item was moved directly after the i'th.
5728 * In that case, last[i] will indicate the index of the latest item to
5729 * be moved to appear after the i'th.
5731 hashmap_init(&subject2item
, subject2item_cmp
, NULL
, todo_list
->nr
);
5732 ALLOC_ARRAY(next
, todo_list
->nr
);
5733 ALLOC_ARRAY(tail
, todo_list
->nr
);
5734 ALLOC_ARRAY(subjects
, todo_list
->nr
);
5735 for (i
= 0; i
< todo_list
->nr
; i
++) {
5736 struct strbuf buf
= STRBUF_INIT
;
5737 struct todo_item
*item
= todo_list
->items
+ i
;
5738 const char *commit_buffer
, *subject
, *p
;
5741 struct subject2item_entry
*entry
;
5743 next
[i
] = tail
[i
] = -1;
5744 if (!item
->commit
|| item
->command
== TODO_DROP
) {
5749 if (is_fixup(item
->command
)) {
5750 clear_commit_todo_item(&commit_todo
);
5751 return error(_("the script was already rearranged."));
5754 *commit_todo_item_at(&commit_todo
, item
->commit
) = item
;
5756 parse_commit(item
->commit
);
5757 commit_buffer
= logmsg_reencode(item
->commit
, NULL
, "UTF-8");
5758 find_commit_subject(commit_buffer
, &subject
);
5759 format_subject(&buf
, subject
, " ");
5760 subject
= subjects
[i
] = strbuf_detach(&buf
, &subject_len
);
5761 unuse_commit_buffer(item
->commit
, commit_buffer
);
5762 if (skip_fixupish(subject
, &p
)) {
5763 struct commit
*commit2
;
5768 if (!skip_fixupish(p
, &p
))
5772 entry
= hashmap_get_entry_from_hash(&subject2item
,
5774 struct subject2item_entry
,
5777 /* found by title */
5779 else if (!strchr(p
, ' ') &&
5781 lookup_commit_reference_by_name(p
)) &&
5782 *commit_todo_item_at(&commit_todo
, commit2
))
5783 /* found by commit name */
5784 i2
= *commit_todo_item_at(&commit_todo
, commit2
)
5787 /* copy can be a prefix of the commit subject */
5788 for (i2
= 0; i2
< i
; i2
++)
5790 starts_with(subjects
[i2
], p
))
5798 if (starts_with(subject
, "fixup!")) {
5799 todo_list
->items
[i
].command
= TODO_FIXUP
;
5800 } else if (starts_with(subject
, "amend!")) {
5801 todo_list
->items
[i
].command
= TODO_FIXUP
;
5802 todo_list
->items
[i
].flags
= TODO_REPLACE_FIXUP_MSG
;
5804 todo_list
->items
[i
].command
= TODO_SQUASH
;
5810 next
[i
] = next
[tail
[i2
]];
5814 } else if (!hashmap_get_from_hash(&subject2item
,
5815 strhash(subject
), subject
)) {
5816 FLEX_ALLOC_MEM(entry
, subject
, subject
, subject_len
);
5818 hashmap_entry_init(&entry
->entry
,
5819 strhash(entry
->subject
));
5820 hashmap_put(&subject2item
, &entry
->entry
);
5825 for (i
= 0; i
< todo_list
->nr
; i
++) {
5826 enum todo_command command
= todo_list
->items
[i
].command
;
5830 * Initially, all commands are 'pick's. If it is a
5831 * fixup or a squash now, we have rearranged it.
5833 if (is_fixup(command
))
5837 ALLOC_GROW(items
, nr
+ 1, alloc
);
5838 items
[nr
++] = todo_list
->items
[cur
];
5843 FREE_AND_NULL(todo_list
->items
);
5844 todo_list
->items
= items
;
5846 todo_list
->alloc
= alloc
;
5851 for (i
= 0; i
< todo_list
->nr
; i
++)
5854 hashmap_clear_and_free(&subject2item
, struct subject2item_entry
, entry
);
5856 clear_commit_todo_item(&commit_todo
);
5861 int sequencer_determine_whence(struct repository
*r
, enum commit_whence
*whence
)
5863 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
5864 struct object_id cherry_pick_head
, rebase_head
;
5866 if (file_exists(git_path_seq_dir()))
5867 *whence
= FROM_CHERRY_PICK_MULTI
;
5868 if (file_exists(rebase_path()) &&
5869 !get_oid("REBASE_HEAD", &rebase_head
) &&
5870 !get_oid("CHERRY_PICK_HEAD", &cherry_pick_head
) &&
5871 oideq(&rebase_head
, &cherry_pick_head
))
5872 *whence
= FROM_REBASE_PICK
;
5874 *whence
= FROM_CHERRY_PICK_SINGLE
;