5 #include "object-store.h"
10 #include "run-command.h"
14 #include "cache-tree.h"
18 #include "merge-ort.h"
19 #include "merge-ort-wrappers.h"
25 #include "wt-status.h"
27 #include "notes-utils.h"
29 #include "unpack-trees.h"
33 #include "commit-slab.h"
35 #include "commit-reach.h"
36 #include "rebase-interactive.h"
40 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
42 static const char sign_off_header
[] = "Signed-off-by: ";
43 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
45 GIT_PATH_FUNC(git_path_commit_editmsg
, "COMMIT_EDITMSG")
47 static GIT_PATH_FUNC(git_path_seq_dir
, "sequencer")
49 static GIT_PATH_FUNC(git_path_todo_file
, "sequencer/todo")
50 static GIT_PATH_FUNC(git_path_opts_file
, "sequencer/opts")
51 static GIT_PATH_FUNC(git_path_head_file
, "sequencer/head")
52 static GIT_PATH_FUNC(git_path_abort_safety_file
, "sequencer/abort-safety")
54 static GIT_PATH_FUNC(rebase_path
, "rebase-merge")
56 * The file containing rebase commands, comments, and empty lines.
57 * This file is created by "git rebase -i" then edited by the user. As
58 * the lines are processed, they are removed from the front of this
59 * file and written to the tail of 'done'.
61 GIT_PATH_FUNC(rebase_path_todo
, "rebase-merge/git-rebase-todo")
62 GIT_PATH_FUNC(rebase_path_todo_backup
, "rebase-merge/git-rebase-todo.backup")
64 GIT_PATH_FUNC(rebase_path_dropped
, "rebase-merge/dropped")
67 * The rebase command lines that have already been processed. A line
68 * is moved here when it is first handled, before any associated user
71 static GIT_PATH_FUNC(rebase_path_done
, "rebase-merge/done")
73 * The file to keep track of how many commands were already processed (e.g.
76 static GIT_PATH_FUNC(rebase_path_msgnum
, "rebase-merge/msgnum")
78 * The file to keep track of how many commands are to be processed in total
79 * (e.g. for the prompt).
81 static GIT_PATH_FUNC(rebase_path_msgtotal
, "rebase-merge/end")
83 * The commit message that is planned to be used for any changes that
84 * need to be committed following a user interaction.
86 static GIT_PATH_FUNC(rebase_path_message
, "rebase-merge/message")
88 * The file into which is accumulated the suggested commit message for
89 * squash/fixup commands. When the first of a series of squash/fixups
90 * is seen, the file is created and the commit message from the
91 * previous commit and from the first squash/fixup commit are written
92 * to it. The commit message for each subsequent squash/fixup commit
93 * is appended to the file as it is processed.
95 static GIT_PATH_FUNC(rebase_path_squash_msg
, "rebase-merge/message-squash")
97 * If the current series of squash/fixups has not yet included a squash
98 * command, then this file exists and holds the commit message of the
99 * original "pick" commit. (If the series ends without a "squash"
100 * command, then this can be used as the commit message of the combined
101 * commit without opening the editor.)
103 static GIT_PATH_FUNC(rebase_path_fixup_msg
, "rebase-merge/message-fixup")
105 * This file contains the list fixup/squash commands that have been
106 * accumulated into message-fixup or message-squash so far.
108 static GIT_PATH_FUNC(rebase_path_current_fixups
, "rebase-merge/current-fixups")
110 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
111 * GIT_AUTHOR_DATE that will be used for the commit that is currently
114 static GIT_PATH_FUNC(rebase_path_author_script
, "rebase-merge/author-script")
116 * When an "edit" rebase command is being processed, the SHA1 of the
117 * commit to be edited is recorded in this file. When "git rebase
118 * --continue" is executed, if there are any staged changes then they
119 * will be amended to the HEAD commit, but only provided the HEAD
120 * commit is still the commit to be edited. When any other rebase
121 * command is processed, this file is deleted.
123 static GIT_PATH_FUNC(rebase_path_amend
, "rebase-merge/amend")
125 * When we stop at a given patch via the "edit" command, this file contains
126 * the commit object name of the corresponding patch.
128 static GIT_PATH_FUNC(rebase_path_stopped_sha
, "rebase-merge/stopped-sha")
130 * For the post-rewrite hook, we make a list of rewritten commits and
131 * their new sha1s. The rewritten-pending list keeps the sha1s of
132 * commits that have been processed, but not committed yet,
133 * e.g. because they are waiting for a 'squash' command.
135 static GIT_PATH_FUNC(rebase_path_rewritten_list
, "rebase-merge/rewritten-list")
136 static GIT_PATH_FUNC(rebase_path_rewritten_pending
,
137 "rebase-merge/rewritten-pending")
140 * The path of the file containing the OID of the "squash onto" commit, i.e.
141 * the dummy commit used for `reset [new root]`.
143 static GIT_PATH_FUNC(rebase_path_squash_onto
, "rebase-merge/squash-onto")
146 * The path of the file listing refs that need to be deleted after the rebase
147 * finishes. This is used by the `label` command to record the need for cleanup.
149 static GIT_PATH_FUNC(rebase_path_refs_to_delete
, "rebase-merge/refs-to-delete")
152 * The update-refs file stores a list of refs that will be updated at the end
153 * of the rebase sequence. The 'update-ref <ref>' commands in the todo file
154 * update the OIDs for the refs in this file, but the refs are not updated
155 * until the end of the rebase sequence.
157 * rebase_path_update_refs() returns the path to this file for a given
158 * worktree directory. For the current worktree, pass the_repository->gitdir.
160 static char *rebase_path_update_refs(const char *wt_git_dir
)
162 return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir
);
166 * The following files are written by git-rebase just after parsing the
169 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt
, "rebase-merge/gpg_sign_opt")
170 static GIT_PATH_FUNC(rebase_path_cdate_is_adate
, "rebase-merge/cdate_is_adate")
171 static GIT_PATH_FUNC(rebase_path_ignore_date
, "rebase-merge/ignore_date")
172 static GIT_PATH_FUNC(rebase_path_orig_head
, "rebase-merge/orig-head")
173 static GIT_PATH_FUNC(rebase_path_verbose
, "rebase-merge/verbose")
174 static GIT_PATH_FUNC(rebase_path_quiet
, "rebase-merge/quiet")
175 static GIT_PATH_FUNC(rebase_path_signoff
, "rebase-merge/signoff")
176 static GIT_PATH_FUNC(rebase_path_head_name
, "rebase-merge/head-name")
177 static GIT_PATH_FUNC(rebase_path_onto
, "rebase-merge/onto")
178 static GIT_PATH_FUNC(rebase_path_autostash
, "rebase-merge/autostash")
179 static GIT_PATH_FUNC(rebase_path_strategy
, "rebase-merge/strategy")
180 static GIT_PATH_FUNC(rebase_path_strategy_opts
, "rebase-merge/strategy_opts")
181 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate
, "rebase-merge/allow_rerere_autoupdate")
182 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec
, "rebase-merge/reschedule-failed-exec")
183 static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec
, "rebase-merge/no-reschedule-failed-exec")
184 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits
, "rebase-merge/drop_redundant_commits")
185 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits
, "rebase-merge/keep_redundant_commits")
188 * A 'struct update_refs_record' represents a value in the update-refs
189 * list. We use a string_list to map refs to these (before, after) pairs.
191 struct update_ref_record
{
192 struct object_id before
;
193 struct object_id after
;
196 static struct update_ref_record
*init_update_ref_record(const char *ref
)
198 struct update_ref_record
*rec
;
200 CALLOC_ARRAY(rec
, 1);
202 oidcpy(&rec
->before
, null_oid());
203 oidcpy(&rec
->after
, null_oid());
205 /* This may fail, but that's fine, we will keep the null OID. */
206 read_ref(ref
, &rec
->before
);
211 static int git_sequencer_config(const char *k
, const char *v
, void *cb
)
213 struct replay_opts
*opts
= cb
;
216 if (!strcmp(k
, "commit.cleanup")) {
219 status
= git_config_string(&s
, k
, v
);
223 if (!strcmp(s
, "verbatim")) {
224 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
225 opts
->explicit_cleanup
= 1;
226 } else if (!strcmp(s
, "whitespace")) {
227 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
228 opts
->explicit_cleanup
= 1;
229 } else if (!strcmp(s
, "strip")) {
230 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_ALL
;
231 opts
->explicit_cleanup
= 1;
232 } else if (!strcmp(s
, "scissors")) {
233 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SCISSORS
;
234 opts
->explicit_cleanup
= 1;
236 warning(_("invalid commit message cleanup mode '%s'"),
244 if (!strcmp(k
, "commit.gpgsign")) {
245 opts
->gpg_sign
= git_config_bool(k
, v
) ? xstrdup("") : NULL
;
249 if (!opts
->default_strategy
&& !strcmp(k
, "pull.twohead")) {
250 int ret
= git_config_string((const char**)&opts
->default_strategy
, k
, v
);
253 * pull.twohead is allowed to be multi-valued; we only
254 * care about the first value.
256 char *tmp
= strchr(opts
->default_strategy
, ' ');
263 if (opts
->action
== REPLAY_REVERT
&& !strcmp(k
, "revert.reference"))
264 opts
->commit_use_reference
= git_config_bool(k
, v
);
266 status
= git_gpg_config(k
, v
, NULL
);
270 return git_diff_basic_config(k
, v
, NULL
);
273 void sequencer_init_config(struct replay_opts
*opts
)
275 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
276 git_config(git_sequencer_config
, opts
);
279 static inline int is_rebase_i(const struct replay_opts
*opts
)
281 return opts
->action
== REPLAY_INTERACTIVE_REBASE
;
284 static const char *get_dir(const struct replay_opts
*opts
)
286 if (is_rebase_i(opts
))
287 return rebase_path();
288 return git_path_seq_dir();
291 static const char *get_todo_path(const struct replay_opts
*opts
)
293 if (is_rebase_i(opts
))
294 return rebase_path_todo();
295 return git_path_todo_file();
299 * Returns 0 for non-conforming footer
300 * Returns 1 for conforming footer
301 * Returns 2 when sob exists within conforming footer
302 * Returns 3 when sob exists within conforming footer as last entry
304 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
305 size_t ignore_footer
)
307 struct process_trailer_options opts
= PROCESS_TRAILER_OPTIONS_INIT
;
308 struct trailer_info info
;
310 int found_sob
= 0, found_sob_last
= 0;
316 saved_char
= sb
->buf
[sb
->len
- ignore_footer
];
317 sb
->buf
[sb
->len
- ignore_footer
] = '\0';
320 trailer_info_get(&info
, sb
->buf
, &opts
);
323 sb
->buf
[sb
->len
- ignore_footer
] = saved_char
;
325 if (info
.trailer_start
== info
.trailer_end
)
328 for (i
= 0; i
< info
.trailer_nr
; i
++)
329 if (sob
&& !strncmp(info
.trailers
[i
], sob
->buf
, sob
->len
)) {
331 if (i
== info
.trailer_nr
- 1)
335 trailer_info_release(&info
);
344 static const char *gpg_sign_opt_quoted(struct replay_opts
*opts
)
346 static struct strbuf buf
= STRBUF_INIT
;
350 sq_quotef(&buf
, "-S%s", opts
->gpg_sign
);
354 int sequencer_remove_state(struct replay_opts
*opts
)
356 struct strbuf buf
= STRBUF_INIT
;
359 if (is_rebase_i(opts
) &&
360 strbuf_read_file(&buf
, rebase_path_refs_to_delete(), 0) > 0) {
363 char *eol
= strchr(p
, '\n');
366 if (delete_ref("(rebase) cleanup", p
, NULL
, 0) < 0) {
367 warning(_("could not delete '%s'"), p
);
376 free(opts
->gpg_sign
);
377 free(opts
->reflog_action
);
378 free(opts
->default_strategy
);
379 free(opts
->strategy
);
380 for (i
= 0; i
< opts
->xopts_nr
; i
++)
381 free(opts
->xopts
[i
]);
383 strbuf_release(&opts
->current_fixups
);
386 strbuf_addstr(&buf
, get_dir(opts
));
387 if (remove_dir_recursively(&buf
, 0))
388 ret
= error(_("could not remove '%s'"), buf
.buf
);
389 strbuf_release(&buf
);
394 static const char *action_name(const struct replay_opts
*opts
)
396 switch (opts
->action
) {
400 return N_("cherry-pick");
401 case REPLAY_INTERACTIVE_REBASE
:
404 die(_("unknown action: %d"), opts
->action
);
407 struct commit_message
{
414 static const char *short_commit_name(struct commit
*commit
)
416 return find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
);
419 static int get_message(struct commit
*commit
, struct commit_message
*out
)
421 const char *abbrev
, *subject
;
424 out
->message
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
425 abbrev
= short_commit_name(commit
);
427 subject_len
= find_commit_subject(out
->message
, &subject
);
429 out
->subject
= xmemdupz(subject
, subject_len
);
430 out
->label
= xstrfmt("%s (%s)", abbrev
, out
->subject
);
431 out
->parent_label
= xstrfmt("parent of %s", out
->label
);
436 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
438 free(msg
->parent_label
);
441 unuse_commit_buffer(commit
, msg
->message
);
444 static void print_advice(struct repository
*r
, int show_hint
,
445 struct replay_opts
*opts
)
447 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
452 * A conflict has occurred but the porcelain
453 * (typically rebase --interactive) wants to take care
454 * of the commit itself so remove CHERRY_PICK_HEAD
456 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
463 advise(_("after resolving the conflicts, mark the corrected paths\n"
464 "with 'git add <paths>' or 'git rm <paths>'"));
465 else if (opts
->action
== REPLAY_PICK
)
466 advise(_("After resolving the conflicts, mark them with\n"
467 "\"git add/rm <pathspec>\", then run\n"
468 "\"git cherry-pick --continue\".\n"
469 "You can instead skip this commit with \"git cherry-pick --skip\".\n"
470 "To abort and get back to the state before \"git cherry-pick\",\n"
471 "run \"git cherry-pick --abort\"."));
472 else if (opts
->action
== REPLAY_REVERT
)
473 advise(_("After resolving the conflicts, mark them with\n"
474 "\"git add/rm <pathspec>\", then run\n"
475 "\"git revert --continue\".\n"
476 "You can instead skip this commit with \"git revert --skip\".\n"
477 "To abort and get back to the state before \"git revert\",\n"
478 "run \"git revert --abort\"."));
480 BUG("unexpected pick action in print_advice()");
484 static int write_message(const void *buf
, size_t len
, const char *filename
,
487 struct lock_file msg_file
= LOCK_INIT
;
489 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
, 0);
491 return error_errno(_("could not lock '%s'"), filename
);
492 if (write_in_full(msg_fd
, buf
, len
) < 0) {
493 error_errno(_("could not write to '%s'"), filename
);
494 rollback_lock_file(&msg_file
);
497 if (append_eol
&& write(msg_fd
, "\n", 1) < 0) {
498 error_errno(_("could not write eol to '%s'"), filename
);
499 rollback_lock_file(&msg_file
);
502 if (commit_lock_file(&msg_file
) < 0)
503 return error(_("failed to finalize '%s'"), filename
);
508 int read_oneliner(struct strbuf
*buf
,
509 const char *path
, unsigned flags
)
511 int orig_len
= buf
->len
;
513 if (strbuf_read_file(buf
, path
, 0) < 0) {
514 if ((flags
& READ_ONELINER_WARN_MISSING
) ||
515 (errno
!= ENOENT
&& errno
!= ENOTDIR
))
516 warning_errno(_("could not read '%s'"), path
);
520 if (buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\n') {
521 if (--buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\r')
523 buf
->buf
[buf
->len
] = '\0';
526 if ((flags
& READ_ONELINER_SKIP_IF_EMPTY
) && buf
->len
== orig_len
)
532 static struct tree
*empty_tree(struct repository
*r
)
534 return lookup_tree(r
, the_hash_algo
->empty_tree
);
537 static int error_dirty_index(struct repository
*repo
, struct replay_opts
*opts
)
539 if (repo_read_index_unmerged(repo
))
540 return error_resolve_conflict(action_name(opts
));
542 error(_("your local changes would be overwritten by %s."),
543 _(action_name(opts
)));
545 if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE
))
546 advise(_("commit your changes or stash them to proceed."));
550 static void update_abort_safety_file(void)
552 struct object_id head
;
554 /* Do nothing on a single-pick */
555 if (!file_exists(git_path_seq_dir()))
558 if (!get_oid("HEAD", &head
))
559 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head
));
561 write_file(git_path_abort_safety_file(), "%s", "");
564 static int fast_forward_to(struct repository
*r
,
565 const struct object_id
*to
,
566 const struct object_id
*from
,
568 struct replay_opts
*opts
)
570 struct ref_transaction
*transaction
;
571 struct strbuf sb
= STRBUF_INIT
;
572 struct strbuf err
= STRBUF_INIT
;
575 if (checkout_fast_forward(r
, from
, to
, 1))
576 return -1; /* the callee should have complained already */
578 strbuf_addf(&sb
, "%s: fast-forward", action_name(opts
));
580 transaction
= ref_transaction_begin(&err
);
582 ref_transaction_update(transaction
, "HEAD",
583 to
, unborn
&& !is_rebase_i(opts
) ?
586 ref_transaction_commit(transaction
, &err
)) {
587 ref_transaction_free(transaction
);
588 error("%s", err
.buf
);
590 strbuf_release(&err
);
595 strbuf_release(&err
);
596 ref_transaction_free(transaction
);
597 update_abort_safety_file();
601 enum commit_msg_cleanup_mode
get_cleanup_mode(const char *cleanup_arg
,
604 if (!cleanup_arg
|| !strcmp(cleanup_arg
, "default"))
605 return use_editor
? COMMIT_MSG_CLEANUP_ALL
:
606 COMMIT_MSG_CLEANUP_SPACE
;
607 else if (!strcmp(cleanup_arg
, "verbatim"))
608 return COMMIT_MSG_CLEANUP_NONE
;
609 else if (!strcmp(cleanup_arg
, "whitespace"))
610 return COMMIT_MSG_CLEANUP_SPACE
;
611 else if (!strcmp(cleanup_arg
, "strip"))
612 return COMMIT_MSG_CLEANUP_ALL
;
613 else if (!strcmp(cleanup_arg
, "scissors"))
614 return use_editor
? COMMIT_MSG_CLEANUP_SCISSORS
:
615 COMMIT_MSG_CLEANUP_SPACE
;
617 die(_("Invalid cleanup mode %s"), cleanup_arg
);
621 * NB using int rather than enum cleanup_mode to stop clang's
622 * -Wtautological-constant-out-of-range-compare complaining that the comparison
625 static const char *describe_cleanup_mode(int cleanup_mode
)
627 static const char *modes
[] = { "whitespace",
632 if (cleanup_mode
< ARRAY_SIZE(modes
))
633 return modes
[cleanup_mode
];
635 BUG("invalid cleanup_mode provided (%d)", cleanup_mode
);
638 void append_conflicts_hint(struct index_state
*istate
,
639 struct strbuf
*msgbuf
, enum commit_msg_cleanup_mode cleanup_mode
)
643 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
644 strbuf_addch(msgbuf
, '\n');
645 wt_status_append_cut_line(msgbuf
);
646 strbuf_addch(msgbuf
, comment_line_char
);
649 strbuf_addch(msgbuf
, '\n');
650 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
651 for (i
= 0; i
< istate
->cache_nr
;) {
652 const struct cache_entry
*ce
= istate
->cache
[i
++];
654 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
655 while (i
< istate
->cache_nr
&&
656 !strcmp(ce
->name
, istate
->cache
[i
]->name
))
662 static int do_recursive_merge(struct repository
*r
,
663 struct commit
*base
, struct commit
*next
,
664 const char *base_label
, const char *next_label
,
665 struct object_id
*head
, struct strbuf
*msgbuf
,
666 struct replay_opts
*opts
)
668 struct merge_options o
;
669 struct merge_result result
;
670 struct tree
*next_tree
, *base_tree
, *head_tree
;
671 int clean
, show_output
;
673 struct lock_file index_lock
= LOCK_INIT
;
675 if (repo_hold_locked_index(r
, &index_lock
, LOCK_REPORT_ON_ERROR
) < 0)
680 init_merge_options(&o
, r
);
681 o
.ancestor
= base
? base_label
: "(empty tree)";
683 o
.branch2
= next
? next_label
: "(empty tree)";
684 if (is_rebase_i(opts
))
686 o
.show_rename_progress
= 1;
688 head_tree
= parse_tree_indirect(head
);
689 next_tree
= next
? get_commit_tree(next
) : empty_tree(r
);
690 base_tree
= base
? get_commit_tree(base
) : empty_tree(r
);
692 for (i
= 0; i
< opts
->xopts_nr
; i
++)
693 parse_merge_opt(&o
, opts
->xopts
[i
]);
695 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "ort")) {
696 memset(&result
, 0, sizeof(result
));
697 merge_incore_nonrecursive(&o
, base_tree
, head_tree
, next_tree
,
699 show_output
= !is_rebase_i(opts
) || !result
.clean
;
701 * TODO: merge_switch_to_result will update index/working tree;
702 * we only really want to do that if !result.clean || this is
703 * the final patch to be picked. But determining this is the
704 * final patch would take some work, and "head_tree" would need
705 * to be replace with the tree the index matched before we
706 * started doing any picks.
708 merge_switch_to_result(&o
, head_tree
, &result
, 1, show_output
);
709 clean
= result
.clean
;
711 ensure_full_index(r
->index
);
712 clean
= merge_trees(&o
, head_tree
, next_tree
, base_tree
);
713 if (is_rebase_i(opts
) && clean
<= 0)
714 fputs(o
.obuf
.buf
, stdout
);
715 strbuf_release(&o
.obuf
);
718 rollback_lock_file(&index_lock
);
722 if (write_locked_index(r
->index
, &index_lock
,
723 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
725 * TRANSLATORS: %s will be "revert", "cherry-pick" or
728 return error(_("%s: Unable to write new index file"),
729 _(action_name(opts
)));
732 append_conflicts_hint(r
->index
, msgbuf
,
733 opts
->default_msg_cleanup
);
738 static struct object_id
*get_cache_tree_oid(struct index_state
*istate
)
740 if (!cache_tree_fully_valid(istate
->cache_tree
))
741 if (cache_tree_update(istate
, 0)) {
742 error(_("unable to update cache tree"));
746 return &istate
->cache_tree
->oid
;
749 static int is_index_unchanged(struct repository
*r
)
751 struct object_id head_oid
, *cache_tree_oid
;
752 struct commit
*head_commit
;
753 struct index_state
*istate
= r
->index
;
755 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
756 return error(_("could not resolve HEAD commit"));
758 head_commit
= lookup_commit(r
, &head_oid
);
761 * If head_commit is NULL, check_commit, called from
762 * lookup_commit, would have indicated that head_commit is not
763 * a commit object already. parse_commit() will return failure
764 * without further complaints in such a case. Otherwise, if
765 * the commit is invalid, parse_commit() will complain. So
766 * there is nothing for us to say here. Just return failure.
768 if (parse_commit(head_commit
))
771 if (!(cache_tree_oid
= get_cache_tree_oid(istate
)))
774 return oideq(cache_tree_oid
, get_commit_tree_oid(head_commit
));
777 static int write_author_script(const char *message
)
779 struct strbuf buf
= STRBUF_INIT
;
784 if (!*message
|| starts_with(message
, "\n")) {
786 /* Missing 'author' line? */
787 unlink(rebase_path_author_script());
789 } else if (skip_prefix(message
, "author ", &message
))
791 else if ((eol
= strchr(message
, '\n')))
796 strbuf_addstr(&buf
, "GIT_AUTHOR_NAME='");
797 while (*message
&& *message
!= '\n' && *message
!= '\r')
798 if (skip_prefix(message
, " <", &message
))
800 else if (*message
!= '\'')
801 strbuf_addch(&buf
, *(message
++));
803 strbuf_addf(&buf
, "'\\%c'", *(message
++));
804 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_EMAIL='");
805 while (*message
&& *message
!= '\n' && *message
!= '\r')
806 if (skip_prefix(message
, "> ", &message
))
808 else if (*message
!= '\'')
809 strbuf_addch(&buf
, *(message
++));
811 strbuf_addf(&buf
, "'\\%c'", *(message
++));
812 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_DATE='@");
813 while (*message
&& *message
!= '\n' && *message
!= '\r')
814 if (*message
!= '\'')
815 strbuf_addch(&buf
, *(message
++));
817 strbuf_addf(&buf
, "'\\%c'", *(message
++));
818 strbuf_addch(&buf
, '\'');
819 res
= write_message(buf
.buf
, buf
.len
, rebase_path_author_script(), 1);
820 strbuf_release(&buf
);
825 * Take a series of KEY='VALUE' lines where VALUE part is
826 * sq-quoted, and append <KEY, VALUE> at the end of the string list
828 static int parse_key_value_squoted(char *buf
, struct string_list
*list
)
831 struct string_list_item
*item
;
833 char *cp
= strchr(buf
, '=');
835 np
= strchrnul(buf
, '\n');
836 return error(_("no key present in '%.*s'"),
837 (int) (np
- buf
), buf
);
839 np
= strchrnul(cp
, '\n');
841 item
= string_list_append(list
, buf
);
843 buf
= np
+ (*np
== '\n');
847 return error(_("unable to dequote value of '%s'"),
849 item
->util
= xstrdup(cp
);
855 * Reads and parses the state directory's "author-script" file, and sets name,
856 * email and date accordingly.
857 * Returns 0 on success, -1 if the file could not be parsed.
859 * The author script is of the format:
861 * GIT_AUTHOR_NAME='$author_name'
862 * GIT_AUTHOR_EMAIL='$author_email'
863 * GIT_AUTHOR_DATE='$author_date'
865 * where $author_name, $author_email and $author_date are quoted. We are strict
866 * with our parsing, as the file was meant to be eval'd in the now-removed
867 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
868 * from what this function expects, it is better to bail out than to do
869 * something that the user does not expect.
871 int read_author_script(const char *path
, char **name
, char **email
, char **date
,
874 struct strbuf buf
= STRBUF_INIT
;
875 struct string_list kv
= STRING_LIST_INIT_DUP
;
876 int retval
= -1; /* assume failure */
877 int i
, name_i
= -2, email_i
= -2, date_i
= -2, err
= 0;
879 if (strbuf_read_file(&buf
, path
, 256) <= 0) {
880 strbuf_release(&buf
);
881 if (errno
== ENOENT
&& allow_missing
)
884 return error_errno(_("could not open '%s' for reading"),
888 if (parse_key_value_squoted(buf
.buf
, &kv
))
891 for (i
= 0; i
< kv
.nr
; i
++) {
892 if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_NAME")) {
894 name_i
= error(_("'GIT_AUTHOR_NAME' already given"));
897 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_EMAIL")) {
899 email_i
= error(_("'GIT_AUTHOR_EMAIL' already given"));
902 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_DATE")) {
904 date_i
= error(_("'GIT_AUTHOR_DATE' already given"));
908 err
= error(_("unknown variable '%s'"),
913 error(_("missing 'GIT_AUTHOR_NAME'"));
915 error(_("missing 'GIT_AUTHOR_EMAIL'"));
917 error(_("missing 'GIT_AUTHOR_DATE'"));
918 if (name_i
< 0 || email_i
< 0 || date_i
< 0 || err
)
920 *name
= kv
.items
[name_i
].util
;
921 *email
= kv
.items
[email_i
].util
;
922 *date
= kv
.items
[date_i
].util
;
925 string_list_clear(&kv
, !!retval
);
926 strbuf_release(&buf
);
931 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
932 * file with shell quoting into struct strvec. Returns -1 on
933 * error, 0 otherwise.
935 static int read_env_script(struct strvec
*env
)
937 char *name
, *email
, *date
;
939 if (read_author_script(rebase_path_author_script(),
940 &name
, &email
, &date
, 0))
943 strvec_pushf(env
, "GIT_AUTHOR_NAME=%s", name
);
944 strvec_pushf(env
, "GIT_AUTHOR_EMAIL=%s", email
);
945 strvec_pushf(env
, "GIT_AUTHOR_DATE=%s", date
);
953 static char *get_author(const char *message
)
958 a
= find_commit_header(message
, "author", &len
);
960 return xmemdupz(a
, len
);
965 static const char *author_date_from_env(const struct strvec
*env
)
970 for (i
= 0; i
< env
->nr
; i
++)
971 if (skip_prefix(env
->v
[i
],
972 "GIT_AUTHOR_DATE=", &date
))
975 * If GIT_AUTHOR_DATE is missing we should have already errored out when
978 BUG("GIT_AUTHOR_DATE missing from author script");
981 static const char staged_changes_advice
[] =
982 N_("you have staged changes in your working tree\n"
983 "If these changes are meant to be squashed into the previous commit, run:\n"
985 " git commit --amend %s\n"
987 "If they are meant to go into a new commit, run:\n"
991 "In both cases, once you're done, continue with:\n"
993 " git rebase --continue\n");
995 #define ALLOW_EMPTY (1<<0)
996 #define EDIT_MSG (1<<1)
997 #define AMEND_MSG (1<<2)
998 #define CLEANUP_MSG (1<<3)
999 #define VERIFY_MSG (1<<4)
1000 #define CREATE_ROOT_COMMIT (1<<5)
1001 #define VERBATIM_MSG (1<<6)
1003 static int run_command_silent_on_success(struct child_process
*cmd
)
1005 struct strbuf buf
= STRBUF_INIT
;
1008 cmd
->stdout_to_stderr
= 1;
1009 rc
= pipe_command(cmd
,
1015 fputs(buf
.buf
, stderr
);
1016 strbuf_release(&buf
);
1021 * If we are cherry-pick, and if the merge did not result in
1022 * hand-editing, we will hit this commit and inherit the original
1023 * author date and name.
1025 * If we are revert, or if our cherry-pick results in a hand merge,
1026 * we had better say that the current user is responsible for that.
1028 * An exception is when run_git_commit() is called during an
1029 * interactive rebase: in that case, we will want to retain the
1032 static int run_git_commit(const char *defmsg
,
1033 struct replay_opts
*opts
,
1036 struct child_process cmd
= CHILD_PROCESS_INIT
;
1038 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1039 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1043 if (is_rebase_i(opts
) &&
1044 ((opts
->committer_date_is_author_date
&& !opts
->ignore_date
) ||
1045 !(!defmsg
&& (flags
& AMEND_MSG
))) &&
1046 read_env_script(&cmd
.env
)) {
1047 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
1049 return error(_(staged_changes_advice
),
1053 strvec_pushf(&cmd
.env
, GIT_REFLOG_ACTION
"=%s", opts
->reflog_message
);
1055 if (opts
->committer_date_is_author_date
)
1056 strvec_pushf(&cmd
.env
, "GIT_COMMITTER_DATE=%s",
1059 author_date_from_env(&cmd
.env
));
1060 if (opts
->ignore_date
)
1061 strvec_push(&cmd
.env
, "GIT_AUTHOR_DATE=");
1063 strvec_push(&cmd
.args
, "commit");
1065 if (!(flags
& VERIFY_MSG
))
1066 strvec_push(&cmd
.args
, "-n");
1067 if ((flags
& AMEND_MSG
))
1068 strvec_push(&cmd
.args
, "--amend");
1070 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
1072 strvec_push(&cmd
.args
, "--no-gpg-sign");
1074 strvec_pushl(&cmd
.args
, "-F", defmsg
, NULL
);
1075 else if (!(flags
& EDIT_MSG
))
1076 strvec_pushl(&cmd
.args
, "-C", "HEAD", NULL
);
1077 if ((flags
& CLEANUP_MSG
))
1078 strvec_push(&cmd
.args
, "--cleanup=strip");
1079 if ((flags
& VERBATIM_MSG
))
1080 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1081 if ((flags
& EDIT_MSG
))
1082 strvec_push(&cmd
.args
, "-e");
1083 else if (!(flags
& CLEANUP_MSG
) &&
1084 !opts
->signoff
&& !opts
->record_origin
&&
1085 !opts
->explicit_cleanup
)
1086 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1088 if ((flags
& ALLOW_EMPTY
))
1089 strvec_push(&cmd
.args
, "--allow-empty");
1091 if (!(flags
& EDIT_MSG
))
1092 strvec_push(&cmd
.args
, "--allow-empty-message");
1094 if (is_rebase_i(opts
) && !(flags
& EDIT_MSG
))
1095 return run_command_silent_on_success(&cmd
);
1097 return run_command(&cmd
);
1100 static int rest_is_empty(const struct strbuf
*sb
, int start
)
1105 /* Check if the rest is just whitespace and Signed-off-by's. */
1106 for (i
= start
; i
< sb
->len
; i
++) {
1107 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
1113 if (strlen(sign_off_header
) <= eol
- i
&&
1114 starts_with(sb
->buf
+ i
, sign_off_header
)) {
1119 if (!isspace(sb
->buf
[i
++]))
1126 void cleanup_message(struct strbuf
*msgbuf
,
1127 enum commit_msg_cleanup_mode cleanup_mode
, int verbose
)
1129 if (verbose
|| /* Truncate the message just before the diff, if any. */
1130 cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
)
1131 strbuf_setlen(msgbuf
, wt_status_locate_end(msgbuf
->buf
, msgbuf
->len
));
1132 if (cleanup_mode
!= COMMIT_MSG_CLEANUP_NONE
)
1133 strbuf_stripspace(msgbuf
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1137 * Find out if the message in the strbuf contains only whitespace and
1138 * Signed-off-by lines.
1140 int message_is_empty(const struct strbuf
*sb
,
1141 enum commit_msg_cleanup_mode cleanup_mode
)
1143 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1145 return rest_is_empty(sb
, 0);
1149 * See if the user edited the message in the editor or left what
1150 * was in the template intact
1152 int template_untouched(const struct strbuf
*sb
, const char *template_file
,
1153 enum commit_msg_cleanup_mode cleanup_mode
)
1155 struct strbuf tmpl
= STRBUF_INIT
;
1158 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1161 if (!template_file
|| strbuf_read_file(&tmpl
, template_file
, 0) <= 0)
1164 strbuf_stripspace(&tmpl
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1165 if (!skip_prefix(sb
->buf
, tmpl
.buf
, &start
))
1167 strbuf_release(&tmpl
);
1168 return rest_is_empty(sb
, start
- sb
->buf
);
1171 int update_head_with_reflog(const struct commit
*old_head
,
1172 const struct object_id
*new_head
,
1173 const char *action
, const struct strbuf
*msg
,
1176 struct ref_transaction
*transaction
;
1177 struct strbuf sb
= STRBUF_INIT
;
1182 strbuf_addstr(&sb
, action
);
1183 strbuf_addstr(&sb
, ": ");
1186 nl
= strchr(msg
->buf
, '\n');
1188 strbuf_add(&sb
, msg
->buf
, nl
+ 1 - msg
->buf
);
1190 strbuf_addbuf(&sb
, msg
);
1191 strbuf_addch(&sb
, '\n');
1194 transaction
= ref_transaction_begin(err
);
1196 ref_transaction_update(transaction
, "HEAD", new_head
,
1197 old_head
? &old_head
->object
.oid
: null_oid(),
1199 ref_transaction_commit(transaction
, err
)) {
1202 ref_transaction_free(transaction
);
1203 strbuf_release(&sb
);
1208 static int run_rewrite_hook(const struct object_id
*oldoid
,
1209 const struct object_id
*newoid
)
1211 struct child_process proc
= CHILD_PROCESS_INIT
;
1213 struct strbuf sb
= STRBUF_INIT
;
1214 const char *hook_path
= find_hook("post-rewrite");
1219 strvec_pushl(&proc
.args
, hook_path
, "amend", NULL
);
1221 proc
.stdout_to_stderr
= 1;
1222 proc
.trace2_hook_name
= "post-rewrite";
1224 code
= start_command(&proc
);
1227 strbuf_addf(&sb
, "%s %s\n", oid_to_hex(oldoid
), oid_to_hex(newoid
));
1228 sigchain_push(SIGPIPE
, SIG_IGN
);
1229 write_in_full(proc
.in
, sb
.buf
, sb
.len
);
1231 strbuf_release(&sb
);
1232 sigchain_pop(SIGPIPE
);
1233 return finish_command(&proc
);
1236 void commit_post_rewrite(struct repository
*r
,
1237 const struct commit
*old_head
,
1238 const struct object_id
*new_head
)
1240 struct notes_rewrite_cfg
*cfg
;
1242 cfg
= init_copy_notes_for_rewrite("amend");
1244 /* we are amending, so old_head is not NULL */
1245 copy_note_for_rewrite(cfg
, &old_head
->object
.oid
, new_head
);
1246 finish_copy_notes_for_rewrite(r
, cfg
, "Notes added by 'git commit --amend'");
1248 run_rewrite_hook(&old_head
->object
.oid
, new_head
);
1251 static int run_prepare_commit_msg_hook(struct repository
*r
,
1256 const char *name
, *arg1
= NULL
, *arg2
= NULL
;
1258 name
= git_path_commit_editmsg();
1259 if (write_message(msg
->buf
, msg
->len
, name
, 0))
1268 if (run_commit_hook(0, r
->index_file
, NULL
, "prepare-commit-msg", name
,
1270 ret
= error(_("'prepare-commit-msg' hook failed"));
1275 static const char implicit_ident_advice_noconfig
[] =
1276 N_("Your name and email address were configured automatically based\n"
1277 "on your username and hostname. Please check that they are accurate.\n"
1278 "You can suppress this message by setting them explicitly. Run the\n"
1279 "following command and follow the instructions in your editor to edit\n"
1280 "your configuration file:\n"
1282 " git config --global --edit\n"
1284 "After doing this, you may fix the identity used for this commit with:\n"
1286 " git commit --amend --reset-author\n");
1288 static const char implicit_ident_advice_config
[] =
1289 N_("Your name and email address were configured automatically based\n"
1290 "on your username and hostname. Please check that they are accurate.\n"
1291 "You can suppress this message by setting them explicitly:\n"
1293 " git config --global user.name \"Your Name\"\n"
1294 " git config --global user.email you@example.com\n"
1296 "After doing this, you may fix the identity used for this commit with:\n"
1298 " git commit --amend --reset-author\n");
1300 static const char *implicit_ident_advice(void)
1302 char *user_config
= interpolate_path("~/.gitconfig", 0);
1303 char *xdg_config
= xdg_config_home("config");
1304 int config_exists
= file_exists(user_config
) || file_exists(xdg_config
);
1310 return _(implicit_ident_advice_config
);
1312 return _(implicit_ident_advice_noconfig
);
1316 void print_commit_summary(struct repository
*r
,
1318 const struct object_id
*oid
,
1321 struct rev_info rev
;
1322 struct commit
*commit
;
1323 struct strbuf format
= STRBUF_INIT
;
1325 struct pretty_print_context pctx
= {0};
1326 struct strbuf author_ident
= STRBUF_INIT
;
1327 struct strbuf committer_ident
= STRBUF_INIT
;
1328 struct ref_store
*refs
;
1330 commit
= lookup_commit(r
, oid
);
1332 die(_("couldn't look up newly created commit"));
1333 if (parse_commit(commit
))
1334 die(_("could not parse newly created commit"));
1336 strbuf_addstr(&format
, "format:%h] %s");
1338 format_commit_message(commit
, "%an <%ae>", &author_ident
, &pctx
);
1339 format_commit_message(commit
, "%cn <%ce>", &committer_ident
, &pctx
);
1340 if (strbuf_cmp(&author_ident
, &committer_ident
)) {
1341 strbuf_addstr(&format
, "\n Author: ");
1342 strbuf_addbuf_percentquote(&format
, &author_ident
);
1344 if (flags
& SUMMARY_SHOW_AUTHOR_DATE
) {
1345 struct strbuf date
= STRBUF_INIT
;
1347 format_commit_message(commit
, "%ad", &date
, &pctx
);
1348 strbuf_addstr(&format
, "\n Date: ");
1349 strbuf_addbuf_percentquote(&format
, &date
);
1350 strbuf_release(&date
);
1352 if (!committer_ident_sufficiently_given()) {
1353 strbuf_addstr(&format
, "\n Committer: ");
1354 strbuf_addbuf_percentquote(&format
, &committer_ident
);
1355 if (advice_enabled(ADVICE_IMPLICIT_IDENTITY
)) {
1356 strbuf_addch(&format
, '\n');
1357 strbuf_addstr(&format
, implicit_ident_advice());
1360 strbuf_release(&author_ident
);
1361 strbuf_release(&committer_ident
);
1363 repo_init_revisions(r
, &rev
, prefix
);
1364 setup_revisions(0, NULL
, &rev
, NULL
);
1367 rev
.diffopt
.output_format
=
1368 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
1370 rev
.verbose_header
= 1;
1371 rev
.show_root_diff
= 1;
1372 get_commit_format(format
.buf
, &rev
);
1373 rev
.always_show_header
= 0;
1374 rev
.diffopt
.detect_rename
= DIFF_DETECT_RENAME
;
1375 diff_setup_done(&rev
.diffopt
);
1377 refs
= get_main_ref_store(the_repository
);
1378 head
= refs_resolve_ref_unsafe(refs
, "HEAD", 0, NULL
, NULL
);
1380 die(_("unable to resolve HEAD after creating commit"));
1381 if (!strcmp(head
, "HEAD"))
1382 head
= _("detached HEAD");
1384 skip_prefix(head
, "refs/heads/", &head
);
1385 printf("[%s%s ", head
, (flags
& SUMMARY_INITIAL_COMMIT
) ?
1386 _(" (root-commit)") : "");
1388 if (!log_tree_commit(&rev
, commit
)) {
1389 rev
.always_show_header
= 1;
1390 rev
.use_terminator
= 1;
1391 log_tree_commit(&rev
, commit
);
1394 release_revisions(&rev
);
1395 strbuf_release(&format
);
1398 static int parse_head(struct repository
*r
, struct commit
**head
)
1400 struct commit
*current_head
;
1401 struct object_id oid
;
1403 if (get_oid("HEAD", &oid
)) {
1404 current_head
= NULL
;
1406 current_head
= lookup_commit_reference(r
, &oid
);
1408 return error(_("could not parse HEAD"));
1409 if (!oideq(&oid
, ¤t_head
->object
.oid
)) {
1410 warning(_("HEAD %s is not a commit!"),
1413 if (parse_commit(current_head
))
1414 return error(_("could not parse HEAD commit"));
1416 *head
= current_head
;
1422 * Try to commit without forking 'git commit'. In some cases we need
1423 * to run 'git commit' to display an error message
1426 * -1 - error unable to commit
1428 * 1 - run 'git commit'
1430 static int try_to_commit(struct repository
*r
,
1431 struct strbuf
*msg
, const char *author
,
1432 struct replay_opts
*opts
, unsigned int flags
,
1433 struct object_id
*oid
)
1435 struct object_id tree
;
1436 struct commit
*current_head
= NULL
;
1437 struct commit_list
*parents
= NULL
;
1438 struct commit_extra_header
*extra
= NULL
;
1439 struct strbuf err
= STRBUF_INIT
;
1440 struct strbuf commit_msg
= STRBUF_INIT
;
1441 char *amend_author
= NULL
;
1442 const char *committer
= NULL
;
1443 const char *hook_commit
= NULL
;
1444 enum commit_msg_cleanup_mode cleanup
;
1447 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1448 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1450 if (parse_head(r
, ¤t_head
))
1453 if (flags
& AMEND_MSG
) {
1454 const char *exclude_gpgsig
[] = { "gpgsig", "gpgsig-sha256", NULL
};
1455 const char *out_enc
= get_commit_output_encoding();
1456 const char *message
= logmsg_reencode(current_head
, NULL
,
1460 const char *orig_message
= NULL
;
1462 find_commit_subject(message
, &orig_message
);
1464 strbuf_addstr(msg
, orig_message
);
1465 hook_commit
= "HEAD";
1467 author
= amend_author
= get_author(message
);
1468 unuse_commit_buffer(current_head
, message
);
1470 res
= error(_("unable to parse commit author"));
1473 parents
= copy_commit_list(current_head
->parents
);
1474 extra
= read_commit_extra_headers(current_head
, exclude_gpgsig
);
1475 } else if (current_head
&&
1476 (!(flags
& CREATE_ROOT_COMMIT
) || (flags
& AMEND_MSG
))) {
1477 commit_list_insert(current_head
, &parents
);
1480 if (write_index_as_tree(&tree
, r
->index
, r
->index_file
, 0, NULL
)) {
1481 res
= error(_("git write-tree failed to write a tree"));
1485 if (!(flags
& ALLOW_EMPTY
)) {
1486 struct commit
*first_parent
= current_head
;
1488 if (flags
& AMEND_MSG
) {
1489 if (current_head
->parents
) {
1490 first_parent
= current_head
->parents
->item
;
1491 if (repo_parse_commit(r
, first_parent
)) {
1492 res
= error(_("could not parse HEAD commit"));
1496 first_parent
= NULL
;
1499 if (oideq(first_parent
1500 ? get_commit_tree_oid(first_parent
)
1501 : the_hash_algo
->empty_tree
,
1503 res
= 1; /* run 'git commit' to display error message */
1508 if (hook_exists("prepare-commit-msg")) {
1509 res
= run_prepare_commit_msg_hook(r
, msg
, hook_commit
);
1512 if (strbuf_read_file(&commit_msg
, git_path_commit_editmsg(),
1514 res
= error_errno(_("unable to read commit message "
1516 git_path_commit_editmsg());
1522 if (flags
& CLEANUP_MSG
)
1523 cleanup
= COMMIT_MSG_CLEANUP_ALL
;
1524 else if (flags
& VERBATIM_MSG
)
1525 cleanup
= COMMIT_MSG_CLEANUP_NONE
;
1526 else if ((opts
->signoff
|| opts
->record_origin
) &&
1527 !opts
->explicit_cleanup
)
1528 cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
1530 cleanup
= opts
->default_msg_cleanup
;
1532 if (cleanup
!= COMMIT_MSG_CLEANUP_NONE
)
1533 strbuf_stripspace(msg
, cleanup
== COMMIT_MSG_CLEANUP_ALL
);
1534 if ((flags
& EDIT_MSG
) && message_is_empty(msg
, cleanup
)) {
1535 res
= 1; /* run 'git commit' to display error message */
1539 if (opts
->committer_date_is_author_date
) {
1540 struct ident_split id
;
1541 struct strbuf date
= STRBUF_INIT
;
1543 if (!opts
->ignore_date
) {
1544 if (split_ident_line(&id
, author
, (int)strlen(author
)) < 0) {
1545 res
= error(_("invalid author identity '%s'"),
1549 if (!id
.date_begin
) {
1551 "corrupt author: missing date information"));
1554 strbuf_addf(&date
, "@%.*s %.*s",
1555 (int)(id
.date_end
- id
.date_begin
),
1557 (int)(id
.tz_end
- id
.tz_begin
),
1562 committer
= fmt_ident(getenv("GIT_COMMITTER_NAME"),
1563 getenv("GIT_COMMITTER_EMAIL"),
1564 WANT_COMMITTER_IDENT
,
1565 opts
->ignore_date
? NULL
: date
.buf
,
1567 strbuf_release(&date
);
1572 if (opts
->ignore_date
) {
1573 struct ident_split id
;
1576 if (split_ident_line(&id
, author
, strlen(author
)) < 0) {
1577 error(_("invalid author identity '%s'"), author
);
1580 name
= xmemdupz(id
.name_begin
, id
.name_end
- id
.name_begin
);
1581 email
= xmemdupz(id
.mail_begin
, id
.mail_end
- id
.mail_begin
);
1582 author
= fmt_ident(name
, email
, WANT_AUTHOR_IDENT
, NULL
,
1588 if (commit_tree_extended(msg
->buf
, msg
->len
, &tree
, parents
, oid
,
1589 author
, committer
, opts
->gpg_sign
, extra
)) {
1590 res
= error(_("failed to write commit object"));
1594 if (update_head_with_reflog(current_head
, oid
, opts
->reflog_message
,
1596 res
= error("%s", err
.buf
);
1600 run_commit_hook(0, r
->index_file
, NULL
, "post-commit", NULL
);
1601 if (flags
& AMEND_MSG
)
1602 commit_post_rewrite(r
, current_head
, oid
);
1605 free_commit_extra_headers(extra
);
1606 strbuf_release(&err
);
1607 strbuf_release(&commit_msg
);
1613 static int write_rebase_head(struct object_id
*oid
)
1615 if (update_ref("rebase", "REBASE_HEAD", oid
,
1616 NULL
, REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
1617 return error(_("could not update %s"), "REBASE_HEAD");
1622 static int do_commit(struct repository
*r
,
1623 const char *msg_file
, const char *author
,
1624 struct replay_opts
*opts
, unsigned int flags
,
1625 struct object_id
*oid
)
1629 if (!(flags
& EDIT_MSG
) && !(flags
& VERIFY_MSG
)) {
1630 struct object_id oid
;
1631 struct strbuf sb
= STRBUF_INIT
;
1633 if (msg_file
&& strbuf_read_file(&sb
, msg_file
, 2048) < 0)
1634 return error_errno(_("unable to read commit message "
1638 res
= try_to_commit(r
, msg_file
? &sb
: NULL
,
1639 author
, opts
, flags
, &oid
);
1640 strbuf_release(&sb
);
1642 refs_delete_ref(get_main_ref_store(r
), "",
1643 "CHERRY_PICK_HEAD", NULL
, 0);
1644 unlink(git_path_merge_msg(r
));
1645 if (!is_rebase_i(opts
))
1646 print_commit_summary(r
, NULL
, &oid
,
1647 SUMMARY_SHOW_AUTHOR_DATE
);
1652 if (is_rebase_i(opts
) && oid
)
1653 if (write_rebase_head(oid
))
1655 return run_git_commit(msg_file
, opts
, flags
);
1661 static int is_original_commit_empty(struct commit
*commit
)
1663 const struct object_id
*ptree_oid
;
1665 if (parse_commit(commit
))
1666 return error(_("could not parse commit %s"),
1667 oid_to_hex(&commit
->object
.oid
));
1668 if (commit
->parents
) {
1669 struct commit
*parent
= commit
->parents
->item
;
1670 if (parse_commit(parent
))
1671 return error(_("could not parse parent commit %s"),
1672 oid_to_hex(&parent
->object
.oid
));
1673 ptree_oid
= get_commit_tree_oid(parent
);
1675 ptree_oid
= the_hash_algo
->empty_tree
; /* commit is root */
1678 return oideq(ptree_oid
, get_commit_tree_oid(commit
));
1682 * Should empty commits be allowed? Return status:
1683 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1684 * 0: Halt on empty commit
1685 * 1: Allow empty commit
1686 * 2: Drop empty commit
1688 static int allow_empty(struct repository
*r
,
1689 struct replay_opts
*opts
,
1690 struct commit
*commit
)
1692 int index_unchanged
, originally_empty
;
1697 * (1) we do not allow empty at all and error out.
1699 * (2) we allow ones that were initially empty, and
1700 * just drop the ones that become empty
1702 * (3) we allow ones that were initially empty, but
1703 * halt for the ones that become empty;
1705 * (4) we allow both.
1707 if (!opts
->allow_empty
)
1708 return 0; /* let "git commit" barf as necessary */
1710 index_unchanged
= is_index_unchanged(r
);
1711 if (index_unchanged
< 0)
1712 return index_unchanged
;
1713 if (!index_unchanged
)
1714 return 0; /* we do not have to say --allow-empty */
1716 if (opts
->keep_redundant_commits
)
1719 originally_empty
= is_original_commit_empty(commit
);
1720 if (originally_empty
< 0)
1721 return originally_empty
;
1722 if (originally_empty
)
1724 else if (opts
->drop_redundant_commits
)
1733 } todo_command_info
[] = {
1734 [TODO_PICK
] = { 'p', "pick" },
1735 [TODO_REVERT
] = { 0, "revert" },
1736 [TODO_EDIT
] = { 'e', "edit" },
1737 [TODO_REWORD
] = { 'r', "reword" },
1738 [TODO_FIXUP
] = { 'f', "fixup" },
1739 [TODO_SQUASH
] = { 's', "squash" },
1740 [TODO_EXEC
] = { 'x', "exec" },
1741 [TODO_BREAK
] = { 'b', "break" },
1742 [TODO_LABEL
] = { 'l', "label" },
1743 [TODO_RESET
] = { 't', "reset" },
1744 [TODO_MERGE
] = { 'm', "merge" },
1745 [TODO_UPDATE_REF
] = { 'u', "update-ref" },
1746 [TODO_NOOP
] = { 0, "noop" },
1747 [TODO_DROP
] = { 'd', "drop" },
1748 [TODO_COMMENT
] = { 0, NULL
},
1751 static const char *command_to_string(const enum todo_command command
)
1753 if (command
< TODO_COMMENT
)
1754 return todo_command_info
[command
].str
;
1755 die(_("unknown command: %d"), command
);
1758 static char command_to_char(const enum todo_command command
)
1760 if (command
< TODO_COMMENT
)
1761 return todo_command_info
[command
].c
;
1762 return comment_line_char
;
1765 static int is_noop(const enum todo_command command
)
1767 return TODO_NOOP
<= command
;
1770 static int is_fixup(enum todo_command command
)
1772 return command
== TODO_FIXUP
|| command
== TODO_SQUASH
;
1775 /* Does this command create a (non-merge) commit? */
1776 static int is_pick_or_similar(enum todo_command command
)
1791 enum todo_item_flags
{
1792 TODO_EDIT_MERGE_MSG
= (1 << 0),
1793 TODO_REPLACE_FIXUP_MSG
= (1 << 1),
1794 TODO_EDIT_FIXUP_MSG
= (1 << 2),
1797 static const char first_commit_msg_str
[] = N_("This is the 1st commit message:");
1798 static const char nth_commit_msg_fmt
[] = N_("This is the commit message #%d:");
1799 static const char skip_first_commit_msg_str
[] = N_("The 1st commit message will be skipped:");
1800 static const char skip_nth_commit_msg_fmt
[] = N_("The commit message #%d will be skipped:");
1801 static const char combined_commit_msg_fmt
[] = N_("This is a combination of %d commits.");
1803 static int is_fixup_flag(enum todo_command command
, unsigned flag
)
1805 return command
== TODO_FIXUP
&& ((flag
& TODO_REPLACE_FIXUP_MSG
) ||
1806 (flag
& TODO_EDIT_FIXUP_MSG
));
1810 * Wrapper around strbuf_add_commented_lines() which avoids double
1811 * commenting commit subjects.
1813 static void add_commented_lines(struct strbuf
*buf
, const void *str
, size_t len
)
1815 const char *s
= str
;
1816 while (len
> 0 && s
[0] == comment_line_char
) {
1818 const char *n
= memchr(s
, '\n', len
);
1823 strbuf_add(buf
, s
, count
);
1827 strbuf_add_commented_lines(buf
, s
, len
);
1830 /* Does the current fixup chain contain a squash command? */
1831 static int seen_squash(struct replay_opts
*opts
)
1833 return starts_with(opts
->current_fixups
.buf
, "squash") ||
1834 strstr(opts
->current_fixups
.buf
, "\nsquash");
1837 static void update_comment_bufs(struct strbuf
*buf1
, struct strbuf
*buf2
, int n
)
1839 strbuf_setlen(buf1
, 2);
1840 strbuf_addf(buf1
, _(nth_commit_msg_fmt
), n
);
1841 strbuf_addch(buf1
, '\n');
1842 strbuf_setlen(buf2
, 2);
1843 strbuf_addf(buf2
, _(skip_nth_commit_msg_fmt
), n
);
1844 strbuf_addch(buf2
, '\n');
1848 * Comment out any un-commented commit messages, updating the message comments
1849 * to say they will be skipped but do not comment out the empty lines that
1850 * surround commit messages and their comments.
1852 static void update_squash_message_for_fixup(struct strbuf
*msg
)
1854 void (*copy_lines
)(struct strbuf
*, const void *, size_t) = strbuf_add
;
1855 struct strbuf buf1
= STRBUF_INIT
, buf2
= STRBUF_INIT
;
1856 const char *s
, *start
;
1858 size_t orig_msg_len
;
1861 strbuf_addf(&buf1
, "# %s\n", _(first_commit_msg_str
));
1862 strbuf_addf(&buf2
, "# %s\n", _(skip_first_commit_msg_str
));
1863 s
= start
= orig_msg
= strbuf_detach(msg
, &orig_msg_len
);
1867 if (skip_prefix(s
, buf1
.buf
, &next
)) {
1869 * Copy the last message, preserving the blank line
1870 * preceding the current line
1872 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1873 copy_lines(msg
, start
, s
- start
- off
);
1875 strbuf_addch(msg
, '\n');
1877 * The next message needs to be commented out but the
1878 * message header is already commented out so just copy
1879 * it and the blank line that follows it.
1881 strbuf_addbuf(msg
, &buf2
);
1883 strbuf_addch(msg
, *next
++);
1885 copy_lines
= add_commented_lines
;
1886 update_comment_bufs(&buf1
, &buf2
, ++i
);
1887 } else if (skip_prefix(s
, buf2
.buf
, &next
)) {
1888 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1889 copy_lines(msg
, start
, s
- start
- off
);
1892 copy_lines
= strbuf_add
;
1893 update_comment_bufs(&buf1
, &buf2
, ++i
);
1895 s
= strchr(s
, '\n');
1900 copy_lines(msg
, start
, orig_msg_len
- (start
- orig_msg
));
1902 strbuf_release(&buf1
);
1903 strbuf_release(&buf2
);
1906 static int append_squash_message(struct strbuf
*buf
, const char *body
,
1907 enum todo_command command
, struct replay_opts
*opts
,
1910 const char *fixup_msg
;
1911 size_t commented_len
= 0, fixup_off
;
1913 * amend is non-interactive and not normally used with fixup!
1914 * or squash! commits, so only comment out those subjects when
1915 * squashing commit messages.
1917 if (starts_with(body
, "amend!") ||
1918 ((command
== TODO_SQUASH
|| seen_squash(opts
)) &&
1919 (starts_with(body
, "squash!") || starts_with(body
, "fixup!"))))
1920 commented_len
= commit_subject_length(body
);
1922 strbuf_addf(buf
, "\n%c ", comment_line_char
);
1923 strbuf_addf(buf
, _(nth_commit_msg_fmt
),
1924 ++opts
->current_fixup_count
+ 1);
1925 strbuf_addstr(buf
, "\n\n");
1926 strbuf_add_commented_lines(buf
, body
, commented_len
);
1927 /* buf->buf may be reallocated so store an offset into the buffer */
1928 fixup_off
= buf
->len
;
1929 strbuf_addstr(buf
, body
+ commented_len
);
1931 /* fixup -C after squash behaves like squash */
1932 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
)) {
1934 * We're replacing the commit message so we need to
1935 * append the Signed-off-by: trailer if the user
1936 * requested '--signoff'.
1939 append_signoff(buf
, 0, 0);
1941 if ((command
== TODO_FIXUP
) &&
1942 (flag
& TODO_REPLACE_FIXUP_MSG
) &&
1943 (file_exists(rebase_path_fixup_msg()) ||
1944 !file_exists(rebase_path_squash_msg()))) {
1945 fixup_msg
= skip_blank_lines(buf
->buf
+ fixup_off
);
1946 if (write_message(fixup_msg
, strlen(fixup_msg
),
1947 rebase_path_fixup_msg(), 0) < 0)
1948 return error(_("cannot write '%s'"),
1949 rebase_path_fixup_msg());
1951 unlink(rebase_path_fixup_msg());
1954 unlink(rebase_path_fixup_msg());
1960 static int update_squash_messages(struct repository
*r
,
1961 enum todo_command command
,
1962 struct commit
*commit
,
1963 struct replay_opts
*opts
,
1966 struct strbuf buf
= STRBUF_INIT
;
1968 const char *message
, *body
;
1969 const char *encoding
= get_commit_output_encoding();
1971 if (opts
->current_fixup_count
> 0) {
1972 struct strbuf header
= STRBUF_INIT
;
1975 if (strbuf_read_file(&buf
, rebase_path_squash_msg(), 9) <= 0)
1976 return error(_("could not read '%s'"),
1977 rebase_path_squash_msg());
1979 eol
= buf
.buf
[0] != comment_line_char
?
1980 buf
.buf
: strchrnul(buf
.buf
, '\n');
1982 strbuf_addf(&header
, "%c ", comment_line_char
);
1983 strbuf_addf(&header
, _(combined_commit_msg_fmt
),
1984 opts
->current_fixup_count
+ 2);
1985 strbuf_splice(&buf
, 0, eol
- buf
.buf
, header
.buf
, header
.len
);
1986 strbuf_release(&header
);
1987 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
))
1988 update_squash_message_for_fixup(&buf
);
1990 struct object_id head
;
1991 struct commit
*head_commit
;
1992 const char *head_message
, *body
;
1994 if (get_oid("HEAD", &head
))
1995 return error(_("need a HEAD to fixup"));
1996 if (!(head_commit
= lookup_commit_reference(r
, &head
)))
1997 return error(_("could not read HEAD"));
1998 if (!(head_message
= logmsg_reencode(head_commit
, NULL
, encoding
)))
1999 return error(_("could not read HEAD's commit message"));
2001 find_commit_subject(head_message
, &body
);
2002 if (command
== TODO_FIXUP
&& !flag
&& write_message(body
, strlen(body
),
2003 rebase_path_fixup_msg(), 0) < 0) {
2004 unuse_commit_buffer(head_commit
, head_message
);
2005 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
2007 strbuf_addf(&buf
, "%c ", comment_line_char
);
2008 strbuf_addf(&buf
, _(combined_commit_msg_fmt
), 2);
2009 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
2010 strbuf_addstr(&buf
, is_fixup_flag(command
, flag
) ?
2011 _(skip_first_commit_msg_str
) :
2012 _(first_commit_msg_str
));
2013 strbuf_addstr(&buf
, "\n\n");
2014 if (is_fixup_flag(command
, flag
))
2015 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
2017 strbuf_addstr(&buf
, body
);
2019 unuse_commit_buffer(head_commit
, head_message
);
2022 if (!(message
= logmsg_reencode(commit
, NULL
, encoding
)))
2023 return error(_("could not read commit message of %s"),
2024 oid_to_hex(&commit
->object
.oid
));
2025 find_commit_subject(message
, &body
);
2027 if (command
== TODO_SQUASH
|| is_fixup_flag(command
, flag
)) {
2028 res
= append_squash_message(&buf
, body
, command
, opts
, flag
);
2029 } else if (command
== TODO_FIXUP
) {
2030 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
2031 strbuf_addf(&buf
, _(skip_nth_commit_msg_fmt
),
2032 ++opts
->current_fixup_count
+ 1);
2033 strbuf_addstr(&buf
, "\n\n");
2034 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
2036 return error(_("unknown command: %d"), command
);
2037 unuse_commit_buffer(commit
, message
);
2040 res
= write_message(buf
.buf
, buf
.len
, rebase_path_squash_msg(),
2042 strbuf_release(&buf
);
2045 strbuf_addf(&opts
->current_fixups
, "%s%s %s",
2046 opts
->current_fixups
.len
? "\n" : "",
2047 command_to_string(command
),
2048 oid_to_hex(&commit
->object
.oid
));
2049 res
= write_message(opts
->current_fixups
.buf
,
2050 opts
->current_fixups
.len
,
2051 rebase_path_current_fixups(), 0);
2057 static void flush_rewritten_pending(void)
2059 struct strbuf buf
= STRBUF_INIT
;
2060 struct object_id newoid
;
2063 if (strbuf_read_file(&buf
, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ
+ 1) * 2) > 0 &&
2064 !get_oid("HEAD", &newoid
) &&
2065 (out
= fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
2066 char *bol
= buf
.buf
, *eol
;
2069 eol
= strchrnul(bol
, '\n');
2070 fprintf(out
, "%.*s %s\n", (int)(eol
- bol
),
2071 bol
, oid_to_hex(&newoid
));
2077 unlink(rebase_path_rewritten_pending());
2079 strbuf_release(&buf
);
2082 static void record_in_rewritten(struct object_id
*oid
,
2083 enum todo_command next_command
)
2085 FILE *out
= fopen_or_warn(rebase_path_rewritten_pending(), "a");
2090 fprintf(out
, "%s\n", oid_to_hex(oid
));
2093 if (!is_fixup(next_command
))
2094 flush_rewritten_pending();
2097 static int should_edit(struct replay_opts
*opts
) {
2100 * Note that we only handle the case of non-conflicted
2101 * commits; continue_single_pick() handles the conflicted
2102 * commits itself instead of calling this function.
2104 return (opts
->action
== REPLAY_REVERT
&& isatty(0)) ? 1 : 0;
2108 static void refer_to_commit(struct replay_opts
*opts
,
2109 struct strbuf
*msgbuf
, struct commit
*commit
)
2111 if (opts
->commit_use_reference
) {
2112 struct pretty_print_context ctx
= {
2113 .abbrev
= DEFAULT_ABBREV
,
2114 .date_mode
.type
= DATE_SHORT
,
2116 format_commit_message(commit
, "%h (%s, %ad)", msgbuf
, &ctx
);
2118 strbuf_addstr(msgbuf
, oid_to_hex(&commit
->object
.oid
));
2122 static int do_pick_commit(struct repository
*r
,
2123 struct todo_item
*item
,
2124 struct replay_opts
*opts
,
2125 int final_fixup
, int *check_todo
)
2127 unsigned int flags
= should_edit(opts
) ? EDIT_MSG
: 0;
2128 const char *msg_file
= should_edit(opts
) ? NULL
: git_path_merge_msg(r
);
2129 struct object_id head
;
2130 struct commit
*base
, *next
, *parent
;
2131 const char *base_label
, *next_label
;
2132 char *author
= NULL
;
2133 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
2134 struct strbuf msgbuf
= STRBUF_INIT
;
2135 int res
, unborn
= 0, reword
= 0, allow
, drop_commit
;
2136 enum todo_command command
= item
->command
;
2137 struct commit
*commit
= item
->commit
;
2139 if (opts
->no_commit
) {
2141 * We do not intend to commit immediately. We just want to
2142 * merge the differences in, so let's compute the tree
2143 * that represents the "current" state for the merge machinery
2146 if (write_index_as_tree(&head
, r
->index
, r
->index_file
, 0, NULL
))
2147 return error(_("your index file is unmerged."));
2149 unborn
= get_oid("HEAD", &head
);
2150 /* Do we want to generate a root commit? */
2151 if (is_pick_or_similar(command
) && opts
->have_squash_onto
&&
2152 oideq(&head
, &opts
->squash_onto
)) {
2153 if (is_fixup(command
))
2154 return error(_("cannot fixup root commit"));
2155 flags
|= CREATE_ROOT_COMMIT
;
2158 oidcpy(&head
, the_hash_algo
->empty_tree
);
2159 if (index_differs_from(r
, unborn
? empty_tree_oid_hex() : "HEAD",
2161 return error_dirty_index(r
, opts
);
2163 discard_index(r
->index
);
2165 if (!commit
->parents
)
2167 else if (commit
->parents
->next
) {
2168 /* Reverting or cherry-picking a merge commit */
2170 struct commit_list
*p
;
2172 if (!opts
->mainline
)
2173 return error(_("commit %s is a merge but no -m option was given."),
2174 oid_to_hex(&commit
->object
.oid
));
2176 for (cnt
= 1, p
= commit
->parents
;
2177 cnt
!= opts
->mainline
&& p
;
2180 if (cnt
!= opts
->mainline
|| !p
)
2181 return error(_("commit %s does not have parent %d"),
2182 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2184 } else if (1 < opts
->mainline
)
2186 * Non-first parent explicitly specified as mainline for
2189 return error(_("commit %s does not have parent %d"),
2190 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2192 parent
= commit
->parents
->item
;
2194 if (get_message(commit
, &msg
) != 0)
2195 return error(_("cannot get commit message for %s"),
2196 oid_to_hex(&commit
->object
.oid
));
2198 if (opts
->allow_ff
&& !is_fixup(command
) &&
2199 ((parent
&& oideq(&parent
->object
.oid
, &head
)) ||
2200 (!parent
&& unborn
))) {
2201 if (is_rebase_i(opts
))
2202 write_author_script(msg
.message
);
2203 res
= fast_forward_to(r
, &commit
->object
.oid
, &head
, unborn
,
2205 if (res
|| command
!= TODO_REWORD
)
2209 goto fast_forward_edit
;
2211 if (parent
&& parse_commit(parent
) < 0)
2212 /* TRANSLATORS: The first %s will be a "todo" command like
2213 "revert" or "pick", the second %s a SHA1. */
2214 return error(_("%s: cannot parse parent commit %s"),
2215 command_to_string(command
),
2216 oid_to_hex(&parent
->object
.oid
));
2219 * "commit" is an existing commit. We would want to apply
2220 * the difference it introduces since its first parent "prev"
2221 * on top of the current HEAD if we are cherry-pick. Or the
2222 * reverse of it if we are revert.
2225 if (command
== TODO_REVERT
) {
2227 base_label
= msg
.label
;
2229 next_label
= msg
.parent_label
;
2230 if (opts
->commit_use_reference
) {
2231 strbuf_addstr(&msgbuf
,
2232 "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***");
2234 strbuf_addstr(&msgbuf
, "Revert \"");
2235 strbuf_addstr(&msgbuf
, msg
.subject
);
2236 strbuf_addstr(&msgbuf
, "\"");
2238 strbuf_addstr(&msgbuf
, "\n\nThis reverts commit ");
2239 refer_to_commit(opts
, &msgbuf
, commit
);
2241 if (commit
->parents
&& commit
->parents
->next
) {
2242 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
2243 refer_to_commit(opts
, &msgbuf
, parent
);
2245 strbuf_addstr(&msgbuf
, ".\n");
2250 base_label
= msg
.parent_label
;
2252 next_label
= msg
.label
;
2254 /* Append the commit log message to msgbuf. */
2255 if (find_commit_subject(msg
.message
, &p
))
2256 strbuf_addstr(&msgbuf
, p
);
2258 if (opts
->record_origin
) {
2259 strbuf_complete_line(&msgbuf
);
2260 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
2261 strbuf_addch(&msgbuf
, '\n');
2262 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
2263 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
2264 strbuf_addstr(&msgbuf
, ")\n");
2266 if (!is_fixup(command
))
2267 author
= get_author(msg
.message
);
2270 if (command
== TODO_REWORD
)
2272 else if (is_fixup(command
)) {
2273 if (update_squash_messages(r
, command
, commit
,
2278 msg_file
= rebase_path_squash_msg();
2279 else if (file_exists(rebase_path_fixup_msg())) {
2280 flags
|= VERBATIM_MSG
;
2281 msg_file
= rebase_path_fixup_msg();
2283 const char *dest
= git_path_squash_msg(r
);
2285 if (copy_file(dest
, rebase_path_squash_msg(), 0666))
2286 return error(_("could not rename '%s' to '%s'"),
2287 rebase_path_squash_msg(), dest
);
2288 unlink(git_path_merge_msg(r
));
2294 if (opts
->signoff
&& !is_fixup(command
))
2295 append_signoff(&msgbuf
, 0, 0);
2297 if (is_rebase_i(opts
) && write_author_script(msg
.message
) < 0)
2299 else if (!opts
->strategy
||
2300 !strcmp(opts
->strategy
, "recursive") ||
2301 !strcmp(opts
->strategy
, "ort") ||
2302 command
== TODO_REVERT
) {
2303 res
= do_recursive_merge(r
, base
, next
, base_label
, next_label
,
2304 &head
, &msgbuf
, opts
);
2308 res
|= write_message(msgbuf
.buf
, msgbuf
.len
,
2309 git_path_merge_msg(r
), 0);
2311 struct commit_list
*common
= NULL
;
2312 struct commit_list
*remotes
= NULL
;
2314 res
= write_message(msgbuf
.buf
, msgbuf
.len
,
2315 git_path_merge_msg(r
), 0);
2317 commit_list_insert(base
, &common
);
2318 commit_list_insert(next
, &remotes
);
2319 res
|= try_merge_command(r
, opts
->strategy
,
2320 opts
->xopts_nr
, (const char **)opts
->xopts
,
2321 common
, oid_to_hex(&head
), remotes
);
2322 free_commit_list(common
);
2323 free_commit_list(remotes
);
2325 strbuf_release(&msgbuf
);
2328 * If the merge was clean or if it failed due to conflict, we write
2329 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2330 * However, if the merge did not even start, then we don't want to
2333 if ((command
== TODO_PICK
|| command
== TODO_REWORD
||
2334 command
== TODO_EDIT
) && !opts
->no_commit
&&
2335 (res
== 0 || res
== 1) &&
2336 update_ref(NULL
, "CHERRY_PICK_HEAD", &commit
->object
.oid
, NULL
,
2337 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2339 if (command
== TODO_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1) &&
2340 update_ref(NULL
, "REVERT_HEAD", &commit
->object
.oid
, NULL
,
2341 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2345 error(command
== TODO_REVERT
2346 ? _("could not revert %s... %s")
2347 : _("could not apply %s... %s"),
2348 short_commit_name(commit
), msg
.subject
);
2349 print_advice(r
, res
== 1, opts
);
2350 repo_rerere(r
, opts
->allow_rerere_auto
);
2355 allow
= allow_empty(r
, opts
, commit
);
2359 } else if (allow
== 1) {
2360 flags
|= ALLOW_EMPTY
;
2361 } else if (allow
== 2) {
2363 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
2365 unlink(git_path_merge_msg(r
));
2366 unlink(git_path_auto_merge(r
));
2368 _("dropping %s %s -- patch contents already upstream\n"),
2369 oid_to_hex(&commit
->object
.oid
), msg
.subject
);
2370 } /* else allow == 0 and there's nothing special to do */
2371 if (!opts
->no_commit
&& !drop_commit
) {
2372 if (author
|| command
== TODO_REVERT
|| (flags
& AMEND_MSG
))
2373 res
= do_commit(r
, msg_file
, author
, opts
, flags
,
2374 commit
? &commit
->object
.oid
: NULL
);
2376 res
= error(_("unable to parse commit author"));
2377 *check_todo
= !!(flags
& EDIT_MSG
);
2378 if (!res
&& reword
) {
2380 res
= run_git_commit(NULL
, opts
, EDIT_MSG
|
2381 VERIFY_MSG
| AMEND_MSG
|
2382 (flags
& ALLOW_EMPTY
));
2388 if (!res
&& final_fixup
) {
2389 unlink(rebase_path_fixup_msg());
2390 unlink(rebase_path_squash_msg());
2391 unlink(rebase_path_current_fixups());
2392 strbuf_reset(&opts
->current_fixups
);
2393 opts
->current_fixup_count
= 0;
2397 free_message(commit
, &msg
);
2399 update_abort_safety_file();
2404 static int prepare_revs(struct replay_opts
*opts
)
2407 * picking (but not reverting) ranges (but not individual revisions)
2408 * should be done in reverse
2410 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
2411 opts
->revs
->reverse
^= 1;
2413 if (prepare_revision_walk(opts
->revs
))
2414 return error(_("revision walk setup failed"));
2419 static int read_and_refresh_cache(struct repository
*r
,
2420 struct replay_opts
*opts
)
2422 struct lock_file index_lock
= LOCK_INIT
;
2423 int index_fd
= repo_hold_locked_index(r
, &index_lock
, 0);
2424 if (repo_read_index(r
) < 0) {
2425 rollback_lock_file(&index_lock
);
2426 return error(_("git %s: failed to read the index"),
2429 refresh_index(r
->index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
2431 if (index_fd
>= 0) {
2432 if (write_locked_index(r
->index
, &index_lock
,
2433 COMMIT_LOCK
| SKIP_IF_UNCHANGED
)) {
2434 return error(_("git %s: failed to refresh the index"),
2440 * If we are resolving merges in any way other than "ort", then
2441 * expand the sparse index.
2443 if (opts
->strategy
&& strcmp(opts
->strategy
, "ort"))
2444 ensure_full_index(r
->index
);
2448 void todo_list_release(struct todo_list
*todo_list
)
2450 strbuf_release(&todo_list
->buf
);
2451 FREE_AND_NULL(todo_list
->items
);
2452 todo_list
->nr
= todo_list
->alloc
= 0;
2455 static struct todo_item
*append_new_todo(struct todo_list
*todo_list
)
2457 ALLOC_GROW(todo_list
->items
, todo_list
->nr
+ 1, todo_list
->alloc
);
2458 todo_list
->total_nr
++;
2459 return todo_list
->items
+ todo_list
->nr
++;
2462 const char *todo_item_get_arg(struct todo_list
*todo_list
,
2463 struct todo_item
*item
)
2465 return todo_list
->buf
.buf
+ item
->arg_offset
;
2468 static int is_command(enum todo_command command
, const char **bol
)
2470 const char *str
= todo_command_info
[command
].str
;
2471 const char nick
= todo_command_info
[command
].c
;
2472 const char *p
= *bol
+ 1;
2474 return skip_prefix(*bol
, str
, bol
) ||
2475 ((nick
&& **bol
== nick
) &&
2476 (*p
== ' ' || *p
== '\t' || *p
== '\n' || *p
== '\r' || !*p
) &&
2480 static int parse_insn_line(struct repository
*r
, struct todo_item
*item
,
2481 const char *buf
, const char *bol
, char *eol
)
2483 struct object_id commit_oid
;
2484 char *end_of_object_name
;
2485 int i
, saved
, status
, padding
;
2490 bol
+= strspn(bol
, " \t");
2492 if (bol
== eol
|| *bol
== '\r' || *bol
== comment_line_char
) {
2493 item
->command
= TODO_COMMENT
;
2494 item
->commit
= NULL
;
2495 item
->arg_offset
= bol
- buf
;
2496 item
->arg_len
= eol
- bol
;
2500 for (i
= 0; i
< TODO_COMMENT
; i
++)
2501 if (is_command(i
, &bol
)) {
2505 if (i
>= TODO_COMMENT
)
2508 /* Eat up extra spaces/ tabs before object name */
2509 padding
= strspn(bol
, " \t");
2512 if (item
->command
== TODO_NOOP
|| item
->command
== TODO_BREAK
) {
2514 return error(_("%s does not accept arguments: '%s'"),
2515 command_to_string(item
->command
), bol
);
2516 item
->commit
= NULL
;
2517 item
->arg_offset
= bol
- buf
;
2518 item
->arg_len
= eol
- bol
;
2523 return error(_("missing arguments for %s"),
2524 command_to_string(item
->command
));
2526 if (item
->command
== TODO_EXEC
|| item
->command
== TODO_LABEL
||
2527 item
->command
== TODO_RESET
|| item
->command
== TODO_UPDATE_REF
) {
2528 item
->commit
= NULL
;
2529 item
->arg_offset
= bol
- buf
;
2530 item
->arg_len
= (int)(eol
- bol
);
2534 if (item
->command
== TODO_FIXUP
) {
2535 if (skip_prefix(bol
, "-C", &bol
) &&
2536 (*bol
== ' ' || *bol
== '\t')) {
2537 bol
+= strspn(bol
, " \t");
2538 item
->flags
|= TODO_REPLACE_FIXUP_MSG
;
2539 } else if (skip_prefix(bol
, "-c", &bol
) &&
2540 (*bol
== ' ' || *bol
== '\t')) {
2541 bol
+= strspn(bol
, " \t");
2542 item
->flags
|= TODO_EDIT_FIXUP_MSG
;
2546 if (item
->command
== TODO_MERGE
) {
2547 if (skip_prefix(bol
, "-C", &bol
))
2548 bol
+= strspn(bol
, " \t");
2549 else if (skip_prefix(bol
, "-c", &bol
)) {
2550 bol
+= strspn(bol
, " \t");
2551 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2553 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2554 item
->commit
= NULL
;
2555 item
->arg_offset
= bol
- buf
;
2556 item
->arg_len
= (int)(eol
- bol
);
2561 end_of_object_name
= (char *) bol
+ strcspn(bol
, " \t\n");
2562 saved
= *end_of_object_name
;
2563 *end_of_object_name
= '\0';
2564 status
= get_oid(bol
, &commit_oid
);
2566 error(_("could not parse '%s'"), bol
); /* return later */
2567 *end_of_object_name
= saved
;
2569 bol
= end_of_object_name
+ strspn(end_of_object_name
, " \t");
2570 item
->arg_offset
= bol
- buf
;
2571 item
->arg_len
= (int)(eol
- bol
);
2576 item
->commit
= lookup_commit_reference(r
, &commit_oid
);
2577 return item
->commit
? 0 : -1;
2580 int sequencer_get_last_command(struct repository
*r
, enum replay_action
*action
)
2582 const char *todo_file
, *bol
;
2583 struct strbuf buf
= STRBUF_INIT
;
2586 todo_file
= git_path_todo_file();
2587 if (strbuf_read_file(&buf
, todo_file
, 0) < 0) {
2588 if (errno
== ENOENT
|| errno
== ENOTDIR
)
2591 return error_errno("unable to open '%s'", todo_file
);
2593 bol
= buf
.buf
+ strspn(buf
.buf
, " \t\r\n");
2594 if (is_command(TODO_PICK
, &bol
) && (*bol
== ' ' || *bol
== '\t'))
2595 *action
= REPLAY_PICK
;
2596 else if (is_command(TODO_REVERT
, &bol
) &&
2597 (*bol
== ' ' || *bol
== '\t'))
2598 *action
= REPLAY_REVERT
;
2602 strbuf_release(&buf
);
2607 int todo_list_parse_insn_buffer(struct repository
*r
, char *buf
,
2608 struct todo_list
*todo_list
)
2610 struct todo_item
*item
;
2611 char *p
= buf
, *next_p
;
2612 int i
, res
= 0, fixup_okay
= file_exists(rebase_path_done());
2614 todo_list
->current
= todo_list
->nr
= 0;
2616 for (i
= 1; *p
; i
++, p
= next_p
) {
2617 char *eol
= strchrnul(p
, '\n');
2619 next_p
= *eol
? eol
+ 1 /* skip LF */ : eol
;
2621 if (p
!= eol
&& eol
[-1] == '\r')
2622 eol
--; /* strip Carriage Return */
2624 item
= append_new_todo(todo_list
);
2625 item
->offset_in_buf
= p
- todo_list
->buf
.buf
;
2626 if (parse_insn_line(r
, item
, buf
, p
, eol
)) {
2627 res
= error(_("invalid line %d: %.*s"),
2628 i
, (int)(eol
- p
), p
);
2629 item
->command
= TODO_COMMENT
+ 1;
2630 item
->arg_offset
= p
- buf
;
2631 item
->arg_len
= (int)(eol
- p
);
2632 item
->commit
= NULL
;
2637 else if (is_fixup(item
->command
))
2638 return error(_("cannot '%s' without a previous commit"),
2639 command_to_string(item
->command
));
2640 else if (!is_noop(item
->command
))
2647 static int count_commands(struct todo_list
*todo_list
)
2651 for (i
= 0; i
< todo_list
->nr
; i
++)
2652 if (todo_list
->items
[i
].command
!= TODO_COMMENT
)
2658 static int get_item_line_offset(struct todo_list
*todo_list
, int index
)
2660 return index
< todo_list
->nr
?
2661 todo_list
->items
[index
].offset_in_buf
: todo_list
->buf
.len
;
2664 static const char *get_item_line(struct todo_list
*todo_list
, int index
)
2666 return todo_list
->buf
.buf
+ get_item_line_offset(todo_list
, index
);
2669 static int get_item_line_length(struct todo_list
*todo_list
, int index
)
2671 return get_item_line_offset(todo_list
, index
+ 1)
2672 - get_item_line_offset(todo_list
, index
);
2675 static ssize_t
strbuf_read_file_or_whine(struct strbuf
*sb
, const char *path
)
2680 fd
= open(path
, O_RDONLY
);
2682 return error_errno(_("could not open '%s'"), path
);
2683 len
= strbuf_read(sb
, fd
, 0);
2686 return error(_("could not read '%s'."), path
);
2690 static int have_finished_the_last_pick(void)
2692 struct strbuf buf
= STRBUF_INIT
;
2694 const char *todo_path
= git_path_todo_file();
2697 if (strbuf_read_file(&buf
, todo_path
, 0) < 0) {
2698 if (errno
== ENOENT
) {
2701 error_errno("unable to open '%s'", todo_path
);
2705 /* If there is only one line then we are done */
2706 eol
= strchr(buf
.buf
, '\n');
2707 if (!eol
|| !eol
[1])
2710 strbuf_release(&buf
);
2715 void sequencer_post_commit_cleanup(struct repository
*r
, int verbose
)
2717 struct replay_opts opts
= REPLAY_OPTS_INIT
;
2718 int need_cleanup
= 0;
2720 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
2721 if (!refs_delete_ref(get_main_ref_store(r
), "",
2722 "CHERRY_PICK_HEAD", NULL
, 0) &&
2724 warning(_("cancelling a cherry picking in progress"));
2725 opts
.action
= REPLAY_PICK
;
2729 if (refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
2730 if (!refs_delete_ref(get_main_ref_store(r
), "", "REVERT_HEAD",
2733 warning(_("cancelling a revert in progress"));
2734 opts
.action
= REPLAY_REVERT
;
2738 unlink(git_path_auto_merge(r
));
2743 if (!have_finished_the_last_pick())
2746 sequencer_remove_state(&opts
);
2749 static void todo_list_write_total_nr(struct todo_list
*todo_list
)
2751 FILE *f
= fopen_or_warn(rebase_path_msgtotal(), "w");
2754 fprintf(f
, "%d\n", todo_list
->total_nr
);
2759 static int read_populate_todo(struct repository
*r
,
2760 struct todo_list
*todo_list
,
2761 struct replay_opts
*opts
)
2763 const char *todo_file
= get_todo_path(opts
);
2766 strbuf_reset(&todo_list
->buf
);
2767 if (strbuf_read_file_or_whine(&todo_list
->buf
, todo_file
) < 0)
2770 res
= todo_list_parse_insn_buffer(r
, todo_list
->buf
.buf
, todo_list
);
2772 if (is_rebase_i(opts
))
2773 return error(_("please fix this using "
2774 "'git rebase --edit-todo'."));
2775 return error(_("unusable instruction sheet: '%s'"), todo_file
);
2778 if (!todo_list
->nr
&&
2779 (!is_rebase_i(opts
) || !file_exists(rebase_path_done())))
2780 return error(_("no commits parsed."));
2782 if (!is_rebase_i(opts
)) {
2783 enum todo_command valid
=
2784 opts
->action
== REPLAY_PICK
? TODO_PICK
: TODO_REVERT
;
2787 for (i
= 0; i
< todo_list
->nr
; i
++)
2788 if (valid
== todo_list
->items
[i
].command
)
2790 else if (valid
== TODO_PICK
)
2791 return error(_("cannot cherry-pick during a revert."));
2793 return error(_("cannot revert during a cherry-pick."));
2796 if (is_rebase_i(opts
)) {
2797 struct todo_list done
= TODO_LIST_INIT
;
2799 if (strbuf_read_file(&done
.buf
, rebase_path_done(), 0) > 0 &&
2800 !todo_list_parse_insn_buffer(r
, done
.buf
.buf
, &done
))
2801 todo_list
->done_nr
= count_commands(&done
);
2803 todo_list
->done_nr
= 0;
2805 todo_list
->total_nr
= todo_list
->done_nr
2806 + count_commands(todo_list
);
2807 todo_list_release(&done
);
2809 todo_list_write_total_nr(todo_list
);
2815 static int git_config_string_dup(char **dest
,
2816 const char *var
, const char *value
)
2819 return config_error_nonbool(var
);
2821 *dest
= xstrdup(value
);
2825 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
2827 struct replay_opts
*opts
= data
;
2832 else if (!strcmp(key
, "options.no-commit"))
2833 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
2834 else if (!strcmp(key
, "options.edit"))
2835 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
2836 else if (!strcmp(key
, "options.allow-empty"))
2838 git_config_bool_or_int(key
, value
, &error_flag
);
2839 else if (!strcmp(key
, "options.allow-empty-message"))
2840 opts
->allow_empty_message
=
2841 git_config_bool_or_int(key
, value
, &error_flag
);
2842 else if (!strcmp(key
, "options.keep-redundant-commits"))
2843 opts
->keep_redundant_commits
=
2844 git_config_bool_or_int(key
, value
, &error_flag
);
2845 else if (!strcmp(key
, "options.signoff"))
2846 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
2847 else if (!strcmp(key
, "options.record-origin"))
2848 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
2849 else if (!strcmp(key
, "options.allow-ff"))
2850 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
2851 else if (!strcmp(key
, "options.mainline"))
2852 opts
->mainline
= git_config_int(key
, value
);
2853 else if (!strcmp(key
, "options.strategy"))
2854 git_config_string_dup(&opts
->strategy
, key
, value
);
2855 else if (!strcmp(key
, "options.gpg-sign"))
2856 git_config_string_dup(&opts
->gpg_sign
, key
, value
);
2857 else if (!strcmp(key
, "options.strategy-option")) {
2858 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
2859 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
2860 } else if (!strcmp(key
, "options.allow-rerere-auto"))
2861 opts
->allow_rerere_auto
=
2862 git_config_bool_or_int(key
, value
, &error_flag
) ?
2863 RERERE_AUTOUPDATE
: RERERE_NOAUTOUPDATE
;
2864 else if (!strcmp(key
, "options.default-msg-cleanup")) {
2865 opts
->explicit_cleanup
= 1;
2866 opts
->default_msg_cleanup
= get_cleanup_mode(value
, 1);
2868 return error(_("invalid key: %s"), key
);
2871 return error(_("invalid value for '%s': '%s'"), key
, value
);
2876 void parse_strategy_opts(struct replay_opts
*opts
, char *raw_opts
)
2879 char *strategy_opts_string
= raw_opts
;
2881 if (*strategy_opts_string
== ' ')
2882 strategy_opts_string
++;
2884 opts
->xopts_nr
= split_cmdline(strategy_opts_string
,
2885 (const char ***)&opts
->xopts
);
2886 for (i
= 0; i
< opts
->xopts_nr
; i
++) {
2887 const char *arg
= opts
->xopts
[i
];
2889 skip_prefix(arg
, "--", &arg
);
2890 opts
->xopts
[i
] = xstrdup(arg
);
2894 static void read_strategy_opts(struct replay_opts
*opts
, struct strbuf
*buf
)
2897 if (!read_oneliner(buf
, rebase_path_strategy(), 0))
2899 opts
->strategy
= strbuf_detach(buf
, NULL
);
2900 if (!read_oneliner(buf
, rebase_path_strategy_opts(), 0))
2903 parse_strategy_opts(opts
, buf
->buf
);
2906 static int read_populate_opts(struct replay_opts
*opts
)
2908 if (is_rebase_i(opts
)) {
2909 struct strbuf buf
= STRBUF_INIT
;
2912 if (read_oneliner(&buf
, rebase_path_gpg_sign_opt(),
2913 READ_ONELINER_SKIP_IF_EMPTY
)) {
2914 if (!starts_with(buf
.buf
, "-S"))
2917 free(opts
->gpg_sign
);
2918 opts
->gpg_sign
= xstrdup(buf
.buf
+ 2);
2923 if (read_oneliner(&buf
, rebase_path_allow_rerere_autoupdate(),
2924 READ_ONELINER_SKIP_IF_EMPTY
)) {
2925 if (!strcmp(buf
.buf
, "--rerere-autoupdate"))
2926 opts
->allow_rerere_auto
= RERERE_AUTOUPDATE
;
2927 else if (!strcmp(buf
.buf
, "--no-rerere-autoupdate"))
2928 opts
->allow_rerere_auto
= RERERE_NOAUTOUPDATE
;
2932 if (file_exists(rebase_path_verbose()))
2935 if (file_exists(rebase_path_quiet()))
2938 if (file_exists(rebase_path_signoff())) {
2943 if (file_exists(rebase_path_cdate_is_adate())) {
2945 opts
->committer_date_is_author_date
= 1;
2948 if (file_exists(rebase_path_ignore_date())) {
2950 opts
->ignore_date
= 1;
2953 if (file_exists(rebase_path_reschedule_failed_exec()))
2954 opts
->reschedule_failed_exec
= 1;
2955 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
2956 opts
->reschedule_failed_exec
= 0;
2958 if (file_exists(rebase_path_drop_redundant_commits()))
2959 opts
->drop_redundant_commits
= 1;
2961 if (file_exists(rebase_path_keep_redundant_commits()))
2962 opts
->keep_redundant_commits
= 1;
2964 read_strategy_opts(opts
, &buf
);
2967 if (read_oneliner(&opts
->current_fixups
,
2968 rebase_path_current_fixups(),
2969 READ_ONELINER_SKIP_IF_EMPTY
)) {
2970 const char *p
= opts
->current_fixups
.buf
;
2971 opts
->current_fixup_count
= 1;
2972 while ((p
= strchr(p
, '\n'))) {
2973 opts
->current_fixup_count
++;
2978 if (read_oneliner(&buf
, rebase_path_squash_onto(), 0)) {
2979 if (get_oid_committish(buf
.buf
, &opts
->squash_onto
) < 0) {
2980 ret
= error(_("unusable squash-onto"));
2983 opts
->have_squash_onto
= 1;
2987 strbuf_release(&buf
);
2991 if (!file_exists(git_path_opts_file()))
2994 * The function git_parse_source(), called from git_config_from_file(),
2995 * may die() in case of a syntactically incorrect file. We do not care
2996 * about this case, though, because we wrote that file ourselves, so we
2997 * are pretty certain that it is syntactically correct.
2999 if (git_config_from_file(populate_opts_cb
, git_path_opts_file(), opts
) < 0)
3000 return error(_("malformed options sheet: '%s'"),
3001 git_path_opts_file());
3005 static void write_strategy_opts(struct replay_opts
*opts
)
3008 struct strbuf buf
= STRBUF_INIT
;
3010 for (i
= 0; i
< opts
->xopts_nr
; ++i
)
3011 strbuf_addf(&buf
, " --%s", opts
->xopts
[i
]);
3013 write_file(rebase_path_strategy_opts(), "%s\n", buf
.buf
);
3014 strbuf_release(&buf
);
3017 int write_basic_state(struct replay_opts
*opts
, const char *head_name
,
3018 struct commit
*onto
, const struct object_id
*orig_head
)
3021 write_file(rebase_path_head_name(), "%s\n", head_name
);
3023 write_file(rebase_path_onto(), "%s\n",
3024 oid_to_hex(&onto
->object
.oid
));
3026 write_file(rebase_path_orig_head(), "%s\n",
3027 oid_to_hex(orig_head
));
3030 write_file(rebase_path_quiet(), "%s", "");
3032 write_file(rebase_path_verbose(), "%s", "");
3034 write_file(rebase_path_strategy(), "%s\n", opts
->strategy
);
3035 if (opts
->xopts_nr
> 0)
3036 write_strategy_opts(opts
);
3038 if (opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
)
3039 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
3040 else if (opts
->allow_rerere_auto
== RERERE_NOAUTOUPDATE
)
3041 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
3044 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts
->gpg_sign
);
3046 write_file(rebase_path_signoff(), "--signoff\n");
3047 if (opts
->drop_redundant_commits
)
3048 write_file(rebase_path_drop_redundant_commits(), "%s", "");
3049 if (opts
->keep_redundant_commits
)
3050 write_file(rebase_path_keep_redundant_commits(), "%s", "");
3051 if (opts
->committer_date_is_author_date
)
3052 write_file(rebase_path_cdate_is_adate(), "%s", "");
3053 if (opts
->ignore_date
)
3054 write_file(rebase_path_ignore_date(), "%s", "");
3055 if (opts
->reschedule_failed_exec
)
3056 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
3058 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
3063 static int walk_revs_populate_todo(struct todo_list
*todo_list
,
3064 struct replay_opts
*opts
)
3066 enum todo_command command
= opts
->action
== REPLAY_PICK
?
3067 TODO_PICK
: TODO_REVERT
;
3068 const char *command_string
= todo_command_info
[command
].str
;
3069 const char *encoding
;
3070 struct commit
*commit
;
3072 if (prepare_revs(opts
))
3075 encoding
= get_log_output_encoding();
3077 while ((commit
= get_revision(opts
->revs
))) {
3078 struct todo_item
*item
= append_new_todo(todo_list
);
3079 const char *commit_buffer
= logmsg_reencode(commit
, NULL
, encoding
);
3080 const char *subject
;
3083 item
->command
= command
;
3084 item
->commit
= commit
;
3085 item
->arg_offset
= 0;
3087 item
->offset_in_buf
= todo_list
->buf
.len
;
3088 subject_len
= find_commit_subject(commit_buffer
, &subject
);
3089 strbuf_addf(&todo_list
->buf
, "%s %s %.*s\n", command_string
,
3090 short_commit_name(commit
), subject_len
, subject
);
3091 unuse_commit_buffer(commit
, commit_buffer
);
3095 return error(_("empty commit set passed"));
3100 static int create_seq_dir(struct repository
*r
)
3102 enum replay_action action
;
3103 const char *in_progress_error
= NULL
;
3104 const char *in_progress_advice
= NULL
;
3105 unsigned int advise_skip
=
3106 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD") ||
3107 refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD");
3109 if (!sequencer_get_last_command(r
, &action
)) {
3112 in_progress_error
= _("revert is already in progress");
3113 in_progress_advice
=
3114 _("try \"git revert (--continue | %s--abort | --quit)\"");
3117 in_progress_error
= _("cherry-pick is already in progress");
3118 in_progress_advice
=
3119 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
3122 BUG("unexpected action in create_seq_dir");
3125 if (in_progress_error
) {
3126 error("%s", in_progress_error
);
3127 if (advice_enabled(ADVICE_SEQUENCER_IN_USE
))
3128 advise(in_progress_advice
,
3129 advise_skip
? "--skip | " : "");
3132 if (mkdir(git_path_seq_dir(), 0777) < 0)
3133 return error_errno(_("could not create sequencer directory '%s'"),
3134 git_path_seq_dir());
3139 static int save_head(const char *head
)
3141 struct lock_file head_lock
= LOCK_INIT
;
3142 struct strbuf buf
= STRBUF_INIT
;
3146 fd
= hold_lock_file_for_update(&head_lock
, git_path_head_file(), 0);
3148 return error_errno(_("could not lock HEAD"));
3149 strbuf_addf(&buf
, "%s\n", head
);
3150 written
= write_in_full(fd
, buf
.buf
, buf
.len
);
3151 strbuf_release(&buf
);
3153 error_errno(_("could not write to '%s'"), git_path_head_file());
3154 rollback_lock_file(&head_lock
);
3157 if (commit_lock_file(&head_lock
) < 0)
3158 return error(_("failed to finalize '%s'"), git_path_head_file());
3162 static int rollback_is_safe(void)
3164 struct strbuf sb
= STRBUF_INIT
;
3165 struct object_id expected_head
, actual_head
;
3167 if (strbuf_read_file(&sb
, git_path_abort_safety_file(), 0) >= 0) {
3169 if (get_oid_hex(sb
.buf
, &expected_head
)) {
3170 strbuf_release(&sb
);
3171 die(_("could not parse %s"), git_path_abort_safety_file());
3173 strbuf_release(&sb
);
3175 else if (errno
== ENOENT
)
3176 oidclr(&expected_head
);
3178 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3180 if (get_oid("HEAD", &actual_head
))
3181 oidclr(&actual_head
);
3183 return oideq(&actual_head
, &expected_head
);
3186 static int reset_merge(const struct object_id
*oid
)
3188 struct child_process cmd
= CHILD_PROCESS_INIT
;
3191 strvec_pushl(&cmd
.args
, "reset", "--merge", NULL
);
3193 if (!is_null_oid(oid
))
3194 strvec_push(&cmd
.args
, oid_to_hex(oid
));
3196 return run_command(&cmd
);
3199 static int rollback_single_pick(struct repository
*r
)
3201 struct object_id head_oid
;
3203 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
3204 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
3205 return error(_("no cherry-pick or revert in progress"));
3206 if (read_ref_full("HEAD", 0, &head_oid
, NULL
))
3207 return error(_("cannot resolve HEAD"));
3208 if (is_null_oid(&head_oid
))
3209 return error(_("cannot abort from a branch yet to be born"));
3210 return reset_merge(&head_oid
);
3213 static int skip_single_pick(void)
3215 struct object_id head
;
3217 if (read_ref_full("HEAD", 0, &head
, NULL
))
3218 return error(_("cannot resolve HEAD"));
3219 return reset_merge(&head
);
3222 int sequencer_rollback(struct repository
*r
, struct replay_opts
*opts
)
3225 struct object_id oid
;
3226 struct strbuf buf
= STRBUF_INIT
;
3229 f
= fopen(git_path_head_file(), "r");
3230 if (!f
&& errno
== ENOENT
) {
3232 * There is no multiple-cherry-pick in progress.
3233 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3234 * a single-cherry-pick in progress, abort that.
3236 return rollback_single_pick(r
);
3239 return error_errno(_("cannot open '%s'"), git_path_head_file());
3240 if (strbuf_getline_lf(&buf
, f
)) {
3241 error(_("cannot read '%s': %s"), git_path_head_file(),
3242 ferror(f
) ? strerror(errno
) : _("unexpected end of file"));
3247 if (parse_oid_hex(buf
.buf
, &oid
, &p
) || *p
!= '\0') {
3248 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
3249 git_path_head_file());
3252 if (is_null_oid(&oid
)) {
3253 error(_("cannot abort from a branch yet to be born"));
3257 if (!rollback_is_safe()) {
3258 /* Do not error, just do not rollback */
3259 warning(_("You seem to have moved HEAD. "
3260 "Not rewinding, check your HEAD!"));
3262 if (reset_merge(&oid
))
3264 strbuf_release(&buf
);
3265 return sequencer_remove_state(opts
);
3267 strbuf_release(&buf
);
3271 int sequencer_skip(struct repository
*r
, struct replay_opts
*opts
)
3273 enum replay_action action
= -1;
3274 sequencer_get_last_command(r
, &action
);
3277 * Check whether the subcommand requested to skip the commit is actually
3278 * in progress and that it's safe to skip the commit.
3280 * opts->action tells us which subcommand requested to skip the commit.
3281 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3282 * action is in progress and we can skip the commit.
3284 * Otherwise we check that the last instruction was related to the
3285 * particular subcommand we're trying to execute and barf if that's not
3288 * Finally we check that the rollback is "safe", i.e., has the HEAD
3289 * moved? In this case, it doesn't make sense to "reset the merge" and
3290 * "skip the commit" as the user already handled this by committing. But
3291 * we'd not want to barf here, instead give advice on how to proceed. We
3292 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3293 * it gets removed when the user commits, so if it still exists we're
3294 * sure the user can't have committed before.
3296 switch (opts
->action
) {
3298 if (!refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
3299 if (action
!= REPLAY_REVERT
)
3300 return error(_("no revert in progress"));
3301 if (!rollback_is_safe())
3306 if (!refs_ref_exists(get_main_ref_store(r
),
3307 "CHERRY_PICK_HEAD")) {
3308 if (action
!= REPLAY_PICK
)
3309 return error(_("no cherry-pick in progress"));
3310 if (!rollback_is_safe())
3315 BUG("unexpected action in sequencer_skip");
3318 if (skip_single_pick())
3319 return error(_("failed to skip the commit"));
3320 if (!is_directory(git_path_seq_dir()))
3323 return sequencer_continue(r
, opts
);
3326 error(_("there is nothing to skip"));
3328 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
)) {
3329 advise(_("have you committed already?\n"
3330 "try \"git %s --continue\""),
3331 action
== REPLAY_REVERT
? "revert" : "cherry-pick");
3336 static int save_todo(struct todo_list
*todo_list
, struct replay_opts
*opts
)
3338 struct lock_file todo_lock
= LOCK_INIT
;
3339 const char *todo_path
= get_todo_path(opts
);
3340 int next
= todo_list
->current
, offset
, fd
;
3343 * rebase -i writes "git-rebase-todo" without the currently executing
3344 * command, appending it to "done" instead.
3346 if (is_rebase_i(opts
))
3349 fd
= hold_lock_file_for_update(&todo_lock
, todo_path
, 0);
3351 return error_errno(_("could not lock '%s'"), todo_path
);
3352 offset
= get_item_line_offset(todo_list
, next
);
3353 if (write_in_full(fd
, todo_list
->buf
.buf
+ offset
,
3354 todo_list
->buf
.len
- offset
) < 0)
3355 return error_errno(_("could not write to '%s'"), todo_path
);
3356 if (commit_lock_file(&todo_lock
) < 0)
3357 return error(_("failed to finalize '%s'"), todo_path
);
3359 if (is_rebase_i(opts
) && next
> 0) {
3360 const char *done
= rebase_path_done();
3361 int fd
= open(done
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
3366 if (write_in_full(fd
, get_item_line(todo_list
, next
- 1),
3367 get_item_line_length(todo_list
, next
- 1))
3369 ret
= error_errno(_("could not write to '%s'"), done
);
3371 ret
= error_errno(_("failed to finalize '%s'"), done
);
3377 static int save_opts(struct replay_opts
*opts
)
3379 const char *opts_file
= git_path_opts_file();
3382 if (opts
->no_commit
)
3383 res
|= git_config_set_in_file_gently(opts_file
,
3384 "options.no-commit", "true");
3385 if (opts
->edit
>= 0)
3386 res
|= git_config_set_in_file_gently(opts_file
, "options.edit",
3387 opts
->edit
? "true" : "false");
3388 if (opts
->allow_empty
)
3389 res
|= git_config_set_in_file_gently(opts_file
,
3390 "options.allow-empty", "true");
3391 if (opts
->allow_empty_message
)
3392 res
|= git_config_set_in_file_gently(opts_file
,
3393 "options.allow-empty-message", "true");
3394 if (opts
->keep_redundant_commits
)
3395 res
|= git_config_set_in_file_gently(opts_file
,
3396 "options.keep-redundant-commits", "true");
3398 res
|= git_config_set_in_file_gently(opts_file
,
3399 "options.signoff", "true");
3400 if (opts
->record_origin
)
3401 res
|= git_config_set_in_file_gently(opts_file
,
3402 "options.record-origin", "true");
3404 res
|= git_config_set_in_file_gently(opts_file
,
3405 "options.allow-ff", "true");
3406 if (opts
->mainline
) {
3407 struct strbuf buf
= STRBUF_INIT
;
3408 strbuf_addf(&buf
, "%d", opts
->mainline
);
3409 res
|= git_config_set_in_file_gently(opts_file
,
3410 "options.mainline", buf
.buf
);
3411 strbuf_release(&buf
);
3414 res
|= git_config_set_in_file_gently(opts_file
,
3415 "options.strategy", opts
->strategy
);
3417 res
|= git_config_set_in_file_gently(opts_file
,
3418 "options.gpg-sign", opts
->gpg_sign
);
3421 for (i
= 0; i
< opts
->xopts_nr
; i
++)
3422 res
|= git_config_set_multivar_in_file_gently(opts_file
,
3423 "options.strategy-option",
3424 opts
->xopts
[i
], "^$", 0);
3426 if (opts
->allow_rerere_auto
)
3427 res
|= git_config_set_in_file_gently(opts_file
,
3428 "options.allow-rerere-auto",
3429 opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
?
3432 if (opts
->explicit_cleanup
)
3433 res
|= git_config_set_in_file_gently(opts_file
,
3434 "options.default-msg-cleanup",
3435 describe_cleanup_mode(opts
->default_msg_cleanup
));
3439 static int make_patch(struct repository
*r
,
3440 struct commit
*commit
,
3441 struct replay_opts
*opts
)
3443 struct strbuf buf
= STRBUF_INIT
;
3444 struct rev_info log_tree_opt
;
3445 const char *subject
;
3446 char hex
[GIT_MAX_HEXSZ
+ 1];
3449 oid_to_hex_r(hex
, &commit
->object
.oid
);
3450 if (write_message(hex
, strlen(hex
), rebase_path_stopped_sha(), 1) < 0)
3452 res
|= write_rebase_head(&commit
->object
.oid
);
3454 strbuf_addf(&buf
, "%s/patch", get_dir(opts
));
3455 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
3456 repo_init_revisions(r
, &log_tree_opt
, NULL
);
3457 log_tree_opt
.abbrev
= 0;
3458 log_tree_opt
.diff
= 1;
3459 log_tree_opt
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
3460 log_tree_opt
.disable_stdin
= 1;
3461 log_tree_opt
.no_commit_id
= 1;
3462 log_tree_opt
.diffopt
.file
= fopen(buf
.buf
, "w");
3463 log_tree_opt
.diffopt
.use_color
= GIT_COLOR_NEVER
;
3464 if (!log_tree_opt
.diffopt
.file
)
3465 res
|= error_errno(_("could not open '%s'"), buf
.buf
);
3467 res
|= log_tree_commit(&log_tree_opt
, commit
);
3468 fclose(log_tree_opt
.diffopt
.file
);
3472 strbuf_addf(&buf
, "%s/message", get_dir(opts
));
3473 if (!file_exists(buf
.buf
)) {
3474 const char *encoding
= get_commit_output_encoding();
3475 const char *commit_buffer
= logmsg_reencode(commit
, NULL
, encoding
);
3476 find_commit_subject(commit_buffer
, &subject
);
3477 res
|= write_message(subject
, strlen(subject
), buf
.buf
, 1);
3478 unuse_commit_buffer(commit
, commit_buffer
);
3480 strbuf_release(&buf
);
3481 release_revisions(&log_tree_opt
);
3486 static int intend_to_amend(void)
3488 struct object_id head
;
3491 if (get_oid("HEAD", &head
))
3492 return error(_("cannot read HEAD"));
3494 p
= oid_to_hex(&head
);
3495 return write_message(p
, strlen(p
), rebase_path_amend(), 1);
3498 static int error_with_patch(struct repository
*r
,
3499 struct commit
*commit
,
3500 const char *subject
, int subject_len
,
3501 struct replay_opts
*opts
,
3502 int exit_code
, int to_amend
)
3505 if (make_patch(r
, commit
, opts
))
3507 } else if (copy_file(rebase_path_message(),
3508 git_path_merge_msg(r
), 0666))
3509 return error(_("unable to copy '%s' to '%s'"),
3510 git_path_merge_msg(r
), rebase_path_message());
3513 if (intend_to_amend())
3517 _("You can amend the commit now, with\n"
3519 " git commit --amend %s\n"
3521 "Once you are satisfied with your changes, run\n"
3523 " git rebase --continue\n"),
3524 gpg_sign_opt_quoted(opts
));
3525 } else if (exit_code
) {
3527 fprintf_ln(stderr
, _("Could not apply %s... %.*s"),
3528 short_commit_name(commit
), subject_len
, subject
);
3531 * We don't have the hash of the parent so
3532 * just print the line from the todo file.
3534 fprintf_ln(stderr
, _("Could not merge %.*s"),
3535 subject_len
, subject
);
3541 static int error_failed_squash(struct repository
*r
,
3542 struct commit
*commit
,
3543 struct replay_opts
*opts
,
3545 const char *subject
)
3547 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3548 return error(_("could not copy '%s' to '%s'"),
3549 rebase_path_squash_msg(), rebase_path_message());
3550 unlink(git_path_merge_msg(r
));
3551 if (copy_file(git_path_merge_msg(r
), rebase_path_message(), 0666))
3552 return error(_("could not copy '%s' to '%s'"),
3553 rebase_path_message(),
3554 git_path_merge_msg(r
));
3555 return error_with_patch(r
, commit
, subject
, subject_len
, opts
, 1, 0);
3558 static int do_exec(struct repository
*r
, const char *command_line
)
3560 struct child_process cmd
= CHILD_PROCESS_INIT
;
3563 fprintf(stderr
, _("Executing: %s\n"), command_line
);
3565 strvec_push(&cmd
.args
, command_line
);
3566 status
= run_command(&cmd
);
3568 /* force re-reading of the cache */
3569 discard_index(r
->index
);
3570 if (repo_read_index(r
) < 0)
3571 return error(_("could not read index"));
3573 dirty
= require_clean_work_tree(r
, "rebase", NULL
, 1, 1);
3576 warning(_("execution failed: %s\n%s"
3577 "You can fix the problem, and then run\n"
3579 " git rebase --continue\n"
3582 dirty
? N_("and made changes to the index and/or the "
3583 "working tree\n") : "");
3585 /* command not found */
3588 warning(_("execution succeeded: %s\nbut "
3589 "left changes to the index and/or the working tree\n"
3590 "Commit or stash your changes, and then run\n"
3592 " git rebase --continue\n"
3593 "\n"), command_line
);
3600 __attribute__((format (printf
, 2, 3)))
3601 static int safe_append(const char *filename
, const char *fmt
, ...)
3604 struct lock_file lock
= LOCK_INIT
;
3605 int fd
= hold_lock_file_for_update(&lock
, filename
,
3606 LOCK_REPORT_ON_ERROR
);
3607 struct strbuf buf
= STRBUF_INIT
;
3612 if (strbuf_read_file(&buf
, filename
, 0) < 0 && errno
!= ENOENT
) {
3613 error_errno(_("could not read '%s'"), filename
);
3614 rollback_lock_file(&lock
);
3617 strbuf_complete(&buf
, '\n');
3619 strbuf_vaddf(&buf
, fmt
, ap
);
3622 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
3623 error_errno(_("could not write to '%s'"), filename
);
3624 strbuf_release(&buf
);
3625 rollback_lock_file(&lock
);
3628 if (commit_lock_file(&lock
) < 0) {
3629 strbuf_release(&buf
);
3630 rollback_lock_file(&lock
);
3631 return error(_("failed to finalize '%s'"), filename
);
3634 strbuf_release(&buf
);
3638 static int do_label(struct repository
*r
, const char *name
, int len
)
3640 struct ref_store
*refs
= get_main_ref_store(r
);
3641 struct ref_transaction
*transaction
;
3642 struct strbuf ref_name
= STRBUF_INIT
, err
= STRBUF_INIT
;
3643 struct strbuf msg
= STRBUF_INIT
;
3645 struct object_id head_oid
;
3647 if (len
== 1 && *name
== '#')
3648 return error(_("illegal label name: '%.*s'"), len
, name
);
3650 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
3651 strbuf_addf(&msg
, "rebase (label) '%.*s'", len
, name
);
3653 transaction
= ref_store_transaction_begin(refs
, &err
);
3655 error("%s", err
.buf
);
3657 } else if (get_oid("HEAD", &head_oid
)) {
3658 error(_("could not read HEAD"));
3660 } else if (ref_transaction_update(transaction
, ref_name
.buf
, &head_oid
,
3661 NULL
, 0, msg
.buf
, &err
) < 0 ||
3662 ref_transaction_commit(transaction
, &err
)) {
3663 error("%s", err
.buf
);
3666 ref_transaction_free(transaction
);
3667 strbuf_release(&err
);
3668 strbuf_release(&msg
);
3671 ret
= safe_append(rebase_path_refs_to_delete(),
3672 "%s\n", ref_name
.buf
);
3673 strbuf_release(&ref_name
);
3678 static const char *sequencer_reflog_action(struct replay_opts
*opts
)
3680 if (!opts
->reflog_action
) {
3681 opts
->reflog_action
= getenv(GIT_REFLOG_ACTION
);
3682 opts
->reflog_action
=
3683 xstrdup(opts
->reflog_action
? opts
->reflog_action
3684 : action_name(opts
));
3687 return opts
->reflog_action
;
3690 __attribute__((format (printf
, 3, 4)))
3691 static const char *reflog_message(struct replay_opts
*opts
,
3692 const char *sub_action
, const char *fmt
, ...)
3695 static struct strbuf buf
= STRBUF_INIT
;
3699 strbuf_addstr(&buf
, sequencer_reflog_action(opts
));
3701 strbuf_addf(&buf
, " (%s)", sub_action
);
3703 strbuf_addstr(&buf
, ": ");
3704 strbuf_vaddf(&buf
, fmt
, ap
);
3711 static struct commit
*lookup_label(struct repository
*r
, const char *label
,
3712 int len
, struct strbuf
*buf
)
3714 struct commit
*commit
;
3715 struct object_id oid
;
3718 strbuf_addf(buf
, "refs/rewritten/%.*s", len
, label
);
3719 if (!read_ref(buf
->buf
, &oid
)) {
3720 commit
= lookup_commit_object(r
, &oid
);
3722 /* fall back to non-rewritten ref or commit */
3723 strbuf_splice(buf
, 0, strlen("refs/rewritten/"), "", 0);
3724 commit
= lookup_commit_reference_by_name(buf
->buf
);
3728 error(_("could not resolve '%s'"), buf
->buf
);
3733 static int do_reset(struct repository
*r
,
3734 const char *name
, int len
,
3735 struct replay_opts
*opts
)
3737 struct strbuf ref_name
= STRBUF_INIT
;
3738 struct object_id oid
;
3739 struct lock_file lock
= LOCK_INIT
;
3740 struct tree_desc desc
= { 0 };
3742 struct unpack_trees_options unpack_tree_opts
= { 0 };
3745 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0)
3748 if (len
== 10 && !strncmp("[new root]", name
, len
)) {
3749 if (!opts
->have_squash_onto
) {
3751 if (commit_tree("", 0, the_hash_algo
->empty_tree
,
3752 NULL
, &opts
->squash_onto
,
3754 return error(_("writing fake root commit"));
3755 opts
->have_squash_onto
= 1;
3756 hex
= oid_to_hex(&opts
->squash_onto
);
3757 if (write_message(hex
, strlen(hex
),
3758 rebase_path_squash_onto(), 0))
3759 return error(_("writing squash-onto"));
3761 oidcpy(&oid
, &opts
->squash_onto
);
3764 struct commit
*commit
;
3766 /* Determine the length of the label */
3767 for (i
= 0; i
< len
; i
++)
3768 if (isspace(name
[i
]))
3772 commit
= lookup_label(r
, name
, len
, &ref_name
);
3777 oid
= commit
->object
.oid
;
3780 setup_unpack_trees_porcelain(&unpack_tree_opts
, "reset");
3781 unpack_tree_opts
.head_idx
= 1;
3782 unpack_tree_opts
.src_index
= r
->index
;
3783 unpack_tree_opts
.dst_index
= r
->index
;
3784 unpack_tree_opts
.fn
= oneway_merge
;
3785 unpack_tree_opts
.merge
= 1;
3786 unpack_tree_opts
.update
= 1;
3787 unpack_tree_opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
3788 unpack_tree_opts
.skip_cache_tree_update
= 1;
3789 init_checkout_metadata(&unpack_tree_opts
.meta
, name
, &oid
, NULL
);
3791 if (repo_read_index_unmerged(r
)) {
3792 ret
= error_resolve_conflict(action_name(opts
));
3796 if (!fill_tree_descriptor(r
, &desc
, &oid
)) {
3797 ret
= error(_("failed to find tree of %s"), oid_to_hex(&oid
));
3801 if (unpack_trees(1, &desc
, &unpack_tree_opts
)) {
3806 tree
= parse_tree_indirect(&oid
);
3807 prime_cache_tree(r
, r
->index
, tree
);
3809 if (write_locked_index(r
->index
, &lock
, COMMIT_LOCK
) < 0)
3810 ret
= error(_("could not write index"));
3813 ret
= update_ref(reflog_message(opts
, "reset", "'%.*s'",
3814 len
, name
), "HEAD", &oid
,
3815 NULL
, 0, UPDATE_REFS_MSG_ON_ERR
);
3817 free((void *)desc
.buffer
);
3819 rollback_lock_file(&lock
);
3820 strbuf_release(&ref_name
);
3821 clear_unpack_trees_porcelain(&unpack_tree_opts
);
3825 static int do_merge(struct repository
*r
,
3826 struct commit
*commit
,
3827 const char *arg
, int arg_len
,
3828 int flags
, int *check_todo
, struct replay_opts
*opts
)
3830 int run_commit_flags
= 0;
3831 struct strbuf ref_name
= STRBUF_INIT
;
3832 struct commit
*head_commit
, *merge_commit
, *i
;
3833 struct commit_list
*bases
, *j
;
3834 struct commit_list
*to_merge
= NULL
, **tail
= &to_merge
;
3835 const char *strategy
= !opts
->xopts_nr
&&
3837 !strcmp(opts
->strategy
, "recursive") ||
3838 !strcmp(opts
->strategy
, "ort")) ?
3839 NULL
: opts
->strategy
;
3840 struct merge_options o
;
3841 int merge_arg_len
, oneline_offset
, can_fast_forward
, ret
, k
;
3842 static struct lock_file lock
;
3845 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0) {
3850 head_commit
= lookup_commit_reference_by_name("HEAD");
3852 ret
= error(_("cannot merge without a current revision"));
3857 * For octopus merges, the arg starts with the list of revisions to be
3858 * merged. The list is optionally followed by '#' and the oneline.
3860 merge_arg_len
= oneline_offset
= arg_len
;
3861 for (p
= arg
; p
- arg
< arg_len
; p
+= strspn(p
, " \t\n")) {
3864 if (*p
== '#' && (!p
[1] || isspace(p
[1]))) {
3865 p
+= 1 + strspn(p
+ 1, " \t\n");
3866 oneline_offset
= p
- arg
;
3869 k
= strcspn(p
, " \t\n");
3872 merge_commit
= lookup_label(r
, p
, k
, &ref_name
);
3873 if (!merge_commit
) {
3874 ret
= error(_("unable to parse '%.*s'"), k
, p
);
3877 tail
= &commit_list_insert(merge_commit
, tail
)->next
;
3879 merge_arg_len
= p
- arg
;
3883 ret
= error(_("nothing to merge: '%.*s'"), arg_len
, arg
);
3887 if (opts
->have_squash_onto
&&
3888 oideq(&head_commit
->object
.oid
, &opts
->squash_onto
)) {
3890 * When the user tells us to "merge" something into a
3891 * "[new root]", let's simply fast-forward to the merge head.
3893 rollback_lock_file(&lock
);
3895 ret
= error(_("octopus merge cannot be executed on "
3896 "top of a [new root]"));
3898 ret
= fast_forward_to(r
, &to_merge
->item
->object
.oid
,
3899 &head_commit
->object
.oid
, 0,
3905 * If HEAD is not identical to the first parent of the original merge
3906 * commit, we cannot fast-forward.
3908 can_fast_forward
= opts
->allow_ff
&& commit
&& commit
->parents
&&
3909 oideq(&commit
->parents
->item
->object
.oid
,
3910 &head_commit
->object
.oid
);
3913 * If any merge head is different from the original one, we cannot
3916 if (can_fast_forward
) {
3917 struct commit_list
*p
= commit
->parents
->next
;
3919 for (j
= to_merge
; j
&& p
; j
= j
->next
, p
= p
->next
)
3920 if (!oideq(&j
->item
->object
.oid
,
3921 &p
->item
->object
.oid
)) {
3922 can_fast_forward
= 0;
3926 * If the number of merge heads differs from the original merge
3927 * commit, we cannot fast-forward.
3930 can_fast_forward
= 0;
3933 if (can_fast_forward
) {
3934 rollback_lock_file(&lock
);
3935 ret
= fast_forward_to(r
, &commit
->object
.oid
,
3936 &head_commit
->object
.oid
, 0, opts
);
3937 if (flags
& TODO_EDIT_MERGE_MSG
)
3938 goto fast_forward_edit
;
3944 const char *encoding
= get_commit_output_encoding();
3945 const char *message
= logmsg_reencode(commit
, NULL
, encoding
);
3950 ret
= error(_("could not get commit message of '%s'"),
3951 oid_to_hex(&commit
->object
.oid
));
3954 write_author_script(message
);
3955 find_commit_subject(message
, &body
);
3957 ret
= write_message(body
, len
, git_path_merge_msg(r
), 0);
3958 unuse_commit_buffer(commit
, message
);
3960 error_errno(_("could not write '%s'"),
3961 git_path_merge_msg(r
));
3965 struct strbuf buf
= STRBUF_INIT
;
3968 strbuf_addf(&buf
, "author %s", git_author_info(0));
3969 write_author_script(buf
.buf
);
3972 if (oneline_offset
< arg_len
) {
3973 p
= arg
+ oneline_offset
;
3974 len
= arg_len
- oneline_offset
;
3976 strbuf_addf(&buf
, "Merge %s '%.*s'",
3977 to_merge
->next
? "branches" : "branch",
3978 merge_arg_len
, arg
);
3983 ret
= write_message(p
, len
, git_path_merge_msg(r
), 0);
3984 strbuf_release(&buf
);
3986 error_errno(_("could not write '%s'"),
3987 git_path_merge_msg(r
));
3992 if (strategy
|| to_merge
->next
) {
3994 struct child_process cmd
= CHILD_PROCESS_INIT
;
3996 if (read_env_script(&cmd
.env
)) {
3997 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
3999 ret
= error(_(staged_changes_advice
), gpg_opt
, gpg_opt
);
4003 if (opts
->committer_date_is_author_date
)
4004 strvec_pushf(&cmd
.env
, "GIT_COMMITTER_DATE=%s",
4007 author_date_from_env(&cmd
.env
));
4008 if (opts
->ignore_date
)
4009 strvec_push(&cmd
.env
, "GIT_AUTHOR_DATE=");
4012 strvec_push(&cmd
.args
, "merge");
4013 strvec_push(&cmd
.args
, "-s");
4015 strvec_push(&cmd
.args
, "octopus");
4017 strvec_push(&cmd
.args
, strategy
);
4018 for (k
= 0; k
< opts
->xopts_nr
; k
++)
4019 strvec_pushf(&cmd
.args
,
4020 "-X%s", opts
->xopts
[k
]);
4022 if (!(flags
& TODO_EDIT_MERGE_MSG
))
4023 strvec_push(&cmd
.args
, "--no-edit");
4025 strvec_push(&cmd
.args
, "--edit");
4026 strvec_push(&cmd
.args
, "--no-ff");
4027 strvec_push(&cmd
.args
, "--no-log");
4028 strvec_push(&cmd
.args
, "--no-stat");
4029 strvec_push(&cmd
.args
, "-F");
4030 strvec_push(&cmd
.args
, git_path_merge_msg(r
));
4032 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
4034 strvec_push(&cmd
.args
, "--no-gpg-sign");
4036 /* Add the tips to be merged */
4037 for (j
= to_merge
; j
; j
= j
->next
)
4038 strvec_push(&cmd
.args
,
4039 oid_to_hex(&j
->item
->object
.oid
));
4041 strbuf_release(&ref_name
);
4042 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
4044 rollback_lock_file(&lock
);
4046 ret
= run_command(&cmd
);
4048 /* force re-reading of the cache */
4050 discard_index(r
->index
);
4051 if (repo_read_index(r
) < 0)
4052 ret
= error(_("could not read index"));
4057 merge_commit
= to_merge
->item
;
4058 bases
= get_merge_bases(head_commit
, merge_commit
);
4059 if (bases
&& oideq(&merge_commit
->object
.oid
,
4060 &bases
->item
->object
.oid
)) {
4062 /* skip merging an ancestor of HEAD */
4066 write_message(oid_to_hex(&merge_commit
->object
.oid
), the_hash_algo
->hexsz
,
4067 git_path_merge_head(r
), 0);
4068 write_message("no-ff", 5, git_path_merge_mode(r
), 0);
4070 bases
= reverse_commit_list(bases
);
4073 init_merge_options(&o
, r
);
4075 o
.branch2
= ref_name
.buf
;
4076 o
.buffer_output
= 2;
4078 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "ort")) {
4080 * TODO: Should use merge_incore_recursive() and
4081 * merge_switch_to_result(), skipping the call to
4082 * merge_switch_to_result() when we don't actually need to
4083 * update the index and working copy immediately.
4085 ret
= merge_ort_recursive(&o
,
4086 head_commit
, merge_commit
, bases
,
4089 ret
= merge_recursive(&o
, head_commit
, merge_commit
, bases
,
4093 fputs(o
.obuf
.buf
, stdout
);
4094 strbuf_release(&o
.obuf
);
4096 error(_("could not even attempt to merge '%.*s'"),
4097 merge_arg_len
, arg
);
4101 * The return value of merge_recursive() is 1 on clean, and 0 on
4104 * Let's reverse that, so that do_merge() returns 0 upon success and
4105 * 1 upon failed merge (keeping the return value -1 for the cases where
4106 * we will want to reschedule the `merge` command).
4110 if (r
->index
->cache_changed
&&
4111 write_locked_index(r
->index
, &lock
, COMMIT_LOCK
)) {
4112 ret
= error(_("merge: Unable to write new index file"));
4116 rollback_lock_file(&lock
);
4118 repo_rerere(r
, opts
->allow_rerere_auto
);
4121 * In case of problems, we now want to return a positive
4122 * value (a negative one would indicate that the `merge`
4123 * command needs to be rescheduled).
4125 ret
= !!run_git_commit(git_path_merge_msg(r
), opts
,
4128 if (!ret
&& flags
& TODO_EDIT_MERGE_MSG
) {
4131 run_commit_flags
|= AMEND_MSG
| EDIT_MSG
| VERIFY_MSG
;
4132 ret
= !!run_git_commit(NULL
, opts
, run_commit_flags
);
4137 strbuf_release(&ref_name
);
4138 rollback_lock_file(&lock
);
4139 free_commit_list(to_merge
);
4143 static int write_update_refs_state(struct string_list
*refs_to_oids
)
4146 struct lock_file lock
= LOCK_INIT
;
4148 struct string_list_item
*item
;
4151 path
= rebase_path_update_refs(the_repository
->gitdir
);
4153 if (!refs_to_oids
->nr
) {
4154 if (unlink(path
) && errno
!= ENOENT
)
4155 result
= error_errno(_("could not unlink: %s"), path
);
4159 if (safe_create_leading_directories(path
)) {
4160 result
= error(_("unable to create leading directories of %s"),
4165 if (hold_lock_file_for_update(&lock
, path
, 0) < 0) {
4166 result
= error(_("another 'rebase' process appears to be running; "
4167 "'%s.lock' already exists"),
4172 fp
= fdopen_lock_file(&lock
, "w");
4174 result
= error_errno(_("could not open '%s' for writing"), path
);
4175 rollback_lock_file(&lock
);
4179 for_each_string_list_item(item
, refs_to_oids
) {
4180 struct update_ref_record
*rec
= item
->util
;
4181 fprintf(fp
, "%s\n%s\n%s\n", item
->string
,
4182 oid_to_hex(&rec
->before
), oid_to_hex(&rec
->after
));
4185 result
= commit_lock_file(&lock
);
4193 * Parse the update-refs file for the current rebase, then remove the
4194 * refs that do not appear in the todo_list (and have not had updated
4195 * values stored) and add refs that are in the todo_list but not
4196 * represented in the update-refs file.
4198 * If there are changes to the update-refs list, then write the new state
4201 void todo_list_filter_update_refs(struct repository
*r
,
4202 struct todo_list
*todo_list
)
4206 struct string_list update_refs
= STRING_LIST_INIT_DUP
;
4208 sequencer_get_update_refs_state(r
->gitdir
, &update_refs
);
4211 * For each item in the update_refs list, if it has no updated
4212 * value and does not appear in the todo_list, then remove it
4213 * from the update_refs list.
4215 for (i
= 0; i
< update_refs
.nr
; i
++) {
4218 const char *ref
= update_refs
.items
[i
].string
;
4219 size_t reflen
= strlen(ref
);
4220 struct update_ref_record
*rec
= update_refs
.items
[i
].util
;
4222 /* OID already stored as updated. */
4223 if (!is_null_oid(&rec
->after
))
4226 for (j
= 0; !found
&& j
< todo_list
->total_nr
; j
++) {
4227 struct todo_item
*item
= &todo_list
->items
[j
];
4228 const char *arg
= todo_list
->buf
.buf
+ item
->arg_offset
;
4230 if (item
->command
!= TODO_UPDATE_REF
)
4233 if (item
->arg_len
!= reflen
||
4234 strncmp(arg
, ref
, reflen
))
4241 free(update_refs
.items
[i
].string
);
4242 free(update_refs
.items
[i
].util
);
4245 MOVE_ARRAY(update_refs
.items
+ i
, update_refs
.items
+ i
+ 1, update_refs
.nr
- i
);
4253 * For each todo_item, check if its ref is in the update_refs list.
4254 * If not, then add it as an un-updated ref.
4256 for (i
= 0; i
< todo_list
->total_nr
; i
++) {
4257 struct todo_item
*item
= &todo_list
->items
[i
];
4258 const char *arg
= todo_list
->buf
.buf
+ item
->arg_offset
;
4261 if (item
->command
!= TODO_UPDATE_REF
)
4264 for (j
= 0; !found
&& j
< update_refs
.nr
; j
++) {
4265 const char *ref
= update_refs
.items
[j
].string
;
4267 found
= strlen(ref
) == item
->arg_len
&&
4268 !strncmp(ref
, arg
, item
->arg_len
);
4272 struct string_list_item
*inserted
;
4273 struct strbuf argref
= STRBUF_INIT
;
4275 strbuf_add(&argref
, arg
, item
->arg_len
);
4276 inserted
= string_list_insert(&update_refs
, argref
.buf
);
4277 inserted
->util
= init_update_ref_record(argref
.buf
);
4278 strbuf_release(&argref
);
4284 write_update_refs_state(&update_refs
);
4285 string_list_clear(&update_refs
, 1);
4288 static int do_update_ref(struct repository
*r
, const char *refname
)
4290 struct string_list_item
*item
;
4291 struct string_list list
= STRING_LIST_INIT_DUP
;
4293 if (sequencer_get_update_refs_state(r
->gitdir
, &list
))
4296 for_each_string_list_item(item
, &list
) {
4297 if (!strcmp(item
->string
, refname
)) {
4298 struct update_ref_record
*rec
= item
->util
;
4299 if (read_ref("HEAD", &rec
->after
))
4305 write_update_refs_state(&list
);
4306 string_list_clear(&list
, 1);
4310 static int do_update_refs(struct repository
*r
, int quiet
)
4313 struct string_list_item
*item
;
4314 struct string_list refs_to_oids
= STRING_LIST_INIT_DUP
;
4315 struct ref_store
*refs
= get_main_ref_store(r
);
4316 struct strbuf update_msg
= STRBUF_INIT
;
4317 struct strbuf error_msg
= STRBUF_INIT
;
4319 if ((res
= sequencer_get_update_refs_state(r
->gitdir
, &refs_to_oids
)))
4322 for_each_string_list_item(item
, &refs_to_oids
) {
4323 struct update_ref_record
*rec
= item
->util
;
4326 loop_res
= refs_update_ref(refs
, "rewritten during rebase",
4328 &rec
->after
, &rec
->before
,
4329 0, UPDATE_REFS_MSG_ON_ERR
);
4336 strbuf_addf(&error_msg
, "\t%s\n", item
->string
);
4338 strbuf_addf(&update_msg
, "\t%s\n", item
->string
);
4342 (update_msg
.len
|| error_msg
.len
)) {
4344 _("Updated the following refs with %s:\n%s"),
4350 _("Failed to update the following refs with %s:\n%s"),
4355 string_list_clear(&refs_to_oids
, 1);
4356 strbuf_release(&update_msg
);
4357 strbuf_release(&error_msg
);
4361 static int is_final_fixup(struct todo_list
*todo_list
)
4363 int i
= todo_list
->current
;
4365 if (!is_fixup(todo_list
->items
[i
].command
))
4368 while (++i
< todo_list
->nr
)
4369 if (is_fixup(todo_list
->items
[i
].command
))
4371 else if (!is_noop(todo_list
->items
[i
].command
))
4376 static enum todo_command
peek_command(struct todo_list
*todo_list
, int offset
)
4380 for (i
= todo_list
->current
+ offset
; i
< todo_list
->nr
; i
++)
4381 if (!is_noop(todo_list
->items
[i
].command
))
4382 return todo_list
->items
[i
].command
;
4387 void create_autostash(struct repository
*r
, const char *path
)
4389 struct strbuf buf
= STRBUF_INIT
;
4390 struct lock_file lock_file
= LOCK_INIT
;
4393 fd
= repo_hold_locked_index(r
, &lock_file
, 0);
4394 refresh_index(r
->index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
4396 repo_update_index_if_able(r
, &lock_file
);
4397 rollback_lock_file(&lock_file
);
4399 if (has_unstaged_changes(r
, 1) ||
4400 has_uncommitted_changes(r
, 1)) {
4401 struct child_process stash
= CHILD_PROCESS_INIT
;
4402 struct reset_head_opts ropts
= { .flags
= RESET_HEAD_HARD
};
4403 struct object_id oid
;
4405 strvec_pushl(&stash
.args
,
4406 "stash", "create", "autostash", NULL
);
4410 if (capture_command(&stash
, &buf
, GIT_MAX_HEXSZ
))
4411 die(_("Cannot autostash"));
4412 strbuf_trim_trailing_newline(&buf
);
4413 if (get_oid(buf
.buf
, &oid
))
4414 die(_("Unexpected stash response: '%s'"),
4417 strbuf_add_unique_abbrev(&buf
, &oid
, DEFAULT_ABBREV
);
4419 if (safe_create_leading_directories_const(path
))
4420 die(_("Could not create directory for '%s'"),
4422 write_file(path
, "%s", oid_to_hex(&oid
));
4423 printf(_("Created autostash: %s\n"), buf
.buf
);
4424 if (reset_head(r
, &ropts
) < 0)
4425 die(_("could not reset --hard"));
4426 discard_index(r
->index
);
4427 if (repo_read_index(r
) < 0)
4428 die(_("could not read index"));
4430 strbuf_release(&buf
);
4433 static int apply_save_autostash_oid(const char *stash_oid
, int attempt_apply
)
4435 struct child_process child
= CHILD_PROCESS_INIT
;
4438 if (attempt_apply
) {
4440 child
.no_stdout
= 1;
4441 child
.no_stderr
= 1;
4442 strvec_push(&child
.args
, "stash");
4443 strvec_push(&child
.args
, "apply");
4444 strvec_push(&child
.args
, stash_oid
);
4445 ret
= run_command(&child
);
4448 if (attempt_apply
&& !ret
)
4449 fprintf(stderr
, _("Applied autostash.\n"));
4451 struct child_process store
= CHILD_PROCESS_INIT
;
4454 strvec_push(&store
.args
, "stash");
4455 strvec_push(&store
.args
, "store");
4456 strvec_push(&store
.args
, "-m");
4457 strvec_push(&store
.args
, "autostash");
4458 strvec_push(&store
.args
, "-q");
4459 strvec_push(&store
.args
, stash_oid
);
4460 if (run_command(&store
))
4461 ret
= error(_("cannot store %s"), stash_oid
);
4465 "Your changes are safe in the stash.\n"
4466 "You can run \"git stash pop\" or"
4467 " \"git stash drop\" at any time.\n"),
4469 _("Applying autostash resulted in conflicts.") :
4470 _("Autostash exists; creating a new stash entry."));
4476 static int apply_save_autostash(const char *path
, int attempt_apply
)
4478 struct strbuf stash_oid
= STRBUF_INIT
;
4481 if (!read_oneliner(&stash_oid
, path
,
4482 READ_ONELINER_SKIP_IF_EMPTY
)) {
4483 strbuf_release(&stash_oid
);
4486 strbuf_trim(&stash_oid
);
4488 ret
= apply_save_autostash_oid(stash_oid
.buf
, attempt_apply
);
4491 strbuf_release(&stash_oid
);
4495 int save_autostash(const char *path
)
4497 return apply_save_autostash(path
, 0);
4500 int apply_autostash(const char *path
)
4502 return apply_save_autostash(path
, 1);
4505 int apply_autostash_oid(const char *stash_oid
)
4507 return apply_save_autostash_oid(stash_oid
, 1);
4510 static int checkout_onto(struct repository
*r
, struct replay_opts
*opts
,
4511 const char *onto_name
, const struct object_id
*onto
,
4512 const struct object_id
*orig_head
)
4514 struct reset_head_opts ropts
= {
4516 .orig_head
= orig_head
,
4517 .flags
= RESET_HEAD_DETACH
| RESET_ORIG_HEAD
|
4518 RESET_HEAD_RUN_POST_CHECKOUT_HOOK
,
4519 .head_msg
= reflog_message(opts
, "start", "checkout %s",
4521 .default_reflog_action
= sequencer_reflog_action(opts
)
4523 if (reset_head(r
, &ropts
)) {
4524 apply_autostash(rebase_path_autostash());
4525 sequencer_remove_state(opts
);
4526 return error(_("could not detach HEAD"));
4532 static int stopped_at_head(struct repository
*r
)
4534 struct object_id head
;
4535 struct commit
*commit
;
4536 struct commit_message message
;
4538 if (get_oid("HEAD", &head
) ||
4539 !(commit
= lookup_commit(r
, &head
)) ||
4540 parse_commit(commit
) || get_message(commit
, &message
))
4541 fprintf(stderr
, _("Stopped at HEAD\n"));
4543 fprintf(stderr
, _("Stopped at %s\n"), message
.label
);
4544 free_message(commit
, &message
);
4550 static int reread_todo_if_changed(struct repository
*r
,
4551 struct todo_list
*todo_list
,
4552 struct replay_opts
*opts
)
4555 struct strbuf buf
= STRBUF_INIT
;
4557 if (strbuf_read_file_or_whine(&buf
, get_todo_path(opts
)) < 0)
4559 offset
= get_item_line_offset(todo_list
, todo_list
->current
+ 1);
4560 if (buf
.len
!= todo_list
->buf
.len
- offset
||
4561 memcmp(buf
.buf
, todo_list
->buf
.buf
+ offset
, buf
.len
)) {
4562 /* Reread the todo file if it has changed. */
4563 todo_list_release(todo_list
);
4564 if (read_populate_todo(r
, todo_list
, opts
))
4565 return -1; /* message was printed */
4566 /* `current` will be incremented on return */
4567 todo_list
->current
= -1;
4569 strbuf_release(&buf
);
4574 static const char rescheduled_advice
[] =
4575 N_("Could not execute the todo command\n"
4579 "It has been rescheduled; To edit the command before continuing, please\n"
4580 "edit the todo list first:\n"
4582 " git rebase --edit-todo\n"
4583 " git rebase --continue\n");
4585 static int pick_commits(struct repository
*r
,
4586 struct todo_list
*todo_list
,
4587 struct replay_opts
*opts
)
4589 int res
= 0, reschedule
= 0;
4591 opts
->reflog_message
= sequencer_reflog_action(opts
);
4593 assert(!(opts
->signoff
|| opts
->no_commit
||
4594 opts
->record_origin
|| should_edit(opts
) ||
4595 opts
->committer_date_is_author_date
||
4596 opts
->ignore_date
));
4597 if (read_and_refresh_cache(r
, opts
))
4600 while (todo_list
->current
< todo_list
->nr
) {
4601 struct todo_item
*item
= todo_list
->items
+ todo_list
->current
;
4602 const char *arg
= todo_item_get_arg(todo_list
, item
);
4605 if (save_todo(todo_list
, opts
))
4607 if (is_rebase_i(opts
)) {
4608 if (item
->command
!= TODO_COMMENT
) {
4609 FILE *f
= fopen(rebase_path_msgnum(), "w");
4611 todo_list
->done_nr
++;
4614 fprintf(f
, "%d\n", todo_list
->done_nr
);
4618 fprintf(stderr
, _("Rebasing (%d/%d)%s"),
4620 todo_list
->total_nr
,
4621 opts
->verbose
? "\n" : "\r");
4623 unlink(rebase_path_message());
4624 unlink(rebase_path_author_script());
4625 unlink(rebase_path_stopped_sha());
4626 unlink(rebase_path_amend());
4627 unlink(git_path_merge_head(r
));
4628 unlink(git_path_auto_merge(r
));
4629 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
4631 if (item
->command
== TODO_BREAK
) {
4634 return stopped_at_head(r
);
4637 if (item
->command
<= TODO_SQUASH
) {
4638 if (is_rebase_i(opts
))
4639 opts
->reflog_message
= reflog_message(opts
,
4640 command_to_string(item
->command
), NULL
);
4642 res
= do_pick_commit(r
, item
, opts
,
4643 is_final_fixup(todo_list
),
4645 if (is_rebase_i(opts
) && res
< 0) {
4647 advise(_(rescheduled_advice
),
4648 get_item_line_length(todo_list
,
4649 todo_list
->current
),
4650 get_item_line(todo_list
,
4651 todo_list
->current
));
4652 todo_list
->current
--;
4653 if (save_todo(todo_list
, opts
))
4656 if (item
->command
== TODO_EDIT
) {
4657 struct commit
*commit
= item
->commit
;
4662 _("Stopped at %s... %.*s\n"),
4663 short_commit_name(commit
),
4664 item
->arg_len
, arg
);
4666 return error_with_patch(r
, commit
,
4667 arg
, item
->arg_len
, opts
, res
, !res
);
4669 if (is_rebase_i(opts
) && !res
)
4670 record_in_rewritten(&item
->commit
->object
.oid
,
4671 peek_command(todo_list
, 1));
4672 if (res
&& is_fixup(item
->command
)) {
4675 return error_failed_squash(r
, item
->commit
, opts
,
4676 item
->arg_len
, arg
);
4677 } else if (res
&& is_rebase_i(opts
) && item
->commit
) {
4679 struct object_id oid
;
4682 * If we are rewording and have either
4683 * fast-forwarded already, or are about to
4684 * create a new root commit, we want to amend,
4685 * otherwise we do not.
4687 if (item
->command
== TODO_REWORD
&&
4688 !get_oid("HEAD", &oid
) &&
4689 (oideq(&item
->commit
->object
.oid
, &oid
) ||
4690 (opts
->have_squash_onto
&&
4691 oideq(&opts
->squash_onto
, &oid
))))
4694 return res
| error_with_patch(r
, item
->commit
,
4695 arg
, item
->arg_len
, opts
,
4698 } else if (item
->command
== TODO_EXEC
) {
4699 char *end_of_arg
= (char *)(arg
+ item
->arg_len
);
4700 int saved
= *end_of_arg
;
4705 res
= do_exec(r
, arg
);
4706 *end_of_arg
= saved
;
4709 if (opts
->reschedule_failed_exec
)
4713 } else if (item
->command
== TODO_LABEL
) {
4714 if ((res
= do_label(r
, arg
, item
->arg_len
)))
4716 } else if (item
->command
== TODO_RESET
) {
4717 if ((res
= do_reset(r
, arg
, item
->arg_len
, opts
)))
4719 } else if (item
->command
== TODO_MERGE
) {
4720 if ((res
= do_merge(r
, item
->commit
, arg
, item
->arg_len
,
4721 item
->flags
, &check_todo
, opts
)) < 0)
4723 else if (item
->commit
)
4724 record_in_rewritten(&item
->commit
->object
.oid
,
4725 peek_command(todo_list
, 1));
4727 /* failed with merge conflicts */
4728 return error_with_patch(r
, item
->commit
,
4731 } else if (item
->command
== TODO_UPDATE_REF
) {
4732 struct strbuf ref
= STRBUF_INIT
;
4733 strbuf_add(&ref
, arg
, item
->arg_len
);
4734 if ((res
= do_update_ref(r
, ref
.buf
)))
4736 strbuf_release(&ref
);
4737 } else if (!is_noop(item
->command
))
4738 return error(_("unknown command %d"), item
->command
);
4741 advise(_(rescheduled_advice
),
4742 get_item_line_length(todo_list
,
4743 todo_list
->current
),
4744 get_item_line(todo_list
, todo_list
->current
));
4745 todo_list
->current
--;
4746 if (save_todo(todo_list
, opts
))
4749 return error_with_patch(r
,
4753 } else if (is_rebase_i(opts
) && check_todo
&& !res
&&
4754 reread_todo_if_changed(r
, todo_list
, opts
)) {
4758 todo_list
->current
++;
4763 if (is_rebase_i(opts
)) {
4764 struct strbuf head_ref
= STRBUF_INIT
, buf
= STRBUF_INIT
;
4767 /* Stopped in the middle, as planned? */
4768 if (todo_list
->current
< todo_list
->nr
)
4771 if (read_oneliner(&head_ref
, rebase_path_head_name(), 0) &&
4772 starts_with(head_ref
.buf
, "refs/")) {
4774 struct object_id head
, orig
;
4777 if (get_oid("HEAD", &head
)) {
4778 res
= error(_("cannot read HEAD"));
4780 strbuf_release(&head_ref
);
4781 strbuf_release(&buf
);
4784 if (!read_oneliner(&buf
, rebase_path_orig_head(), 0) ||
4785 get_oid_hex(buf
.buf
, &orig
)) {
4786 res
= error(_("could not read orig-head"));
4787 goto cleanup_head_ref
;
4790 if (!read_oneliner(&buf
, rebase_path_onto(), 0)) {
4791 res
= error(_("could not read 'onto'"));
4792 goto cleanup_head_ref
;
4794 msg
= reflog_message(opts
, "finish", "%s onto %s",
4795 head_ref
.buf
, buf
.buf
);
4796 if (update_ref(msg
, head_ref
.buf
, &head
, &orig
,
4797 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
)) {
4798 res
= error(_("could not update %s"),
4800 goto cleanup_head_ref
;
4802 msg
= reflog_message(opts
, "finish", "returning to %s",
4804 if (create_symref("HEAD", head_ref
.buf
, msg
)) {
4805 res
= error(_("could not update HEAD to %s"),
4807 goto cleanup_head_ref
;
4812 if (opts
->verbose
) {
4813 struct rev_info log_tree_opt
;
4814 struct object_id orig
, head
;
4816 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
4817 repo_init_revisions(r
, &log_tree_opt
, NULL
);
4818 log_tree_opt
.diff
= 1;
4819 log_tree_opt
.diffopt
.output_format
=
4820 DIFF_FORMAT_DIFFSTAT
;
4821 log_tree_opt
.disable_stdin
= 1;
4823 if (read_oneliner(&buf
, rebase_path_orig_head(), 0) &&
4824 !get_oid(buf
.buf
, &orig
) &&
4825 !get_oid("HEAD", &head
)) {
4826 diff_tree_oid(&orig
, &head
, "",
4827 &log_tree_opt
.diffopt
);
4828 log_tree_diff_flush(&log_tree_opt
);
4830 release_revisions(&log_tree_opt
);
4832 flush_rewritten_pending();
4833 if (!stat(rebase_path_rewritten_list(), &st
) &&
4835 struct child_process child
= CHILD_PROCESS_INIT
;
4836 const char *post_rewrite_hook
=
4837 find_hook("post-rewrite");
4839 child
.in
= open(rebase_path_rewritten_list(), O_RDONLY
);
4841 strvec_push(&child
.args
, "notes");
4842 strvec_push(&child
.args
, "copy");
4843 strvec_push(&child
.args
, "--for-rewrite=rebase");
4844 /* we don't care if this copying failed */
4845 run_command(&child
);
4847 if (post_rewrite_hook
) {
4848 struct child_process hook
= CHILD_PROCESS_INIT
;
4850 hook
.in
= open(rebase_path_rewritten_list(),
4852 hook
.stdout_to_stderr
= 1;
4853 hook
.trace2_hook_name
= "post-rewrite";
4854 strvec_push(&hook
.args
, post_rewrite_hook
);
4855 strvec_push(&hook
.args
, "rebase");
4856 /* we don't care if this hook failed */
4860 apply_autostash(rebase_path_autostash());
4866 _("Successfully rebased and updated %s.\n"),
4870 strbuf_release(&buf
);
4871 strbuf_release(&head_ref
);
4873 if (do_update_refs(r
, opts
->quiet
))
4878 * Sequence of picks finished successfully; cleanup by
4879 * removing the .git/sequencer directory
4881 return sequencer_remove_state(opts
);
4884 static int continue_single_pick(struct repository
*r
, struct replay_opts
*opts
)
4886 struct child_process cmd
= CHILD_PROCESS_INIT
;
4888 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
4889 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
4890 return error(_("no cherry-pick or revert in progress"));
4893 strvec_push(&cmd
.args
, "commit");
4896 * continue_single_pick() handles the case of recovering from a
4897 * conflict. should_edit() doesn't handle that case; for a conflict,
4898 * we want to edit if the user asked for it, or if they didn't specify
4899 * and stdin is a tty.
4901 if (!opts
->edit
|| (opts
->edit
< 0 && !isatty(0)))
4903 * Include --cleanup=strip as well because we don't want the
4904 * "# Conflicts:" messages.
4906 strvec_pushl(&cmd
.args
, "--no-edit", "--cleanup=strip", NULL
);
4908 return run_command(&cmd
);
4911 static int commit_staged_changes(struct repository
*r
,
4912 struct replay_opts
*opts
,
4913 struct todo_list
*todo_list
)
4915 unsigned int flags
= ALLOW_EMPTY
| EDIT_MSG
;
4916 unsigned int final_fixup
= 0, is_clean
;
4918 if (has_unstaged_changes(r
, 1))
4919 return error(_("cannot rebase: You have unstaged changes."));
4921 is_clean
= !has_uncommitted_changes(r
, 0);
4923 if (file_exists(rebase_path_amend())) {
4924 struct strbuf rev
= STRBUF_INIT
;
4925 struct object_id head
, to_amend
;
4927 if (get_oid("HEAD", &head
))
4928 return error(_("cannot amend non-existing commit"));
4929 if (!read_oneliner(&rev
, rebase_path_amend(), 0))
4930 return error(_("invalid file: '%s'"), rebase_path_amend());
4931 if (get_oid_hex(rev
.buf
, &to_amend
))
4932 return error(_("invalid contents: '%s'"),
4933 rebase_path_amend());
4934 if (!is_clean
&& !oideq(&head
, &to_amend
))
4935 return error(_("\nYou have uncommitted changes in your "
4936 "working tree. Please, commit them\n"
4937 "first and then run 'git rebase "
4938 "--continue' again."));
4940 * When skipping a failed fixup/squash, we need to edit the
4941 * commit message, the current fixup list and count, and if it
4942 * was the last fixup/squash in the chain, we need to clean up
4943 * the commit message and if there was a squash, let the user
4946 if (!is_clean
|| !opts
->current_fixup_count
)
4947 ; /* this is not the final fixup */
4948 else if (!oideq(&head
, &to_amend
) ||
4949 !file_exists(rebase_path_stopped_sha())) {
4950 /* was a final fixup or squash done manually? */
4951 if (!is_fixup(peek_command(todo_list
, 0))) {
4952 unlink(rebase_path_fixup_msg());
4953 unlink(rebase_path_squash_msg());
4954 unlink(rebase_path_current_fixups());
4955 strbuf_reset(&opts
->current_fixups
);
4956 opts
->current_fixup_count
= 0;
4959 /* we are in a fixup/squash chain */
4960 const char *p
= opts
->current_fixups
.buf
;
4961 int len
= opts
->current_fixups
.len
;
4963 opts
->current_fixup_count
--;
4965 BUG("Incorrect current_fixups:\n%s", p
);
4966 while (len
&& p
[len
- 1] != '\n')
4968 strbuf_setlen(&opts
->current_fixups
, len
);
4969 if (write_message(p
, len
, rebase_path_current_fixups(),
4971 return error(_("could not write file: '%s'"),
4972 rebase_path_current_fixups());
4975 * If a fixup/squash in a fixup/squash chain failed, the
4976 * commit message is already correct, no need to commit
4979 * Only if it is the final command in the fixup/squash
4980 * chain, and only if the chain is longer than a single
4981 * fixup/squash command (which was just skipped), do we
4982 * actually need to re-commit with a cleaned up commit
4985 if (opts
->current_fixup_count
> 0 &&
4986 !is_fixup(peek_command(todo_list
, 0))) {
4989 * If there was not a single "squash" in the
4990 * chain, we only need to clean up the commit
4991 * message, no need to bother the user with
4992 * opening the commit message in the editor.
4994 if (!starts_with(p
, "squash ") &&
4995 !strstr(p
, "\nsquash "))
4996 flags
= (flags
& ~EDIT_MSG
) | CLEANUP_MSG
;
4997 } else if (is_fixup(peek_command(todo_list
, 0))) {
4999 * We need to update the squash message to skip
5000 * the latest commit message.
5002 struct commit
*commit
;
5003 const char *path
= rebase_path_squash_msg();
5004 const char *encoding
= get_commit_output_encoding();
5006 if (parse_head(r
, &commit
) ||
5007 !(p
= logmsg_reencode(commit
, NULL
, encoding
)) ||
5008 write_message(p
, strlen(p
), path
, 0)) {
5009 unuse_commit_buffer(commit
, p
);
5010 return error(_("could not write file: "
5013 unuse_commit_buffer(commit
, p
);
5017 strbuf_release(&rev
);
5022 if (refs_ref_exists(get_main_ref_store(r
),
5023 "CHERRY_PICK_HEAD") &&
5024 refs_delete_ref(get_main_ref_store(r
), "",
5025 "CHERRY_PICK_HEAD", NULL
, 0))
5026 return error(_("could not remove CHERRY_PICK_HEAD"));
5027 if (unlink(git_path_merge_msg(r
)) && errno
!= ENOENT
)
5028 return error_errno(_("could not remove '%s'"),
5029 git_path_merge_msg(r
));
5034 if (run_git_commit(final_fixup
? NULL
: rebase_path_message(),
5036 return error(_("could not commit staged changes."));
5037 unlink(rebase_path_amend());
5038 unlink(git_path_merge_head(r
));
5039 unlink(git_path_auto_merge(r
));
5041 unlink(rebase_path_fixup_msg());
5042 unlink(rebase_path_squash_msg());
5044 if (opts
->current_fixup_count
> 0) {
5046 * Whether final fixup or not, we just cleaned up the commit
5049 unlink(rebase_path_current_fixups());
5050 strbuf_reset(&opts
->current_fixups
);
5051 opts
->current_fixup_count
= 0;
5056 int sequencer_continue(struct repository
*r
, struct replay_opts
*opts
)
5058 struct todo_list todo_list
= TODO_LIST_INIT
;
5061 if (read_and_refresh_cache(r
, opts
))
5064 if (read_populate_opts(opts
))
5066 if (is_rebase_i(opts
)) {
5067 if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
5068 goto release_todo_list
;
5070 if (file_exists(rebase_path_dropped())) {
5071 if ((res
= todo_list_check_against_backup(r
, &todo_list
)))
5072 goto release_todo_list
;
5074 unlink(rebase_path_dropped());
5077 opts
->reflog_message
= reflog_message(opts
, "continue", NULL
);
5078 if (commit_staged_changes(r
, opts
, &todo_list
)) {
5080 goto release_todo_list
;
5082 } else if (!file_exists(get_todo_path(opts
)))
5083 return continue_single_pick(r
, opts
);
5084 else if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
5085 goto release_todo_list
;
5087 if (!is_rebase_i(opts
)) {
5088 /* Verify that the conflict has been resolved */
5089 if (refs_ref_exists(get_main_ref_store(r
),
5090 "CHERRY_PICK_HEAD") ||
5091 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
5092 res
= continue_single_pick(r
, opts
);
5094 goto release_todo_list
;
5096 if (index_differs_from(r
, "HEAD", NULL
, 0)) {
5097 res
= error_dirty_index(r
, opts
);
5098 goto release_todo_list
;
5100 todo_list
.current
++;
5101 } else if (file_exists(rebase_path_stopped_sha())) {
5102 struct strbuf buf
= STRBUF_INIT
;
5103 struct object_id oid
;
5105 if (read_oneliner(&buf
, rebase_path_stopped_sha(),
5106 READ_ONELINER_SKIP_IF_EMPTY
) &&
5107 !get_oid_hex(buf
.buf
, &oid
))
5108 record_in_rewritten(&oid
, peek_command(&todo_list
, 0));
5109 strbuf_release(&buf
);
5112 res
= pick_commits(r
, &todo_list
, opts
);
5114 todo_list_release(&todo_list
);
5118 static int single_pick(struct repository
*r
,
5119 struct commit
*cmit
,
5120 struct replay_opts
*opts
)
5123 struct todo_item item
;
5125 item
.command
= opts
->action
== REPLAY_PICK
?
5126 TODO_PICK
: TODO_REVERT
;
5129 opts
->reflog_message
= sequencer_reflog_action(opts
);
5130 return do_pick_commit(r
, &item
, opts
, 0, &check_todo
);
5133 int sequencer_pick_revisions(struct repository
*r
,
5134 struct replay_opts
*opts
)
5136 struct todo_list todo_list
= TODO_LIST_INIT
;
5137 struct object_id oid
;
5141 if (read_and_refresh_cache(r
, opts
))
5144 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
5145 struct object_id oid
;
5146 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
5148 /* This happens when using --stdin. */
5152 if (!get_oid(name
, &oid
)) {
5153 if (!lookup_commit_reference_gently(r
, &oid
, 1)) {
5154 enum object_type type
= oid_object_info(r
,
5157 return error(_("%s: can't cherry-pick a %s"),
5158 name
, type_name(type
));
5161 return error(_("%s: bad revision"), name
);
5165 * If we were called as "git cherry-pick <commit>", just
5166 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
5167 * REVERT_HEAD, and don't touch the sequencer state.
5168 * This means it is possible to cherry-pick in the middle
5169 * of a cherry-pick sequence.
5171 if (opts
->revs
->cmdline
.nr
== 1 &&
5172 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
5173 opts
->revs
->no_walk
&&
5174 !opts
->revs
->cmdline
.rev
->flags
) {
5175 struct commit
*cmit
;
5176 if (prepare_revision_walk(opts
->revs
))
5177 return error(_("revision walk setup failed"));
5178 cmit
= get_revision(opts
->revs
);
5180 return error(_("empty commit set passed"));
5181 if (get_revision(opts
->revs
))
5182 BUG("unexpected extra commit from walk");
5183 return single_pick(r
, cmit
, opts
);
5187 * Start a new cherry-pick/ revert sequence; but
5188 * first, make sure that an existing one isn't in
5192 if (walk_revs_populate_todo(&todo_list
, opts
) ||
5193 create_seq_dir(r
) < 0)
5195 if (get_oid("HEAD", &oid
) && (opts
->action
== REPLAY_REVERT
))
5196 return error(_("can't revert as initial commit"));
5197 if (save_head(oid_to_hex(&oid
)))
5199 if (save_opts(opts
))
5201 update_abort_safety_file();
5202 res
= pick_commits(r
, &todo_list
, opts
);
5203 todo_list_release(&todo_list
);
5207 void append_signoff(struct strbuf
*msgbuf
, size_t ignore_footer
, unsigned flag
)
5209 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
5210 struct strbuf sob
= STRBUF_INIT
;
5213 strbuf_addstr(&sob
, sign_off_header
);
5214 strbuf_addstr(&sob
, fmt_name(WANT_COMMITTER_IDENT
));
5215 strbuf_addch(&sob
, '\n');
5218 strbuf_complete_line(msgbuf
);
5221 * If the whole message buffer is equal to the sob, pretend that we
5222 * found a conforming footer with a matching sob
5224 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
5225 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
5228 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
5231 const char *append_newlines
= NULL
;
5232 size_t len
= msgbuf
->len
- ignore_footer
;
5236 * The buffer is completely empty. Leave foom for
5237 * the title and body to be filled in by the user.
5239 append_newlines
= "\n\n";
5240 } else if (len
== 1) {
5242 * Buffer contains a single newline. Add another
5243 * so that we leave room for the title and body.
5245 append_newlines
= "\n";
5246 } else if (msgbuf
->buf
[len
- 2] != '\n') {
5248 * Buffer ends with a single newline. Add another
5249 * so that there is an empty line between the message
5252 append_newlines
= "\n";
5253 } /* else, the buffer already ends with two newlines. */
5255 if (append_newlines
)
5256 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
5257 append_newlines
, strlen(append_newlines
));
5260 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
5261 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
5264 strbuf_release(&sob
);
5267 struct labels_entry
{
5268 struct hashmap_entry entry
;
5269 char label
[FLEX_ARRAY
];
5272 static int labels_cmp(const void *fndata UNUSED
,
5273 const struct hashmap_entry
*eptr
,
5274 const struct hashmap_entry
*entry_or_key
, const void *key
)
5276 const struct labels_entry
*a
, *b
;
5278 a
= container_of(eptr
, const struct labels_entry
, entry
);
5279 b
= container_of(entry_or_key
, const struct labels_entry
, entry
);
5281 return key
? strcmp(a
->label
, key
) : strcmp(a
->label
, b
->label
);
5284 struct string_entry
{
5285 struct oidmap_entry entry
;
5286 char string
[FLEX_ARRAY
];
5289 struct label_state
{
5290 struct oidmap commit2label
;
5291 struct hashmap labels
;
5295 static const char *label_oid(struct object_id
*oid
, const char *label
,
5296 struct label_state
*state
)
5298 struct labels_entry
*labels_entry
;
5299 struct string_entry
*string_entry
;
5300 struct object_id dummy
;
5303 string_entry
= oidmap_get(&state
->commit2label
, oid
);
5305 return string_entry
->string
;
5308 * For "uninteresting" commits, i.e. commits that are not to be
5309 * rebased, and which can therefore not be labeled, we use a unique
5310 * abbreviation of the commit name. This is slightly more complicated
5311 * than calling find_unique_abbrev() because we also need to make
5312 * sure that the abbreviation does not conflict with any other
5315 * We disallow "interesting" commits to be labeled by a string that
5316 * is a valid full-length hash, to ensure that we always can find an
5317 * abbreviation for any uninteresting commit's names that does not
5318 * clash with any other label.
5320 strbuf_reset(&state
->buf
);
5324 strbuf_grow(&state
->buf
, GIT_MAX_HEXSZ
);
5325 label
= p
= state
->buf
.buf
;
5327 find_unique_abbrev_r(p
, oid
, default_abbrev
);
5330 * We may need to extend the abbreviated hash so that there is
5331 * no conflicting label.
5333 if (hashmap_get_from_hash(&state
->labels
, strihash(p
), p
)) {
5334 size_t i
= strlen(p
) + 1;
5336 oid_to_hex_r(p
, oid
);
5337 for (; i
< the_hash_algo
->hexsz
; i
++) {
5340 if (!hashmap_get_from_hash(&state
->labels
,
5347 struct strbuf
*buf
= &state
->buf
;
5350 * Sanitize labels by replacing non-alpha-numeric characters
5351 * (including white-space ones) by dashes, as they might be
5352 * illegal in file names (and hence in ref names).
5354 * Note that we retain non-ASCII UTF-8 characters (identified
5355 * via the most significant bit). They should be all acceptable
5356 * in file names. We do not validate the UTF-8 here, that's not
5357 * the job of this function.
5359 for (; *label
; label
++)
5360 if ((*label
& 0x80) || isalnum(*label
))
5361 strbuf_addch(buf
, *label
);
5362 /* avoid leading dash and double-dashes */
5363 else if (buf
->len
&& buf
->buf
[buf
->len
- 1] != '-')
5364 strbuf_addch(buf
, '-');
5366 strbuf_addstr(buf
, "rev-");
5367 strbuf_add_unique_abbrev(buf
, oid
, default_abbrev
);
5371 if ((buf
->len
== the_hash_algo
->hexsz
&&
5372 !get_oid_hex(label
, &dummy
)) ||
5373 (buf
->len
== 1 && *label
== '#') ||
5374 hashmap_get_from_hash(&state
->labels
,
5375 strihash(label
), label
)) {
5377 * If the label already exists, or if the label is a
5378 * valid full OID, or the label is a '#' (which we use
5379 * as a separator between merge heads and oneline), we
5380 * append a dash and a number to make it unique.
5382 size_t len
= buf
->len
;
5384 for (i
= 2; ; i
++) {
5385 strbuf_setlen(buf
, len
);
5386 strbuf_addf(buf
, "-%d", i
);
5387 if (!hashmap_get_from_hash(&state
->labels
,
5397 FLEX_ALLOC_STR(labels_entry
, label
, label
);
5398 hashmap_entry_init(&labels_entry
->entry
, strihash(label
));
5399 hashmap_add(&state
->labels
, &labels_entry
->entry
);
5401 FLEX_ALLOC_STR(string_entry
, string
, label
);
5402 oidcpy(&string_entry
->entry
.oid
, oid
);
5403 oidmap_put(&state
->commit2label
, string_entry
);
5405 return string_entry
->string
;
5408 static int make_script_with_merges(struct pretty_print_context
*pp
,
5409 struct rev_info
*revs
, struct strbuf
*out
,
5412 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5413 int rebase_cousins
= flags
& TODO_LIST_REBASE_COUSINS
;
5414 int root_with_onto
= flags
& TODO_LIST_ROOT_WITH_ONTO
;
5415 int skipped_commit
= 0;
5416 struct strbuf buf
= STRBUF_INIT
, oneline
= STRBUF_INIT
;
5417 struct strbuf label
= STRBUF_INIT
;
5418 struct commit_list
*commits
= NULL
, **tail
= &commits
, *iter
;
5419 struct commit_list
*tips
= NULL
, **tips_tail
= &tips
;
5420 struct commit
*commit
;
5421 struct oidmap commit2todo
= OIDMAP_INIT
;
5422 struct string_entry
*entry
;
5423 struct oidset interesting
= OIDSET_INIT
, child_seen
= OIDSET_INIT
,
5424 shown
= OIDSET_INIT
;
5425 struct label_state state
= { OIDMAP_INIT
, { NULL
}, STRBUF_INIT
};
5427 int abbr
= flags
& TODO_LIST_ABBREVIATE_CMDS
;
5428 const char *cmd_pick
= abbr
? "p" : "pick",
5429 *cmd_label
= abbr
? "l" : "label",
5430 *cmd_reset
= abbr
? "t" : "reset",
5431 *cmd_merge
= abbr
? "m" : "merge";
5433 oidmap_init(&commit2todo
, 0);
5434 oidmap_init(&state
.commit2label
, 0);
5435 hashmap_init(&state
.labels
, labels_cmp
, NULL
, 0);
5436 strbuf_init(&state
.buf
, 32);
5438 if (revs
->cmdline
.nr
&& (revs
->cmdline
.rev
[0].flags
& BOTTOM
)) {
5439 struct labels_entry
*onto_label_entry
;
5440 struct object_id
*oid
= &revs
->cmdline
.rev
[0].item
->oid
;
5441 FLEX_ALLOC_STR(entry
, string
, "onto");
5442 oidcpy(&entry
->entry
.oid
, oid
);
5443 oidmap_put(&state
.commit2label
, entry
);
5445 FLEX_ALLOC_STR(onto_label_entry
, label
, "onto");
5446 hashmap_entry_init(&onto_label_entry
->entry
, strihash("onto"));
5447 hashmap_add(&state
.labels
, &onto_label_entry
->entry
);
5452 * - get onelines for all commits
5453 * - gather all branch tips (i.e. 2nd or later parents of merges)
5454 * - label all branch tips
5456 while ((commit
= get_revision(revs
))) {
5457 struct commit_list
*to_merge
;
5458 const char *p1
, *p2
;
5459 struct object_id
*oid
;
5462 tail
= &commit_list_insert(commit
, tail
)->next
;
5463 oidset_insert(&interesting
, &commit
->object
.oid
);
5465 is_empty
= is_original_commit_empty(commit
);
5466 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
)) {
5467 if (flags
& TODO_LIST_WARN_SKIPPED_CHERRY_PICKS
)
5468 warning(_("skipped previously applied commit %s"),
5469 short_commit_name(commit
));
5473 if (is_empty
&& !keep_empty
)
5476 strbuf_reset(&oneline
);
5477 pretty_print_commit(pp
, commit
, &oneline
);
5479 to_merge
= commit
->parents
? commit
->parents
->next
: NULL
;
5481 /* non-merge commit: easy case */
5483 strbuf_addf(&buf
, "%s %s %s", cmd_pick
,
5484 oid_to_hex(&commit
->object
.oid
),
5487 strbuf_addf(&buf
, " %c empty",
5490 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5491 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5492 oidmap_put(&commit2todo
, entry
);
5497 /* Create a label */
5498 strbuf_reset(&label
);
5499 if (skip_prefix(oneline
.buf
, "Merge ", &p1
) &&
5500 (p1
= strchr(p1
, '\'')) &&
5501 (p2
= strchr(++p1
, '\'')))
5502 strbuf_add(&label
, p1
, p2
- p1
);
5503 else if (skip_prefix(oneline
.buf
, "Merge pull request ",
5505 (p1
= strstr(p1
, " from ")))
5506 strbuf_addstr(&label
, p1
+ strlen(" from "));
5508 strbuf_addbuf(&label
, &oneline
);
5511 strbuf_addf(&buf
, "%s -C %s",
5512 cmd_merge
, oid_to_hex(&commit
->object
.oid
));
5514 /* label the tips of merged branches */
5515 for (; to_merge
; to_merge
= to_merge
->next
) {
5516 oid
= &to_merge
->item
->object
.oid
;
5517 strbuf_addch(&buf
, ' ');
5519 if (!oidset_contains(&interesting
, oid
)) {
5520 strbuf_addstr(&buf
, label_oid(oid
, NULL
,
5525 tips_tail
= &commit_list_insert(to_merge
->item
,
5528 strbuf_addstr(&buf
, label_oid(oid
, label
.buf
, &state
));
5530 strbuf_addf(&buf
, " # %s", oneline
.buf
);
5532 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5533 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5534 oidmap_put(&commit2todo
, entry
);
5537 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS
,
5538 _("use --reapply-cherry-picks to include skipped commits"));
5542 * - label branch points
5543 * - add HEAD to the branch tips
5545 for (iter
= commits
; iter
; iter
= iter
->next
) {
5546 struct commit_list
*parent
= iter
->item
->parents
;
5547 for (; parent
; parent
= parent
->next
) {
5548 struct object_id
*oid
= &parent
->item
->object
.oid
;
5549 if (!oidset_contains(&interesting
, oid
))
5551 if (oidset_insert(&child_seen
, oid
))
5552 label_oid(oid
, "branch-point", &state
);
5555 /* Add HEAD as implicit "tip of branch" */
5557 tips_tail
= &commit_list_insert(iter
->item
,
5562 * Third phase: output the todo list. This is a bit tricky, as we
5563 * want to avoid jumping back and forth between revisions. To
5564 * accomplish that goal, we walk backwards from the branch tips,
5565 * gathering commits not yet shown, reversing the list on the fly,
5566 * then outputting that list (labeling revisions as needed).
5568 strbuf_addf(out
, "%s onto\n", cmd_label
);
5569 for (iter
= tips
; iter
; iter
= iter
->next
) {
5570 struct commit_list
*list
= NULL
, *iter2
;
5572 commit
= iter
->item
;
5573 if (oidset_contains(&shown
, &commit
->object
.oid
))
5575 entry
= oidmap_get(&state
.commit2label
, &commit
->object
.oid
);
5578 strbuf_addf(out
, "\n%c Branch %s\n", comment_line_char
, entry
->string
);
5580 strbuf_addch(out
, '\n');
5582 while (oidset_contains(&interesting
, &commit
->object
.oid
) &&
5583 !oidset_contains(&shown
, &commit
->object
.oid
)) {
5584 commit_list_insert(commit
, &list
);
5585 if (!commit
->parents
) {
5589 commit
= commit
->parents
->item
;
5593 strbuf_addf(out
, "%s %s\n", cmd_reset
,
5594 rebase_cousins
|| root_with_onto
?
5595 "onto" : "[new root]");
5597 const char *to
= NULL
;
5599 entry
= oidmap_get(&state
.commit2label
,
5600 &commit
->object
.oid
);
5603 else if (!rebase_cousins
)
5604 to
= label_oid(&commit
->object
.oid
, NULL
,
5607 if (!to
|| !strcmp(to
, "onto"))
5608 strbuf_addf(out
, "%s onto\n", cmd_reset
);
5610 strbuf_reset(&oneline
);
5611 pretty_print_commit(pp
, commit
, &oneline
);
5612 strbuf_addf(out
, "%s %s # %s\n",
5613 cmd_reset
, to
, oneline
.buf
);
5617 for (iter2
= list
; iter2
; iter2
= iter2
->next
) {
5618 struct object_id
*oid
= &iter2
->item
->object
.oid
;
5619 entry
= oidmap_get(&commit2todo
, oid
);
5620 /* only show if not already upstream */
5622 strbuf_addf(out
, "%s\n", entry
->string
);
5623 entry
= oidmap_get(&state
.commit2label
, oid
);
5625 strbuf_addf(out
, "%s %s\n",
5626 cmd_label
, entry
->string
);
5627 oidset_insert(&shown
, oid
);
5630 free_commit_list(list
);
5633 free_commit_list(commits
);
5634 free_commit_list(tips
);
5636 strbuf_release(&label
);
5637 strbuf_release(&oneline
);
5638 strbuf_release(&buf
);
5640 oidmap_free(&commit2todo
, 1);
5641 oidmap_free(&state
.commit2label
, 1);
5642 hashmap_clear_and_free(&state
.labels
, struct labels_entry
, entry
);
5643 strbuf_release(&state
.buf
);
5648 int sequencer_make_script(struct repository
*r
, struct strbuf
*out
, int argc
,
5649 const char **argv
, unsigned flags
)
5651 char *format
= NULL
;
5652 struct pretty_print_context pp
= {0};
5653 struct rev_info revs
;
5654 struct commit
*commit
;
5655 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5656 const char *insn
= flags
& TODO_LIST_ABBREVIATE_CMDS
? "p" : "pick";
5657 int rebase_merges
= flags
& TODO_LIST_REBASE_MERGES
;
5658 int reapply_cherry_picks
= flags
& TODO_LIST_REAPPLY_CHERRY_PICKS
;
5659 int skipped_commit
= 0;
5662 repo_init_revisions(r
, &revs
, NULL
);
5663 revs
.verbose_header
= 1;
5665 revs
.max_parents
= 1;
5666 revs
.cherry_mark
= !reapply_cherry_picks
;
5669 revs
.right_only
= 1;
5670 revs
.sort_order
= REV_SORT_IN_GRAPH_ORDER
;
5671 revs
.topo_order
= 1;
5673 revs
.pretty_given
= 1;
5674 git_config_get_string("rebase.instructionFormat", &format
);
5675 if (!format
|| !*format
) {
5677 format
= xstrdup("%s");
5679 get_commit_format(format
, &revs
);
5681 pp
.fmt
= revs
.commit_format
;
5682 pp
.output_encoding
= get_log_output_encoding();
5684 if (setup_revisions(argc
, argv
, &revs
, NULL
) > 1) {
5685 ret
= error(_("make_script: unhandled options"));
5689 if (prepare_revision_walk(&revs
) < 0) {
5690 ret
= error(_("make_script: error preparing revisions"));
5694 if (rebase_merges
) {
5695 ret
= make_script_with_merges(&pp
, &revs
, out
, flags
);
5699 while ((commit
= get_revision(&revs
))) {
5700 int is_empty
= is_original_commit_empty(commit
);
5702 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
)) {
5703 if (flags
& TODO_LIST_WARN_SKIPPED_CHERRY_PICKS
)
5704 warning(_("skipped previously applied commit %s"),
5705 short_commit_name(commit
));
5709 if (is_empty
&& !keep_empty
)
5711 strbuf_addf(out
, "%s %s ", insn
,
5712 oid_to_hex(&commit
->object
.oid
));
5713 pretty_print_commit(&pp
, commit
, out
);
5715 strbuf_addf(out
, " %c empty", comment_line_char
);
5716 strbuf_addch(out
, '\n');
5719 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS
,
5720 _("use --reapply-cherry-picks to include skipped commits"));
5722 release_revisions(&revs
);
5727 * Add commands after pick and (series of) squash/fixup commands
5730 static void todo_list_add_exec_commands(struct todo_list
*todo_list
,
5731 struct string_list
*commands
)
5733 struct strbuf
*buf
= &todo_list
->buf
;
5734 size_t base_offset
= buf
->len
;
5735 int i
, insert
, nr
= 0, alloc
= 0;
5736 struct todo_item
*items
= NULL
, *base_items
= NULL
;
5738 CALLOC_ARRAY(base_items
, commands
->nr
);
5739 for (i
= 0; i
< commands
->nr
; i
++) {
5740 size_t command_len
= strlen(commands
->items
[i
].string
);
5742 strbuf_addstr(buf
, commands
->items
[i
].string
);
5743 strbuf_addch(buf
, '\n');
5745 base_items
[i
].command
= TODO_EXEC
;
5746 base_items
[i
].offset_in_buf
= base_offset
;
5747 base_items
[i
].arg_offset
= base_offset
+ strlen("exec ");
5748 base_items
[i
].arg_len
= command_len
- strlen("exec ");
5750 base_offset
+= command_len
+ 1;
5754 * Insert <commands> after every pick. Here, fixup/squash chains
5755 * are considered part of the pick, so we insert the commands *after*
5756 * those chains if there are any.
5758 * As we insert the exec commands immediately after rearranging
5759 * any fixups and before the user edits the list, a fixup chain
5760 * can never contain comments (any comments are empty picks that
5761 * have been commented out because the user did not specify
5762 * --keep-empty). So, it is safe to insert an exec command
5763 * without looking at the command following a comment.
5766 for (i
= 0; i
< todo_list
->nr
; i
++) {
5767 enum todo_command command
= todo_list
->items
[i
].command
;
5768 if (insert
&& !is_fixup(command
)) {
5769 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5770 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5776 ALLOC_GROW(items
, nr
+ 1, alloc
);
5777 items
[nr
++] = todo_list
->items
[i
];
5779 if (command
== TODO_PICK
|| command
== TODO_MERGE
)
5783 /* insert or append final <commands> */
5785 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5786 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5791 FREE_AND_NULL(todo_list
->items
);
5792 todo_list
->items
= items
;
5794 todo_list
->alloc
= alloc
;
5797 static void todo_list_to_strbuf(struct repository
*r
, struct todo_list
*todo_list
,
5798 struct strbuf
*buf
, int num
, unsigned flags
)
5800 struct todo_item
*item
;
5801 int i
, max
= todo_list
->nr
;
5803 if (num
> 0 && num
< max
)
5806 for (item
= todo_list
->items
, i
= 0; i
< max
; i
++, item
++) {
5809 /* if the item is not a command write it and continue */
5810 if (item
->command
>= TODO_COMMENT
) {
5811 strbuf_addf(buf
, "%.*s\n", item
->arg_len
,
5812 todo_item_get_arg(todo_list
, item
));
5816 /* add command to the buffer */
5817 cmd
= command_to_char(item
->command
);
5818 if ((flags
& TODO_LIST_ABBREVIATE_CMDS
) && cmd
)
5819 strbuf_addch(buf
, cmd
);
5821 strbuf_addstr(buf
, command_to_string(item
->command
));
5825 const char *oid
= flags
& TODO_LIST_SHORTEN_IDS
?
5826 short_commit_name(item
->commit
) :
5827 oid_to_hex(&item
->commit
->object
.oid
);
5829 if (item
->command
== TODO_FIXUP
) {
5830 if (item
->flags
& TODO_EDIT_FIXUP_MSG
)
5831 strbuf_addstr(buf
, " -c");
5832 else if (item
->flags
& TODO_REPLACE_FIXUP_MSG
) {
5833 strbuf_addstr(buf
, " -C");
5837 if (item
->command
== TODO_MERGE
) {
5838 if (item
->flags
& TODO_EDIT_MERGE_MSG
)
5839 strbuf_addstr(buf
, " -c");
5841 strbuf_addstr(buf
, " -C");
5844 strbuf_addf(buf
, " %s", oid
);
5847 /* add all the rest */
5849 strbuf_addch(buf
, '\n');
5851 strbuf_addf(buf
, " %.*s\n", item
->arg_len
,
5852 todo_item_get_arg(todo_list
, item
));
5856 int todo_list_write_to_file(struct repository
*r
, struct todo_list
*todo_list
,
5857 const char *file
, const char *shortrevisions
,
5858 const char *shortonto
, int num
, unsigned flags
)
5861 struct strbuf buf
= STRBUF_INIT
;
5863 todo_list_to_strbuf(r
, todo_list
, &buf
, num
, flags
);
5864 if (flags
& TODO_LIST_APPEND_TODO_HELP
)
5865 append_todo_help(count_commands(todo_list
),
5866 shortrevisions
, shortonto
, &buf
);
5868 res
= write_message(buf
.buf
, buf
.len
, file
, 0);
5869 strbuf_release(&buf
);
5874 /* skip picking commits whose parents are unchanged */
5875 static int skip_unnecessary_picks(struct repository
*r
,
5876 struct todo_list
*todo_list
,
5877 struct object_id
*base_oid
)
5879 struct object_id
*parent_oid
;
5882 for (i
= 0; i
< todo_list
->nr
; i
++) {
5883 struct todo_item
*item
= todo_list
->items
+ i
;
5885 if (item
->command
>= TODO_NOOP
)
5887 if (item
->command
!= TODO_PICK
)
5889 if (parse_commit(item
->commit
)) {
5890 return error(_("could not parse commit '%s'"),
5891 oid_to_hex(&item
->commit
->object
.oid
));
5893 if (!item
->commit
->parents
)
5894 break; /* root commit */
5895 if (item
->commit
->parents
->next
)
5896 break; /* merge commit */
5897 parent_oid
= &item
->commit
->parents
->item
->object
.oid
;
5898 if (!oideq(parent_oid
, base_oid
))
5900 oidcpy(base_oid
, &item
->commit
->object
.oid
);
5903 const char *done_path
= rebase_path_done();
5905 if (todo_list_write_to_file(r
, todo_list
, done_path
, NULL
, NULL
, i
, 0)) {
5906 error_errno(_("could not write to '%s'"), done_path
);
5910 MOVE_ARRAY(todo_list
->items
, todo_list
->items
+ i
, todo_list
->nr
- i
);
5912 todo_list
->current
= 0;
5913 todo_list
->done_nr
+= i
;
5915 if (is_fixup(peek_command(todo_list
, 0)))
5916 record_in_rewritten(base_oid
, peek_command(todo_list
, 0));
5922 struct todo_add_branch_context
{
5923 struct todo_item
*items
;
5927 struct commit
*commit
;
5928 struct string_list refs_to_oids
;
5931 static int add_decorations_to_list(const struct commit
*commit
,
5932 struct todo_add_branch_context
*ctx
)
5934 const struct name_decoration
*decoration
= get_name_decoration(&commit
->object
);
5935 const char *head_ref
= resolve_ref_unsafe("HEAD",
5936 RESOLVE_REF_READING
,
5940 while (decoration
) {
5941 struct todo_item
*item
;
5943 size_t base_offset
= ctx
->buf
->len
;
5946 * If the branch is the current HEAD, then it will be
5947 * updated by the default rebase behavior.
5949 if (head_ref
&& !strcmp(head_ref
, decoration
->name
)) {
5950 decoration
= decoration
->next
;
5954 ALLOC_GROW(ctx
->items
,
5957 item
= &ctx
->items
[ctx
->items_nr
];
5958 memset(item
, 0, sizeof(*item
));
5960 /* If the branch is checked out, then leave a comment instead. */
5961 if ((path
= branch_checked_out(decoration
->name
))) {
5962 item
->command
= TODO_COMMENT
;
5963 strbuf_addf(ctx
->buf
, "# Ref %s checked out at '%s'\n",
5964 decoration
->name
, path
);
5966 struct string_list_item
*sti
;
5967 item
->command
= TODO_UPDATE_REF
;
5968 strbuf_addf(ctx
->buf
, "%s\n", decoration
->name
);
5970 sti
= string_list_insert(&ctx
->refs_to_oids
,
5972 sti
->util
= init_update_ref_record(decoration
->name
);
5975 item
->offset_in_buf
= base_offset
;
5976 item
->arg_offset
= base_offset
;
5977 item
->arg_len
= ctx
->buf
->len
- base_offset
;
5980 decoration
= decoration
->next
;
5987 * For each 'pick' command, find out if the commit has a decoration in
5988 * refs/heads/. If so, then add a 'label for-update-refs/' command.
5990 static int todo_list_add_update_ref_commands(struct todo_list
*todo_list
)
5993 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
5994 static struct string_list decorate_refs_exclude_config
= STRING_LIST_INIT_NODUP
;
5995 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
5996 struct decoration_filter decoration_filter
= {
5997 .include_ref_pattern
= &decorate_refs_include
,
5998 .exclude_ref_pattern
= &decorate_refs_exclude
,
5999 .exclude_ref_config_pattern
= &decorate_refs_exclude_config
,
6001 struct todo_add_branch_context ctx
= {
6002 .buf
= &todo_list
->buf
,
6003 .refs_to_oids
= STRING_LIST_INIT_DUP
,
6006 ctx
.items_alloc
= 2 * todo_list
->nr
+ 1;
6007 ALLOC_ARRAY(ctx
.items
, ctx
.items_alloc
);
6009 string_list_append(&decorate_refs_include
, "refs/heads/");
6010 load_ref_decorations(&decoration_filter
, 0);
6012 for (i
= 0; i
< todo_list
->nr
; ) {
6013 struct todo_item
*item
= &todo_list
->items
[i
];
6015 /* insert ith item into new list */
6016 ALLOC_GROW(ctx
.items
,
6020 ctx
.items
[ctx
.items_nr
++] = todo_list
->items
[i
++];
6023 ctx
.commit
= item
->commit
;
6024 add_decorations_to_list(item
->commit
, &ctx
);
6028 res
= write_update_refs_state(&ctx
.refs_to_oids
);
6030 string_list_clear(&ctx
.refs_to_oids
, 1);
6033 /* we failed, so clean up the new list. */
6038 free(todo_list
->items
);
6039 todo_list
->items
= ctx
.items
;
6040 todo_list
->nr
= ctx
.items_nr
;
6041 todo_list
->alloc
= ctx
.items_alloc
;
6046 int complete_action(struct repository
*r
, struct replay_opts
*opts
, unsigned flags
,
6047 const char *shortrevisions
, const char *onto_name
,
6048 struct commit
*onto
, const struct object_id
*orig_head
,
6049 struct string_list
*commands
, unsigned autosquash
,
6050 unsigned update_refs
,
6051 struct todo_list
*todo_list
)
6053 char shortonto
[GIT_MAX_HEXSZ
+ 1];
6054 const char *todo_file
= rebase_path_todo();
6055 struct todo_list new_todo
= TODO_LIST_INIT
;
6056 struct strbuf
*buf
= &todo_list
->buf
, buf2
= STRBUF_INIT
;
6057 struct object_id oid
= onto
->object
.oid
;
6060 find_unique_abbrev_r(shortonto
, &oid
, DEFAULT_ABBREV
);
6062 if (buf
->len
== 0) {
6063 struct todo_item
*item
= append_new_todo(todo_list
);
6064 item
->command
= TODO_NOOP
;
6065 item
->commit
= NULL
;
6066 item
->arg_len
= item
->arg_offset
= item
->flags
= item
->offset_in_buf
= 0;
6069 if (update_refs
&& todo_list_add_update_ref_commands(todo_list
))
6072 if (autosquash
&& todo_list_rearrange_squash(todo_list
))
6076 todo_list_add_exec_commands(todo_list
, commands
);
6078 if (count_commands(todo_list
) == 0) {
6079 apply_autostash(rebase_path_autostash());
6080 sequencer_remove_state(opts
);
6082 return error(_("nothing to do"));
6085 res
= edit_todo_list(r
, todo_list
, &new_todo
, shortrevisions
,
6089 else if (res
== -2) {
6090 apply_autostash(rebase_path_autostash());
6091 sequencer_remove_state(opts
);
6094 } else if (res
== -3) {
6095 apply_autostash(rebase_path_autostash());
6096 sequencer_remove_state(opts
);
6097 todo_list_release(&new_todo
);
6099 return error(_("nothing to do"));
6100 } else if (res
== -4) {
6101 checkout_onto(r
, opts
, onto_name
, &onto
->object
.oid
, orig_head
);
6102 todo_list_release(&new_todo
);
6107 /* Expand the commit IDs */
6108 todo_list_to_strbuf(r
, &new_todo
, &buf2
, -1, 0);
6109 strbuf_swap(&new_todo
.buf
, &buf2
);
6110 strbuf_release(&buf2
);
6111 new_todo
.total_nr
-= new_todo
.nr
;
6112 if (todo_list_parse_insn_buffer(r
, new_todo
.buf
.buf
, &new_todo
) < 0)
6113 BUG("invalid todo list after expanding IDs:\n%s",
6116 if (opts
->allow_ff
&& skip_unnecessary_picks(r
, &new_todo
, &oid
)) {
6117 todo_list_release(&new_todo
);
6118 return error(_("could not skip unnecessary pick commands"));
6121 if (todo_list_write_to_file(r
, &new_todo
, todo_file
, NULL
, NULL
, -1,
6122 flags
& ~(TODO_LIST_SHORTEN_IDS
))) {
6123 todo_list_release(&new_todo
);
6124 return error_errno(_("could not write '%s'"), todo_file
);
6129 if (checkout_onto(r
, opts
, onto_name
, &oid
, orig_head
))
6132 if (require_clean_work_tree(r
, "rebase", "", 1, 1))
6135 todo_list_write_total_nr(&new_todo
);
6136 res
= pick_commits(r
, &new_todo
, opts
);
6139 todo_list_release(&new_todo
);
6144 struct subject2item_entry
{
6145 struct hashmap_entry entry
;
6147 char subject
[FLEX_ARRAY
];
6150 static int subject2item_cmp(const void *fndata UNUSED
,
6151 const struct hashmap_entry
*eptr
,
6152 const struct hashmap_entry
*entry_or_key
,
6155 const struct subject2item_entry
*a
, *b
;
6157 a
= container_of(eptr
, const struct subject2item_entry
, entry
);
6158 b
= container_of(entry_or_key
, const struct subject2item_entry
, entry
);
6160 return key
? strcmp(a
->subject
, key
) : strcmp(a
->subject
, b
->subject
);
6163 define_commit_slab(commit_todo_item
, struct todo_item
*);
6165 static int skip_fixupish(const char *subject
, const char **p
) {
6166 return skip_prefix(subject
, "fixup! ", p
) ||
6167 skip_prefix(subject
, "amend! ", p
) ||
6168 skip_prefix(subject
, "squash! ", p
);
6172 * Rearrange the todo list that has both "pick commit-id msg" and "pick
6173 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
6174 * after the former, and change "pick" to "fixup"/"squash".
6176 * Note that if the config has specified a custom instruction format, each log
6177 * message will have to be retrieved from the commit (as the oneline in the
6178 * script cannot be trusted) in order to normalize the autosquash arrangement.
6180 int todo_list_rearrange_squash(struct todo_list
*todo_list
)
6182 struct hashmap subject2item
;
6183 int rearranged
= 0, *next
, *tail
, i
, nr
= 0, alloc
= 0;
6185 struct commit_todo_item commit_todo
;
6186 struct todo_item
*items
= NULL
;
6188 init_commit_todo_item(&commit_todo
);
6190 * The hashmap maps onelines to the respective todo list index.
6192 * If any items need to be rearranged, the next[i] value will indicate
6193 * which item was moved directly after the i'th.
6195 * In that case, last[i] will indicate the index of the latest item to
6196 * be moved to appear after the i'th.
6198 hashmap_init(&subject2item
, subject2item_cmp
, NULL
, todo_list
->nr
);
6199 ALLOC_ARRAY(next
, todo_list
->nr
);
6200 ALLOC_ARRAY(tail
, todo_list
->nr
);
6201 ALLOC_ARRAY(subjects
, todo_list
->nr
);
6202 for (i
= 0; i
< todo_list
->nr
; i
++) {
6203 struct strbuf buf
= STRBUF_INIT
;
6204 struct todo_item
*item
= todo_list
->items
+ i
;
6205 const char *commit_buffer
, *subject
, *p
;
6208 struct subject2item_entry
*entry
;
6210 next
[i
] = tail
[i
] = -1;
6211 if (!item
->commit
|| item
->command
== TODO_DROP
) {
6216 if (is_fixup(item
->command
)) {
6217 clear_commit_todo_item(&commit_todo
);
6218 return error(_("the script was already rearranged."));
6221 parse_commit(item
->commit
);
6222 commit_buffer
= logmsg_reencode(item
->commit
, NULL
, "UTF-8");
6223 find_commit_subject(commit_buffer
, &subject
);
6224 format_subject(&buf
, subject
, " ");
6225 subject
= subjects
[i
] = strbuf_detach(&buf
, &subject_len
);
6226 unuse_commit_buffer(item
->commit
, commit_buffer
);
6227 if (skip_fixupish(subject
, &p
)) {
6228 struct commit
*commit2
;
6233 if (!skip_fixupish(p
, &p
))
6237 entry
= hashmap_get_entry_from_hash(&subject2item
,
6239 struct subject2item_entry
,
6242 /* found by title */
6244 else if (!strchr(p
, ' ') &&
6246 lookup_commit_reference_by_name(p
)) &&
6247 *commit_todo_item_at(&commit_todo
, commit2
))
6248 /* found by commit name */
6249 i2
= *commit_todo_item_at(&commit_todo
, commit2
)
6252 /* copy can be a prefix of the commit subject */
6253 for (i2
= 0; i2
< i
; i2
++)
6255 starts_with(subjects
[i2
], p
))
6263 if (starts_with(subject
, "fixup!")) {
6264 todo_list
->items
[i
].command
= TODO_FIXUP
;
6265 } else if (starts_with(subject
, "amend!")) {
6266 todo_list
->items
[i
].command
= TODO_FIXUP
;
6267 todo_list
->items
[i
].flags
= TODO_REPLACE_FIXUP_MSG
;
6269 todo_list
->items
[i
].command
= TODO_SQUASH
;
6275 next
[i
] = next
[tail
[i2
]];
6279 } else if (!hashmap_get_from_hash(&subject2item
,
6280 strhash(subject
), subject
)) {
6281 FLEX_ALLOC_MEM(entry
, subject
, subject
, subject_len
);
6283 hashmap_entry_init(&entry
->entry
,
6284 strhash(entry
->subject
));
6285 hashmap_put(&subject2item
, &entry
->entry
);
6288 *commit_todo_item_at(&commit_todo
, item
->commit
) = item
;
6292 for (i
= 0; i
< todo_list
->nr
; i
++) {
6293 enum todo_command command
= todo_list
->items
[i
].command
;
6297 * Initially, all commands are 'pick's. If it is a
6298 * fixup or a squash now, we have rearranged it.
6300 if (is_fixup(command
))
6304 ALLOC_GROW(items
, nr
+ 1, alloc
);
6305 items
[nr
++] = todo_list
->items
[cur
];
6310 FREE_AND_NULL(todo_list
->items
);
6311 todo_list
->items
= items
;
6313 todo_list
->alloc
= alloc
;
6318 for (i
= 0; i
< todo_list
->nr
; i
++)
6321 hashmap_clear_and_free(&subject2item
, struct subject2item_entry
, entry
);
6323 clear_commit_todo_item(&commit_todo
);
6328 int sequencer_determine_whence(struct repository
*r
, enum commit_whence
*whence
)
6330 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
6331 struct object_id cherry_pick_head
, rebase_head
;
6333 if (file_exists(git_path_seq_dir()))
6334 *whence
= FROM_CHERRY_PICK_MULTI
;
6335 if (file_exists(rebase_path()) &&
6336 !get_oid("REBASE_HEAD", &rebase_head
) &&
6337 !get_oid("CHERRY_PICK_HEAD", &cherry_pick_head
) &&
6338 oideq(&rebase_head
, &cherry_pick_head
))
6339 *whence
= FROM_REBASE_PICK
;
6341 *whence
= FROM_CHERRY_PICK_SINGLE
;
6349 int sequencer_get_update_refs_state(const char *wt_dir
,
6350 struct string_list
*refs
)
6354 struct strbuf ref
= STRBUF_INIT
;
6355 struct strbuf hash
= STRBUF_INIT
;
6356 struct update_ref_record
*rec
= NULL
;
6358 char *path
= rebase_path_update_refs(wt_dir
);
6360 fp
= fopen(path
, "r");
6364 while (strbuf_getline(&ref
, fp
) != EOF
) {
6365 struct string_list_item
*item
;
6367 CALLOC_ARRAY(rec
, 1);
6369 if (strbuf_getline(&hash
, fp
) == EOF
||
6370 get_oid_hex(hash
.buf
, &rec
->before
)) {
6371 warning(_("update-refs file at '%s' is invalid"),
6377 if (strbuf_getline(&hash
, fp
) == EOF
||
6378 get_oid_hex(hash
.buf
, &rec
->after
)) {
6379 warning(_("update-refs file at '%s' is invalid"),
6385 item
= string_list_insert(refs
, ref
.buf
);
6395 strbuf_release(&ref
);
6396 strbuf_release(&hash
);