6 #include "environment.h"
11 #include "object-file.h"
12 #include "object-name.h"
13 #include "object-store.h"
17 #include "sequencer.h"
19 #include "run-command.h"
23 #include "cache-tree.h"
27 #include "merge-ort.h"
28 #include "merge-ort-wrappers.h"
34 #include "wt-status.h"
36 #include "notes-utils.h"
38 #include "unpack-trees.h"
42 #include "commit-slab.h"
44 #include "commit-reach.h"
45 #include "rebase-interactive.h"
50 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
52 static const char sign_off_header
[] = "Signed-off-by: ";
53 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
55 GIT_PATH_FUNC(git_path_commit_editmsg
, "COMMIT_EDITMSG")
57 static GIT_PATH_FUNC(git_path_seq_dir
, "sequencer")
59 static GIT_PATH_FUNC(git_path_todo_file
, "sequencer/todo")
60 static GIT_PATH_FUNC(git_path_opts_file
, "sequencer/opts")
61 static GIT_PATH_FUNC(git_path_head_file
, "sequencer/head")
62 static GIT_PATH_FUNC(git_path_abort_safety_file
, "sequencer/abort-safety")
64 static GIT_PATH_FUNC(rebase_path
, "rebase-merge")
66 * The file containing rebase commands, comments, and empty lines.
67 * This file is created by "git rebase -i" then edited by the user. As
68 * the lines are processed, they are removed from the front of this
69 * file and written to the tail of 'done'.
71 GIT_PATH_FUNC(rebase_path_todo
, "rebase-merge/git-rebase-todo")
72 GIT_PATH_FUNC(rebase_path_todo_backup
, "rebase-merge/git-rebase-todo.backup")
74 GIT_PATH_FUNC(rebase_path_dropped
, "rebase-merge/dropped")
77 * The rebase command lines that have already been processed. A line
78 * is moved here when it is first handled, before any associated user
81 static GIT_PATH_FUNC(rebase_path_done
, "rebase-merge/done")
83 * The file to keep track of how many commands were already processed (e.g.
86 static GIT_PATH_FUNC(rebase_path_msgnum
, "rebase-merge/msgnum")
88 * The file to keep track of how many commands are to be processed in total
89 * (e.g. for the prompt).
91 static GIT_PATH_FUNC(rebase_path_msgtotal
, "rebase-merge/end")
93 * The commit message that is planned to be used for any changes that
94 * need to be committed following a user interaction.
96 static GIT_PATH_FUNC(rebase_path_message
, "rebase-merge/message")
98 * The file into which is accumulated the suggested commit message for
99 * squash/fixup commands. When the first of a series of squash/fixups
100 * is seen, the file is created and the commit message from the
101 * previous commit and from the first squash/fixup commit are written
102 * to it. The commit message for each subsequent squash/fixup commit
103 * is appended to the file as it is processed.
105 static GIT_PATH_FUNC(rebase_path_squash_msg
, "rebase-merge/message-squash")
107 * If the current series of squash/fixups has not yet included a squash
108 * command, then this file exists and holds the commit message of the
109 * original "pick" commit. (If the series ends without a "squash"
110 * command, then this can be used as the commit message of the combined
111 * commit without opening the editor.)
113 static GIT_PATH_FUNC(rebase_path_fixup_msg
, "rebase-merge/message-fixup")
115 * This file contains the list fixup/squash commands that have been
116 * accumulated into message-fixup or message-squash so far.
118 static GIT_PATH_FUNC(rebase_path_current_fixups
, "rebase-merge/current-fixups")
120 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
121 * GIT_AUTHOR_DATE that will be used for the commit that is currently
124 static GIT_PATH_FUNC(rebase_path_author_script
, "rebase-merge/author-script")
126 * When an "edit" rebase command is being processed, the SHA1 of the
127 * commit to be edited is recorded in this file. When "git rebase
128 * --continue" is executed, if there are any staged changes then they
129 * will be amended to the HEAD commit, but only provided the HEAD
130 * commit is still the commit to be edited. When any other rebase
131 * command is processed, this file is deleted.
133 static GIT_PATH_FUNC(rebase_path_amend
, "rebase-merge/amend")
135 * When we stop at a given patch via the "edit" command, this file contains
136 * the commit object name of the corresponding patch.
138 static GIT_PATH_FUNC(rebase_path_stopped_sha
, "rebase-merge/stopped-sha")
140 * For the post-rewrite hook, we make a list of rewritten commits and
141 * their new sha1s. The rewritten-pending list keeps the sha1s of
142 * commits that have been processed, but not committed yet,
143 * e.g. because they are waiting for a 'squash' command.
145 static GIT_PATH_FUNC(rebase_path_rewritten_list
, "rebase-merge/rewritten-list")
146 static GIT_PATH_FUNC(rebase_path_rewritten_pending
,
147 "rebase-merge/rewritten-pending")
150 * The path of the file containing the OID of the "squash onto" commit, i.e.
151 * the dummy commit used for `reset [new root]`.
153 static GIT_PATH_FUNC(rebase_path_squash_onto
, "rebase-merge/squash-onto")
156 * The path of the file listing refs that need to be deleted after the rebase
157 * finishes. This is used by the `label` command to record the need for cleanup.
159 static GIT_PATH_FUNC(rebase_path_refs_to_delete
, "rebase-merge/refs-to-delete")
162 * The update-refs file stores a list of refs that will be updated at the end
163 * of the rebase sequence. The 'update-ref <ref>' commands in the todo file
164 * update the OIDs for the refs in this file, but the refs are not updated
165 * until the end of the rebase sequence.
167 * rebase_path_update_refs() returns the path to this file for a given
168 * worktree directory. For the current worktree, pass the_repository->gitdir.
170 static char *rebase_path_update_refs(const char *wt_git_dir
)
172 return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir
);
176 * The following files are written by git-rebase just after parsing the
179 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt
, "rebase-merge/gpg_sign_opt")
180 static GIT_PATH_FUNC(rebase_path_cdate_is_adate
, "rebase-merge/cdate_is_adate")
181 static GIT_PATH_FUNC(rebase_path_ignore_date
, "rebase-merge/ignore_date")
182 static GIT_PATH_FUNC(rebase_path_orig_head
, "rebase-merge/orig-head")
183 static GIT_PATH_FUNC(rebase_path_verbose
, "rebase-merge/verbose")
184 static GIT_PATH_FUNC(rebase_path_quiet
, "rebase-merge/quiet")
185 static GIT_PATH_FUNC(rebase_path_signoff
, "rebase-merge/signoff")
186 static GIT_PATH_FUNC(rebase_path_head_name
, "rebase-merge/head-name")
187 static GIT_PATH_FUNC(rebase_path_onto
, "rebase-merge/onto")
188 static GIT_PATH_FUNC(rebase_path_autostash
, "rebase-merge/autostash")
189 static GIT_PATH_FUNC(rebase_path_strategy
, "rebase-merge/strategy")
190 static GIT_PATH_FUNC(rebase_path_strategy_opts
, "rebase-merge/strategy_opts")
191 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate
, "rebase-merge/allow_rerere_autoupdate")
192 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec
, "rebase-merge/reschedule-failed-exec")
193 static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec
, "rebase-merge/no-reschedule-failed-exec")
194 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits
, "rebase-merge/drop_redundant_commits")
195 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits
, "rebase-merge/keep_redundant_commits")
198 * A 'struct update_refs_record' represents a value in the update-refs
199 * list. We use a string_list to map refs to these (before, after) pairs.
201 struct update_ref_record
{
202 struct object_id before
;
203 struct object_id after
;
206 static struct update_ref_record
*init_update_ref_record(const char *ref
)
208 struct update_ref_record
*rec
;
210 CALLOC_ARRAY(rec
, 1);
212 oidcpy(&rec
->before
, null_oid());
213 oidcpy(&rec
->after
, null_oid());
215 /* This may fail, but that's fine, we will keep the null OID. */
216 read_ref(ref
, &rec
->before
);
221 static int git_sequencer_config(const char *k
, const char *v
, void *cb
)
223 struct replay_opts
*opts
= cb
;
226 if (!strcmp(k
, "commit.cleanup")) {
229 status
= git_config_string(&s
, k
, v
);
233 if (!strcmp(s
, "verbatim")) {
234 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
235 opts
->explicit_cleanup
= 1;
236 } else if (!strcmp(s
, "whitespace")) {
237 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
238 opts
->explicit_cleanup
= 1;
239 } else if (!strcmp(s
, "strip")) {
240 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_ALL
;
241 opts
->explicit_cleanup
= 1;
242 } else if (!strcmp(s
, "scissors")) {
243 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SCISSORS
;
244 opts
->explicit_cleanup
= 1;
246 warning(_("invalid commit message cleanup mode '%s'"),
254 if (!strcmp(k
, "commit.gpgsign")) {
255 opts
->gpg_sign
= git_config_bool(k
, v
) ? xstrdup("") : NULL
;
259 if (!opts
->default_strategy
&& !strcmp(k
, "pull.twohead")) {
260 int ret
= git_config_string((const char**)&opts
->default_strategy
, k
, v
);
263 * pull.twohead is allowed to be multi-valued; we only
264 * care about the first value.
266 char *tmp
= strchr(opts
->default_strategy
, ' ');
273 if (opts
->action
== REPLAY_REVERT
&& !strcmp(k
, "revert.reference"))
274 opts
->commit_use_reference
= git_config_bool(k
, v
);
276 return git_diff_basic_config(k
, v
, NULL
);
279 void sequencer_init_config(struct replay_opts
*opts
)
281 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
282 git_config(git_sequencer_config
, opts
);
285 static inline int is_rebase_i(const struct replay_opts
*opts
)
287 return opts
->action
== REPLAY_INTERACTIVE_REBASE
;
290 static const char *get_dir(const struct replay_opts
*opts
)
292 if (is_rebase_i(opts
))
293 return rebase_path();
294 return git_path_seq_dir();
297 static const char *get_todo_path(const struct replay_opts
*opts
)
299 if (is_rebase_i(opts
))
300 return rebase_path_todo();
301 return git_path_todo_file();
305 * Returns 0 for non-conforming footer
306 * Returns 1 for conforming footer
307 * Returns 2 when sob exists within conforming footer
308 * Returns 3 when sob exists within conforming footer as last entry
310 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
311 size_t ignore_footer
)
313 struct process_trailer_options opts
= PROCESS_TRAILER_OPTIONS_INIT
;
314 struct trailer_info info
;
316 int found_sob
= 0, found_sob_last
= 0;
322 saved_char
= sb
->buf
[sb
->len
- ignore_footer
];
323 sb
->buf
[sb
->len
- ignore_footer
] = '\0';
326 trailer_info_get(&info
, sb
->buf
, &opts
);
329 sb
->buf
[sb
->len
- ignore_footer
] = saved_char
;
331 if (info
.trailer_start
== info
.trailer_end
)
334 for (i
= 0; i
< info
.trailer_nr
; i
++)
335 if (sob
&& !strncmp(info
.trailers
[i
], sob
->buf
, sob
->len
)) {
337 if (i
== info
.trailer_nr
- 1)
341 trailer_info_release(&info
);
350 static const char *gpg_sign_opt_quoted(struct replay_opts
*opts
)
352 static struct strbuf buf
= STRBUF_INIT
;
356 sq_quotef(&buf
, "-S%s", opts
->gpg_sign
);
360 void replay_opts_release(struct replay_opts
*opts
)
362 free(opts
->gpg_sign
);
363 free(opts
->reflog_action
);
364 free(opts
->default_strategy
);
365 free(opts
->strategy
);
366 for (size_t i
= 0; i
< opts
->xopts_nr
; i
++)
367 free(opts
->xopts
[i
]);
369 strbuf_release(&opts
->current_fixups
);
371 release_revisions(opts
->revs
);
375 int sequencer_remove_state(struct replay_opts
*opts
)
377 struct strbuf buf
= STRBUF_INIT
;
380 if (is_rebase_i(opts
) &&
381 strbuf_read_file(&buf
, rebase_path_refs_to_delete(), 0) > 0) {
384 char *eol
= strchr(p
, '\n');
387 if (delete_ref("(rebase) cleanup", p
, NULL
, 0) < 0) {
388 warning(_("could not delete '%s'"), p
);
398 strbuf_addstr(&buf
, get_dir(opts
));
399 if (remove_dir_recursively(&buf
, 0))
400 ret
= error(_("could not remove '%s'"), buf
.buf
);
401 strbuf_release(&buf
);
406 static const char *action_name(const struct replay_opts
*opts
)
408 switch (opts
->action
) {
412 return N_("cherry-pick");
413 case REPLAY_INTERACTIVE_REBASE
:
416 die(_("unknown action: %d"), opts
->action
);
419 struct commit_message
{
426 static const char *short_commit_name(struct commit
*commit
)
428 return repo_find_unique_abbrev(the_repository
, &commit
->object
.oid
,
432 static int get_message(struct commit
*commit
, struct commit_message
*out
)
434 const char *abbrev
, *subject
;
437 out
->message
= repo_logmsg_reencode(the_repository
, commit
, NULL
,
438 get_commit_output_encoding());
439 abbrev
= short_commit_name(commit
);
441 subject_len
= find_commit_subject(out
->message
, &subject
);
443 out
->subject
= xmemdupz(subject
, subject_len
);
444 out
->label
= xstrfmt("%s (%s)", abbrev
, out
->subject
);
445 out
->parent_label
= xstrfmt("parent of %s", out
->label
);
450 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
452 free(msg
->parent_label
);
455 repo_unuse_commit_buffer(the_repository
, commit
, msg
->message
);
458 static void print_advice(struct repository
*r
, int show_hint
,
459 struct replay_opts
*opts
)
461 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
466 * A conflict has occurred but the porcelain
467 * (typically rebase --interactive) wants to take care
468 * of the commit itself so remove CHERRY_PICK_HEAD
470 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
477 advise(_("after resolving the conflicts, mark the corrected paths\n"
478 "with 'git add <paths>' or 'git rm <paths>'"));
479 else if (opts
->action
== REPLAY_PICK
)
480 advise(_("After resolving the conflicts, mark them with\n"
481 "\"git add/rm <pathspec>\", then run\n"
482 "\"git cherry-pick --continue\".\n"
483 "You can instead skip this commit with \"git cherry-pick --skip\".\n"
484 "To abort and get back to the state before \"git cherry-pick\",\n"
485 "run \"git cherry-pick --abort\"."));
486 else if (opts
->action
== REPLAY_REVERT
)
487 advise(_("After resolving the conflicts, mark them with\n"
488 "\"git add/rm <pathspec>\", then run\n"
489 "\"git revert --continue\".\n"
490 "You can instead skip this commit with \"git revert --skip\".\n"
491 "To abort and get back to the state before \"git revert\",\n"
492 "run \"git revert --abort\"."));
494 BUG("unexpected pick action in print_advice()");
498 static int write_message(const void *buf
, size_t len
, const char *filename
,
501 struct lock_file msg_file
= LOCK_INIT
;
503 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
, 0);
505 return error_errno(_("could not lock '%s'"), filename
);
506 if (write_in_full(msg_fd
, buf
, len
) < 0) {
507 error_errno(_("could not write to '%s'"), filename
);
508 rollback_lock_file(&msg_file
);
511 if (append_eol
&& write(msg_fd
, "\n", 1) < 0) {
512 error_errno(_("could not write eol to '%s'"), filename
);
513 rollback_lock_file(&msg_file
);
516 if (commit_lock_file(&msg_file
) < 0)
517 return error(_("failed to finalize '%s'"), filename
);
522 int read_oneliner(struct strbuf
*buf
,
523 const char *path
, unsigned flags
)
525 int orig_len
= buf
->len
;
527 if (strbuf_read_file(buf
, path
, 0) < 0) {
528 if ((flags
& READ_ONELINER_WARN_MISSING
) ||
529 (errno
!= ENOENT
&& errno
!= ENOTDIR
))
530 warning_errno(_("could not read '%s'"), path
);
534 if (buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\n') {
535 if (--buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\r')
537 buf
->buf
[buf
->len
] = '\0';
540 if ((flags
& READ_ONELINER_SKIP_IF_EMPTY
) && buf
->len
== orig_len
)
546 static struct tree
*empty_tree(struct repository
*r
)
548 return lookup_tree(r
, the_hash_algo
->empty_tree
);
551 static int error_dirty_index(struct repository
*repo
, struct replay_opts
*opts
)
553 if (repo_read_index_unmerged(repo
))
554 return error_resolve_conflict(action_name(opts
));
556 error(_("your local changes would be overwritten by %s."),
557 _(action_name(opts
)));
559 if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE
))
560 advise(_("commit your changes or stash them to proceed."));
564 static void update_abort_safety_file(void)
566 struct object_id head
;
568 /* Do nothing on a single-pick */
569 if (!file_exists(git_path_seq_dir()))
572 if (!repo_get_oid(the_repository
, "HEAD", &head
))
573 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head
));
575 write_file(git_path_abort_safety_file(), "%s", "");
578 static int fast_forward_to(struct repository
*r
,
579 const struct object_id
*to
,
580 const struct object_id
*from
,
582 struct replay_opts
*opts
)
584 struct ref_transaction
*transaction
;
585 struct strbuf sb
= STRBUF_INIT
;
586 struct strbuf err
= STRBUF_INIT
;
589 if (checkout_fast_forward(r
, from
, to
, 1))
590 return -1; /* the callee should have complained already */
592 strbuf_addf(&sb
, "%s: fast-forward", action_name(opts
));
594 transaction
= ref_transaction_begin(&err
);
596 ref_transaction_update(transaction
, "HEAD",
597 to
, unborn
&& !is_rebase_i(opts
) ?
600 ref_transaction_commit(transaction
, &err
)) {
601 ref_transaction_free(transaction
);
602 error("%s", err
.buf
);
604 strbuf_release(&err
);
609 strbuf_release(&err
);
610 ref_transaction_free(transaction
);
611 update_abort_safety_file();
615 enum commit_msg_cleanup_mode
get_cleanup_mode(const char *cleanup_arg
,
618 if (!cleanup_arg
|| !strcmp(cleanup_arg
, "default"))
619 return use_editor
? COMMIT_MSG_CLEANUP_ALL
:
620 COMMIT_MSG_CLEANUP_SPACE
;
621 else if (!strcmp(cleanup_arg
, "verbatim"))
622 return COMMIT_MSG_CLEANUP_NONE
;
623 else if (!strcmp(cleanup_arg
, "whitespace"))
624 return COMMIT_MSG_CLEANUP_SPACE
;
625 else if (!strcmp(cleanup_arg
, "strip"))
626 return COMMIT_MSG_CLEANUP_ALL
;
627 else if (!strcmp(cleanup_arg
, "scissors"))
628 return use_editor
? COMMIT_MSG_CLEANUP_SCISSORS
:
629 COMMIT_MSG_CLEANUP_SPACE
;
631 die(_("Invalid cleanup mode %s"), cleanup_arg
);
635 * NB using int rather than enum cleanup_mode to stop clang's
636 * -Wtautological-constant-out-of-range-compare complaining that the comparison
639 static const char *describe_cleanup_mode(int cleanup_mode
)
641 static const char *modes
[] = { "whitespace",
646 if (cleanup_mode
< ARRAY_SIZE(modes
))
647 return modes
[cleanup_mode
];
649 BUG("invalid cleanup_mode provided (%d)", cleanup_mode
);
652 void append_conflicts_hint(struct index_state
*istate
,
653 struct strbuf
*msgbuf
, enum commit_msg_cleanup_mode cleanup_mode
)
657 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
658 strbuf_addch(msgbuf
, '\n');
659 wt_status_append_cut_line(msgbuf
);
660 strbuf_addch(msgbuf
, comment_line_char
);
663 strbuf_addch(msgbuf
, '\n');
664 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
665 for (i
= 0; i
< istate
->cache_nr
;) {
666 const struct cache_entry
*ce
= istate
->cache
[i
++];
668 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
669 while (i
< istate
->cache_nr
&&
670 !strcmp(ce
->name
, istate
->cache
[i
]->name
))
676 static int do_recursive_merge(struct repository
*r
,
677 struct commit
*base
, struct commit
*next
,
678 const char *base_label
, const char *next_label
,
679 struct object_id
*head
, struct strbuf
*msgbuf
,
680 struct replay_opts
*opts
)
682 struct merge_options o
;
683 struct merge_result result
;
684 struct tree
*next_tree
, *base_tree
, *head_tree
;
685 int clean
, show_output
;
687 struct lock_file index_lock
= LOCK_INIT
;
689 if (repo_hold_locked_index(r
, &index_lock
, LOCK_REPORT_ON_ERROR
) < 0)
694 init_merge_options(&o
, r
);
695 o
.ancestor
= base
? base_label
: "(empty tree)";
697 o
.branch2
= next
? next_label
: "(empty tree)";
698 if (is_rebase_i(opts
))
700 o
.show_rename_progress
= 1;
702 head_tree
= parse_tree_indirect(head
);
703 next_tree
= next
? repo_get_commit_tree(r
, next
) : empty_tree(r
);
704 base_tree
= base
? repo_get_commit_tree(r
, base
) : empty_tree(r
);
706 for (i
= 0; i
< opts
->xopts_nr
; i
++)
707 parse_merge_opt(&o
, opts
->xopts
[i
]);
709 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "ort")) {
710 memset(&result
, 0, sizeof(result
));
711 merge_incore_nonrecursive(&o
, base_tree
, head_tree
, next_tree
,
713 show_output
= !is_rebase_i(opts
) || !result
.clean
;
715 * TODO: merge_switch_to_result will update index/working tree;
716 * we only really want to do that if !result.clean || this is
717 * the final patch to be picked. But determining this is the
718 * final patch would take some work, and "head_tree" would need
719 * to be replace with the tree the index matched before we
720 * started doing any picks.
722 merge_switch_to_result(&o
, head_tree
, &result
, 1, show_output
);
723 clean
= result
.clean
;
725 ensure_full_index(r
->index
);
726 clean
= merge_trees(&o
, head_tree
, next_tree
, base_tree
);
727 if (is_rebase_i(opts
) && clean
<= 0)
728 fputs(o
.obuf
.buf
, stdout
);
729 strbuf_release(&o
.obuf
);
732 rollback_lock_file(&index_lock
);
736 if (write_locked_index(r
->index
, &index_lock
,
737 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
739 * TRANSLATORS: %s will be "revert", "cherry-pick" or
742 return error(_("%s: Unable to write new index file"),
743 _(action_name(opts
)));
746 append_conflicts_hint(r
->index
, msgbuf
,
747 opts
->default_msg_cleanup
);
752 static struct object_id
*get_cache_tree_oid(struct index_state
*istate
)
754 if (!cache_tree_fully_valid(istate
->cache_tree
))
755 if (cache_tree_update(istate
, 0)) {
756 error(_("unable to update cache tree"));
760 return &istate
->cache_tree
->oid
;
763 static int is_index_unchanged(struct repository
*r
)
765 struct object_id head_oid
, *cache_tree_oid
;
766 struct commit
*head_commit
;
767 struct index_state
*istate
= r
->index
;
769 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
770 return error(_("could not resolve HEAD commit"));
772 head_commit
= lookup_commit(r
, &head_oid
);
775 * If head_commit is NULL, check_commit, called from
776 * lookup_commit, would have indicated that head_commit is not
777 * a commit object already. repo_parse_commit() will return failure
778 * without further complaints in such a case. Otherwise, if
779 * the commit is invalid, repo_parse_commit() will complain. So
780 * there is nothing for us to say here. Just return failure.
782 if (repo_parse_commit(r
, head_commit
))
785 if (!(cache_tree_oid
= get_cache_tree_oid(istate
)))
788 return oideq(cache_tree_oid
, get_commit_tree_oid(head_commit
));
791 static int write_author_script(const char *message
)
793 struct strbuf buf
= STRBUF_INIT
;
798 if (!*message
|| starts_with(message
, "\n")) {
800 /* Missing 'author' line? */
801 unlink(rebase_path_author_script());
803 } else if (skip_prefix(message
, "author ", &message
))
805 else if ((eol
= strchr(message
, '\n')))
810 strbuf_addstr(&buf
, "GIT_AUTHOR_NAME='");
811 while (*message
&& *message
!= '\n' && *message
!= '\r')
812 if (skip_prefix(message
, " <", &message
))
814 else if (*message
!= '\'')
815 strbuf_addch(&buf
, *(message
++));
817 strbuf_addf(&buf
, "'\\%c'", *(message
++));
818 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_EMAIL='");
819 while (*message
&& *message
!= '\n' && *message
!= '\r')
820 if (skip_prefix(message
, "> ", &message
))
822 else if (*message
!= '\'')
823 strbuf_addch(&buf
, *(message
++));
825 strbuf_addf(&buf
, "'\\%c'", *(message
++));
826 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_DATE='@");
827 while (*message
&& *message
!= '\n' && *message
!= '\r')
828 if (*message
!= '\'')
829 strbuf_addch(&buf
, *(message
++));
831 strbuf_addf(&buf
, "'\\%c'", *(message
++));
832 strbuf_addch(&buf
, '\'');
833 res
= write_message(buf
.buf
, buf
.len
, rebase_path_author_script(), 1);
834 strbuf_release(&buf
);
839 * Take a series of KEY='VALUE' lines where VALUE part is
840 * sq-quoted, and append <KEY, VALUE> at the end of the string list
842 static int parse_key_value_squoted(char *buf
, struct string_list
*list
)
845 struct string_list_item
*item
;
847 char *cp
= strchr(buf
, '=');
849 np
= strchrnul(buf
, '\n');
850 return error(_("no key present in '%.*s'"),
851 (int) (np
- buf
), buf
);
853 np
= strchrnul(cp
, '\n');
855 item
= string_list_append(list
, buf
);
857 buf
= np
+ (*np
== '\n');
861 return error(_("unable to dequote value of '%s'"),
863 item
->util
= xstrdup(cp
);
869 * Reads and parses the state directory's "author-script" file, and sets name,
870 * email and date accordingly.
871 * Returns 0 on success, -1 if the file could not be parsed.
873 * The author script is of the format:
875 * GIT_AUTHOR_NAME='$author_name'
876 * GIT_AUTHOR_EMAIL='$author_email'
877 * GIT_AUTHOR_DATE='$author_date'
879 * where $author_name, $author_email and $author_date are quoted. We are strict
880 * with our parsing, as the file was meant to be eval'd in the now-removed
881 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
882 * from what this function expects, it is better to bail out than to do
883 * something that the user does not expect.
885 int read_author_script(const char *path
, char **name
, char **email
, char **date
,
888 struct strbuf buf
= STRBUF_INIT
;
889 struct string_list kv
= STRING_LIST_INIT_DUP
;
890 int retval
= -1; /* assume failure */
891 int i
, name_i
= -2, email_i
= -2, date_i
= -2, err
= 0;
893 if (strbuf_read_file(&buf
, path
, 256) <= 0) {
894 strbuf_release(&buf
);
895 if (errno
== ENOENT
&& allow_missing
)
898 return error_errno(_("could not open '%s' for reading"),
902 if (parse_key_value_squoted(buf
.buf
, &kv
))
905 for (i
= 0; i
< kv
.nr
; i
++) {
906 if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_NAME")) {
908 name_i
= error(_("'GIT_AUTHOR_NAME' already given"));
911 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_EMAIL")) {
913 email_i
= error(_("'GIT_AUTHOR_EMAIL' already given"));
916 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_DATE")) {
918 date_i
= error(_("'GIT_AUTHOR_DATE' already given"));
922 err
= error(_("unknown variable '%s'"),
927 error(_("missing 'GIT_AUTHOR_NAME'"));
929 error(_("missing 'GIT_AUTHOR_EMAIL'"));
931 error(_("missing 'GIT_AUTHOR_DATE'"));
932 if (name_i
< 0 || email_i
< 0 || date_i
< 0 || err
)
934 *name
= kv
.items
[name_i
].util
;
935 *email
= kv
.items
[email_i
].util
;
936 *date
= kv
.items
[date_i
].util
;
939 string_list_clear(&kv
, !!retval
);
940 strbuf_release(&buf
);
945 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
946 * file with shell quoting into struct strvec. Returns -1 on
947 * error, 0 otherwise.
949 static int read_env_script(struct strvec
*env
)
951 char *name
, *email
, *date
;
953 if (read_author_script(rebase_path_author_script(),
954 &name
, &email
, &date
, 0))
957 strvec_pushf(env
, "GIT_AUTHOR_NAME=%s", name
);
958 strvec_pushf(env
, "GIT_AUTHOR_EMAIL=%s", email
);
959 strvec_pushf(env
, "GIT_AUTHOR_DATE=%s", date
);
967 static char *get_author(const char *message
)
972 a
= find_commit_header(message
, "author", &len
);
974 return xmemdupz(a
, len
);
979 static const char *author_date_from_env(const struct strvec
*env
)
984 for (i
= 0; i
< env
->nr
; i
++)
985 if (skip_prefix(env
->v
[i
],
986 "GIT_AUTHOR_DATE=", &date
))
989 * If GIT_AUTHOR_DATE is missing we should have already errored out when
992 BUG("GIT_AUTHOR_DATE missing from author script");
995 static const char staged_changes_advice
[] =
996 N_("you have staged changes in your working tree\n"
997 "If these changes are meant to be squashed into the previous commit, run:\n"
999 " git commit --amend %s\n"
1001 "If they are meant to go into a new commit, run:\n"
1005 "In both cases, once you're done, continue with:\n"
1007 " git rebase --continue\n");
1009 #define ALLOW_EMPTY (1<<0)
1010 #define EDIT_MSG (1<<1)
1011 #define AMEND_MSG (1<<2)
1012 #define CLEANUP_MSG (1<<3)
1013 #define VERIFY_MSG (1<<4)
1014 #define CREATE_ROOT_COMMIT (1<<5)
1015 #define VERBATIM_MSG (1<<6)
1017 static int run_command_silent_on_success(struct child_process
*cmd
)
1019 struct strbuf buf
= STRBUF_INIT
;
1022 cmd
->stdout_to_stderr
= 1;
1023 rc
= pipe_command(cmd
,
1029 fputs(buf
.buf
, stderr
);
1030 strbuf_release(&buf
);
1035 * If we are cherry-pick, and if the merge did not result in
1036 * hand-editing, we will hit this commit and inherit the original
1037 * author date and name.
1039 * If we are revert, or if our cherry-pick results in a hand merge,
1040 * we had better say that the current user is responsible for that.
1042 * An exception is when run_git_commit() is called during an
1043 * interactive rebase: in that case, we will want to retain the
1046 static int run_git_commit(const char *defmsg
,
1047 struct replay_opts
*opts
,
1050 struct child_process cmd
= CHILD_PROCESS_INIT
;
1052 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1053 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1057 if (is_rebase_i(opts
) &&
1058 ((opts
->committer_date_is_author_date
&& !opts
->ignore_date
) ||
1059 !(!defmsg
&& (flags
& AMEND_MSG
))) &&
1060 read_env_script(&cmd
.env
)) {
1061 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
1063 return error(_(staged_changes_advice
),
1067 strvec_pushf(&cmd
.env
, GIT_REFLOG_ACTION
"=%s", opts
->reflog_message
);
1069 if (opts
->committer_date_is_author_date
)
1070 strvec_pushf(&cmd
.env
, "GIT_COMMITTER_DATE=%s",
1073 author_date_from_env(&cmd
.env
));
1074 if (opts
->ignore_date
)
1075 strvec_push(&cmd
.env
, "GIT_AUTHOR_DATE=");
1077 strvec_push(&cmd
.args
, "commit");
1079 if (!(flags
& VERIFY_MSG
))
1080 strvec_push(&cmd
.args
, "-n");
1081 if ((flags
& AMEND_MSG
))
1082 strvec_push(&cmd
.args
, "--amend");
1084 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
1086 strvec_push(&cmd
.args
, "--no-gpg-sign");
1088 strvec_pushl(&cmd
.args
, "-F", defmsg
, NULL
);
1089 else if (!(flags
& EDIT_MSG
))
1090 strvec_pushl(&cmd
.args
, "-C", "HEAD", NULL
);
1091 if ((flags
& CLEANUP_MSG
))
1092 strvec_push(&cmd
.args
, "--cleanup=strip");
1093 if ((flags
& VERBATIM_MSG
))
1094 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1095 if ((flags
& EDIT_MSG
))
1096 strvec_push(&cmd
.args
, "-e");
1097 else if (!(flags
& CLEANUP_MSG
) &&
1098 !opts
->signoff
&& !opts
->record_origin
&&
1099 !opts
->explicit_cleanup
)
1100 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1102 if ((flags
& ALLOW_EMPTY
))
1103 strvec_push(&cmd
.args
, "--allow-empty");
1105 if (!(flags
& EDIT_MSG
))
1106 strvec_push(&cmd
.args
, "--allow-empty-message");
1108 if (is_rebase_i(opts
) && !(flags
& EDIT_MSG
))
1109 return run_command_silent_on_success(&cmd
);
1111 return run_command(&cmd
);
1114 static int rest_is_empty(const struct strbuf
*sb
, int start
)
1119 /* Check if the rest is just whitespace and Signed-off-by's. */
1120 for (i
= start
; i
< sb
->len
; i
++) {
1121 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
1127 if (strlen(sign_off_header
) <= eol
- i
&&
1128 starts_with(sb
->buf
+ i
, sign_off_header
)) {
1133 if (!isspace(sb
->buf
[i
++]))
1140 void cleanup_message(struct strbuf
*msgbuf
,
1141 enum commit_msg_cleanup_mode cleanup_mode
, int verbose
)
1143 if (verbose
|| /* Truncate the message just before the diff, if any. */
1144 cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
)
1145 strbuf_setlen(msgbuf
, wt_status_locate_end(msgbuf
->buf
, msgbuf
->len
));
1146 if (cleanup_mode
!= COMMIT_MSG_CLEANUP_NONE
)
1147 strbuf_stripspace(msgbuf
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1151 * Find out if the message in the strbuf contains only whitespace and
1152 * Signed-off-by lines.
1154 int message_is_empty(const struct strbuf
*sb
,
1155 enum commit_msg_cleanup_mode cleanup_mode
)
1157 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1159 return rest_is_empty(sb
, 0);
1163 * See if the user edited the message in the editor or left what
1164 * was in the template intact
1166 int template_untouched(const struct strbuf
*sb
, const char *template_file
,
1167 enum commit_msg_cleanup_mode cleanup_mode
)
1169 struct strbuf tmpl
= STRBUF_INIT
;
1172 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1175 if (!template_file
|| strbuf_read_file(&tmpl
, template_file
, 0) <= 0)
1178 strbuf_stripspace(&tmpl
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1179 if (!skip_prefix(sb
->buf
, tmpl
.buf
, &start
))
1181 strbuf_release(&tmpl
);
1182 return rest_is_empty(sb
, start
- sb
->buf
);
1185 int update_head_with_reflog(const struct commit
*old_head
,
1186 const struct object_id
*new_head
,
1187 const char *action
, const struct strbuf
*msg
,
1190 struct ref_transaction
*transaction
;
1191 struct strbuf sb
= STRBUF_INIT
;
1196 strbuf_addstr(&sb
, action
);
1197 strbuf_addstr(&sb
, ": ");
1200 nl
= strchr(msg
->buf
, '\n');
1202 strbuf_add(&sb
, msg
->buf
, nl
+ 1 - msg
->buf
);
1204 strbuf_addbuf(&sb
, msg
);
1205 strbuf_addch(&sb
, '\n');
1208 transaction
= ref_transaction_begin(err
);
1210 ref_transaction_update(transaction
, "HEAD", new_head
,
1211 old_head
? &old_head
->object
.oid
: null_oid(),
1213 ref_transaction_commit(transaction
, err
)) {
1216 ref_transaction_free(transaction
);
1217 strbuf_release(&sb
);
1222 static int run_rewrite_hook(const struct object_id
*oldoid
,
1223 const struct object_id
*newoid
)
1225 struct child_process proc
= CHILD_PROCESS_INIT
;
1227 struct strbuf sb
= STRBUF_INIT
;
1228 const char *hook_path
= find_hook("post-rewrite");
1233 strvec_pushl(&proc
.args
, hook_path
, "amend", NULL
);
1235 proc
.stdout_to_stderr
= 1;
1236 proc
.trace2_hook_name
= "post-rewrite";
1238 code
= start_command(&proc
);
1241 strbuf_addf(&sb
, "%s %s\n", oid_to_hex(oldoid
), oid_to_hex(newoid
));
1242 sigchain_push(SIGPIPE
, SIG_IGN
);
1243 write_in_full(proc
.in
, sb
.buf
, sb
.len
);
1245 strbuf_release(&sb
);
1246 sigchain_pop(SIGPIPE
);
1247 return finish_command(&proc
);
1250 void commit_post_rewrite(struct repository
*r
,
1251 const struct commit
*old_head
,
1252 const struct object_id
*new_head
)
1254 struct notes_rewrite_cfg
*cfg
;
1256 cfg
= init_copy_notes_for_rewrite("amend");
1258 /* we are amending, so old_head is not NULL */
1259 copy_note_for_rewrite(cfg
, &old_head
->object
.oid
, new_head
);
1260 finish_copy_notes_for_rewrite(r
, cfg
, "Notes added by 'git commit --amend'");
1262 run_rewrite_hook(&old_head
->object
.oid
, new_head
);
1265 static int run_prepare_commit_msg_hook(struct repository
*r
,
1270 const char *name
, *arg1
= NULL
, *arg2
= NULL
;
1272 name
= git_path_commit_editmsg();
1273 if (write_message(msg
->buf
, msg
->len
, name
, 0))
1282 if (run_commit_hook(0, r
->index_file
, NULL
, "prepare-commit-msg", name
,
1284 ret
= error(_("'prepare-commit-msg' hook failed"));
1289 static const char implicit_ident_advice_noconfig
[] =
1290 N_("Your name and email address were configured automatically based\n"
1291 "on your username and hostname. Please check that they are accurate.\n"
1292 "You can suppress this message by setting them explicitly. Run the\n"
1293 "following command and follow the instructions in your editor to edit\n"
1294 "your configuration file:\n"
1296 " git config --global --edit\n"
1298 "After doing this, you may fix the identity used for this commit with:\n"
1300 " git commit --amend --reset-author\n");
1302 static const char implicit_ident_advice_config
[] =
1303 N_("Your name and email address were configured automatically based\n"
1304 "on your username and hostname. Please check that they are accurate.\n"
1305 "You can suppress this message by setting them explicitly:\n"
1307 " git config --global user.name \"Your Name\"\n"
1308 " git config --global user.email you@example.com\n"
1310 "After doing this, you may fix the identity used for this commit with:\n"
1312 " git commit --amend --reset-author\n");
1314 static const char *implicit_ident_advice(void)
1316 char *user_config
= interpolate_path("~/.gitconfig", 0);
1317 char *xdg_config
= xdg_config_home("config");
1318 int config_exists
= file_exists(user_config
) || file_exists(xdg_config
);
1324 return _(implicit_ident_advice_config
);
1326 return _(implicit_ident_advice_noconfig
);
1330 void print_commit_summary(struct repository
*r
,
1332 const struct object_id
*oid
,
1335 struct rev_info rev
;
1336 struct commit
*commit
;
1337 struct strbuf format
= STRBUF_INIT
;
1339 struct pretty_print_context pctx
= {0};
1340 struct strbuf author_ident
= STRBUF_INIT
;
1341 struct strbuf committer_ident
= STRBUF_INIT
;
1342 struct ref_store
*refs
;
1344 commit
= lookup_commit(r
, oid
);
1346 die(_("couldn't look up newly created commit"));
1347 if (repo_parse_commit(r
, commit
))
1348 die(_("could not parse newly created commit"));
1350 strbuf_addstr(&format
, "format:%h] %s");
1352 repo_format_commit_message(r
, commit
, "%an <%ae>", &author_ident
,
1354 repo_format_commit_message(r
, commit
, "%cn <%ce>", &committer_ident
,
1356 if (strbuf_cmp(&author_ident
, &committer_ident
)) {
1357 strbuf_addstr(&format
, "\n Author: ");
1358 strbuf_addbuf_percentquote(&format
, &author_ident
);
1360 if (flags
& SUMMARY_SHOW_AUTHOR_DATE
) {
1361 struct strbuf date
= STRBUF_INIT
;
1363 repo_format_commit_message(r
, commit
, "%ad", &date
, &pctx
);
1364 strbuf_addstr(&format
, "\n Date: ");
1365 strbuf_addbuf_percentquote(&format
, &date
);
1366 strbuf_release(&date
);
1368 if (!committer_ident_sufficiently_given()) {
1369 strbuf_addstr(&format
, "\n Committer: ");
1370 strbuf_addbuf_percentquote(&format
, &committer_ident
);
1371 if (advice_enabled(ADVICE_IMPLICIT_IDENTITY
)) {
1372 strbuf_addch(&format
, '\n');
1373 strbuf_addstr(&format
, implicit_ident_advice());
1376 strbuf_release(&author_ident
);
1377 strbuf_release(&committer_ident
);
1379 repo_init_revisions(r
, &rev
, prefix
);
1380 setup_revisions(0, NULL
, &rev
, NULL
);
1383 rev
.diffopt
.output_format
=
1384 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
1386 rev
.verbose_header
= 1;
1387 rev
.show_root_diff
= 1;
1388 get_commit_format(format
.buf
, &rev
);
1389 rev
.always_show_header
= 0;
1390 rev
.diffopt
.detect_rename
= DIFF_DETECT_RENAME
;
1391 diff_setup_done(&rev
.diffopt
);
1393 refs
= get_main_ref_store(r
);
1394 head
= refs_resolve_ref_unsafe(refs
, "HEAD", 0, NULL
, NULL
);
1396 die(_("unable to resolve HEAD after creating commit"));
1397 if (!strcmp(head
, "HEAD"))
1398 head
= _("detached HEAD");
1400 skip_prefix(head
, "refs/heads/", &head
);
1401 printf("[%s%s ", head
, (flags
& SUMMARY_INITIAL_COMMIT
) ?
1402 _(" (root-commit)") : "");
1404 if (!log_tree_commit(&rev
, commit
)) {
1405 rev
.always_show_header
= 1;
1406 rev
.use_terminator
= 1;
1407 log_tree_commit(&rev
, commit
);
1410 release_revisions(&rev
);
1411 strbuf_release(&format
);
1414 static int parse_head(struct repository
*r
, struct commit
**head
)
1416 struct commit
*current_head
;
1417 struct object_id oid
;
1419 if (repo_get_oid(r
, "HEAD", &oid
)) {
1420 current_head
= NULL
;
1422 current_head
= lookup_commit_reference(r
, &oid
);
1424 return error(_("could not parse HEAD"));
1425 if (!oideq(&oid
, ¤t_head
->object
.oid
)) {
1426 warning(_("HEAD %s is not a commit!"),
1429 if (repo_parse_commit(r
, current_head
))
1430 return error(_("could not parse HEAD commit"));
1432 *head
= current_head
;
1438 * Try to commit without forking 'git commit'. In some cases we need
1439 * to run 'git commit' to display an error message
1442 * -1 - error unable to commit
1444 * 1 - run 'git commit'
1446 static int try_to_commit(struct repository
*r
,
1447 struct strbuf
*msg
, const char *author
,
1448 struct replay_opts
*opts
, unsigned int flags
,
1449 struct object_id
*oid
)
1451 struct object_id tree
;
1452 struct commit
*current_head
= NULL
;
1453 struct commit_list
*parents
= NULL
;
1454 struct commit_extra_header
*extra
= NULL
;
1455 struct strbuf err
= STRBUF_INIT
;
1456 struct strbuf commit_msg
= STRBUF_INIT
;
1457 char *amend_author
= NULL
;
1458 const char *committer
= NULL
;
1459 const char *hook_commit
= NULL
;
1460 enum commit_msg_cleanup_mode cleanup
;
1463 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1464 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1466 if (parse_head(r
, ¤t_head
))
1469 if (flags
& AMEND_MSG
) {
1470 const char *exclude_gpgsig
[] = { "gpgsig", "gpgsig-sha256", NULL
};
1471 const char *out_enc
= get_commit_output_encoding();
1472 const char *message
= repo_logmsg_reencode(r
, current_head
,
1476 const char *orig_message
= NULL
;
1478 find_commit_subject(message
, &orig_message
);
1480 strbuf_addstr(msg
, orig_message
);
1481 hook_commit
= "HEAD";
1483 author
= amend_author
= get_author(message
);
1484 repo_unuse_commit_buffer(r
, current_head
,
1487 res
= error(_("unable to parse commit author"));
1490 parents
= copy_commit_list(current_head
->parents
);
1491 extra
= read_commit_extra_headers(current_head
, exclude_gpgsig
);
1492 } else if (current_head
&&
1493 (!(flags
& CREATE_ROOT_COMMIT
) || (flags
& AMEND_MSG
))) {
1494 commit_list_insert(current_head
, &parents
);
1497 if (write_index_as_tree(&tree
, r
->index
, r
->index_file
, 0, NULL
)) {
1498 res
= error(_("git write-tree failed to write a tree"));
1502 if (!(flags
& ALLOW_EMPTY
)) {
1503 struct commit
*first_parent
= current_head
;
1505 if (flags
& AMEND_MSG
) {
1506 if (current_head
->parents
) {
1507 first_parent
= current_head
->parents
->item
;
1508 if (repo_parse_commit(r
, first_parent
)) {
1509 res
= error(_("could not parse HEAD commit"));
1513 first_parent
= NULL
;
1516 if (oideq(first_parent
1517 ? get_commit_tree_oid(first_parent
)
1518 : the_hash_algo
->empty_tree
,
1520 res
= 1; /* run 'git commit' to display error message */
1525 if (hook_exists("prepare-commit-msg")) {
1526 res
= run_prepare_commit_msg_hook(r
, msg
, hook_commit
);
1529 if (strbuf_read_file(&commit_msg
, git_path_commit_editmsg(),
1531 res
= error_errno(_("unable to read commit message "
1533 git_path_commit_editmsg());
1539 if (flags
& CLEANUP_MSG
)
1540 cleanup
= COMMIT_MSG_CLEANUP_ALL
;
1541 else if (flags
& VERBATIM_MSG
)
1542 cleanup
= COMMIT_MSG_CLEANUP_NONE
;
1543 else if ((opts
->signoff
|| opts
->record_origin
) &&
1544 !opts
->explicit_cleanup
)
1545 cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
1547 cleanup
= opts
->default_msg_cleanup
;
1549 if (cleanup
!= COMMIT_MSG_CLEANUP_NONE
)
1550 strbuf_stripspace(msg
, cleanup
== COMMIT_MSG_CLEANUP_ALL
);
1551 if ((flags
& EDIT_MSG
) && message_is_empty(msg
, cleanup
)) {
1552 res
= 1; /* run 'git commit' to display error message */
1556 if (opts
->committer_date_is_author_date
) {
1557 struct ident_split id
;
1558 struct strbuf date
= STRBUF_INIT
;
1560 if (!opts
->ignore_date
) {
1561 if (split_ident_line(&id
, author
, (int)strlen(author
)) < 0) {
1562 res
= error(_("invalid author identity '%s'"),
1566 if (!id
.date_begin
) {
1568 "corrupt author: missing date information"));
1571 strbuf_addf(&date
, "@%.*s %.*s",
1572 (int)(id
.date_end
- id
.date_begin
),
1574 (int)(id
.tz_end
- id
.tz_begin
),
1579 committer
= fmt_ident(getenv("GIT_COMMITTER_NAME"),
1580 getenv("GIT_COMMITTER_EMAIL"),
1581 WANT_COMMITTER_IDENT
,
1582 opts
->ignore_date
? NULL
: date
.buf
,
1584 strbuf_release(&date
);
1589 if (opts
->ignore_date
) {
1590 struct ident_split id
;
1593 if (split_ident_line(&id
, author
, strlen(author
)) < 0) {
1594 error(_("invalid author identity '%s'"), author
);
1597 name
= xmemdupz(id
.name_begin
, id
.name_end
- id
.name_begin
);
1598 email
= xmemdupz(id
.mail_begin
, id
.mail_end
- id
.mail_begin
);
1599 author
= fmt_ident(name
, email
, WANT_AUTHOR_IDENT
, NULL
,
1605 if (commit_tree_extended(msg
->buf
, msg
->len
, &tree
, parents
, oid
,
1606 author
, committer
, opts
->gpg_sign
, extra
)) {
1607 res
= error(_("failed to write commit object"));
1611 if (update_head_with_reflog(current_head
, oid
, opts
->reflog_message
,
1613 res
= error("%s", err
.buf
);
1617 run_commit_hook(0, r
->index_file
, NULL
, "post-commit", NULL
);
1618 if (flags
& AMEND_MSG
)
1619 commit_post_rewrite(r
, current_head
, oid
);
1622 free_commit_extra_headers(extra
);
1623 strbuf_release(&err
);
1624 strbuf_release(&commit_msg
);
1630 static int write_rebase_head(struct object_id
*oid
)
1632 if (update_ref("rebase", "REBASE_HEAD", oid
,
1633 NULL
, REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
1634 return error(_("could not update %s"), "REBASE_HEAD");
1639 static int do_commit(struct repository
*r
,
1640 const char *msg_file
, const char *author
,
1641 struct replay_opts
*opts
, unsigned int flags
,
1642 struct object_id
*oid
)
1646 if (!(flags
& EDIT_MSG
) && !(flags
& VERIFY_MSG
)) {
1647 struct object_id oid
;
1648 struct strbuf sb
= STRBUF_INIT
;
1650 if (msg_file
&& strbuf_read_file(&sb
, msg_file
, 2048) < 0)
1651 return error_errno(_("unable to read commit message "
1655 res
= try_to_commit(r
, msg_file
? &sb
: NULL
,
1656 author
, opts
, flags
, &oid
);
1657 strbuf_release(&sb
);
1659 refs_delete_ref(get_main_ref_store(r
), "",
1660 "CHERRY_PICK_HEAD", NULL
, 0);
1661 unlink(git_path_merge_msg(r
));
1662 if (!is_rebase_i(opts
))
1663 print_commit_summary(r
, NULL
, &oid
,
1664 SUMMARY_SHOW_AUTHOR_DATE
);
1669 if (is_rebase_i(opts
) && oid
)
1670 if (write_rebase_head(oid
))
1672 return run_git_commit(msg_file
, opts
, flags
);
1678 static int is_original_commit_empty(struct commit
*commit
)
1680 const struct object_id
*ptree_oid
;
1682 if (repo_parse_commit(the_repository
, commit
))
1683 return error(_("could not parse commit %s"),
1684 oid_to_hex(&commit
->object
.oid
));
1685 if (commit
->parents
) {
1686 struct commit
*parent
= commit
->parents
->item
;
1687 if (repo_parse_commit(the_repository
, parent
))
1688 return error(_("could not parse parent commit %s"),
1689 oid_to_hex(&parent
->object
.oid
));
1690 ptree_oid
= get_commit_tree_oid(parent
);
1692 ptree_oid
= the_hash_algo
->empty_tree
; /* commit is root */
1695 return oideq(ptree_oid
, get_commit_tree_oid(commit
));
1699 * Should empty commits be allowed? Return status:
1700 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1701 * 0: Halt on empty commit
1702 * 1: Allow empty commit
1703 * 2: Drop empty commit
1705 static int allow_empty(struct repository
*r
,
1706 struct replay_opts
*opts
,
1707 struct commit
*commit
)
1709 int index_unchanged
, originally_empty
;
1714 * (1) we do not allow empty at all and error out.
1716 * (2) we allow ones that were initially empty, and
1717 * just drop the ones that become empty
1719 * (3) we allow ones that were initially empty, but
1720 * halt for the ones that become empty;
1722 * (4) we allow both.
1724 if (!opts
->allow_empty
)
1725 return 0; /* let "git commit" barf as necessary */
1727 index_unchanged
= is_index_unchanged(r
);
1728 if (index_unchanged
< 0)
1729 return index_unchanged
;
1730 if (!index_unchanged
)
1731 return 0; /* we do not have to say --allow-empty */
1733 if (opts
->keep_redundant_commits
)
1736 originally_empty
= is_original_commit_empty(commit
);
1737 if (originally_empty
< 0)
1738 return originally_empty
;
1739 if (originally_empty
)
1741 else if (opts
->drop_redundant_commits
)
1750 } todo_command_info
[] = {
1751 [TODO_PICK
] = { 'p', "pick" },
1752 [TODO_REVERT
] = { 0, "revert" },
1753 [TODO_EDIT
] = { 'e', "edit" },
1754 [TODO_REWORD
] = { 'r', "reword" },
1755 [TODO_FIXUP
] = { 'f', "fixup" },
1756 [TODO_SQUASH
] = { 's', "squash" },
1757 [TODO_EXEC
] = { 'x', "exec" },
1758 [TODO_BREAK
] = { 'b', "break" },
1759 [TODO_LABEL
] = { 'l', "label" },
1760 [TODO_RESET
] = { 't', "reset" },
1761 [TODO_MERGE
] = { 'm', "merge" },
1762 [TODO_UPDATE_REF
] = { 'u', "update-ref" },
1763 [TODO_NOOP
] = { 0, "noop" },
1764 [TODO_DROP
] = { 'd', "drop" },
1765 [TODO_COMMENT
] = { 0, NULL
},
1768 static const char *command_to_string(const enum todo_command command
)
1770 if (command
< TODO_COMMENT
)
1771 return todo_command_info
[command
].str
;
1772 die(_("unknown command: %d"), command
);
1775 static char command_to_char(const enum todo_command command
)
1777 if (command
< TODO_COMMENT
)
1778 return todo_command_info
[command
].c
;
1779 return comment_line_char
;
1782 static int is_noop(const enum todo_command command
)
1784 return TODO_NOOP
<= command
;
1787 static int is_fixup(enum todo_command command
)
1789 return command
== TODO_FIXUP
|| command
== TODO_SQUASH
;
1792 /* Does this command create a (non-merge) commit? */
1793 static int is_pick_or_similar(enum todo_command command
)
1808 enum todo_item_flags
{
1809 TODO_EDIT_MERGE_MSG
= (1 << 0),
1810 TODO_REPLACE_FIXUP_MSG
= (1 << 1),
1811 TODO_EDIT_FIXUP_MSG
= (1 << 2),
1814 static const char first_commit_msg_str
[] = N_("This is the 1st commit message:");
1815 static const char nth_commit_msg_fmt
[] = N_("This is the commit message #%d:");
1816 static const char skip_first_commit_msg_str
[] = N_("The 1st commit message will be skipped:");
1817 static const char skip_nth_commit_msg_fmt
[] = N_("The commit message #%d will be skipped:");
1818 static const char combined_commit_msg_fmt
[] = N_("This is a combination of %d commits.");
1820 static int is_fixup_flag(enum todo_command command
, unsigned flag
)
1822 return command
== TODO_FIXUP
&& ((flag
& TODO_REPLACE_FIXUP_MSG
) ||
1823 (flag
& TODO_EDIT_FIXUP_MSG
));
1827 * Wrapper around strbuf_add_commented_lines() which avoids double
1828 * commenting commit subjects.
1830 static void add_commented_lines(struct strbuf
*buf
, const void *str
, size_t len
)
1832 const char *s
= str
;
1833 while (len
> 0 && s
[0] == comment_line_char
) {
1835 const char *n
= memchr(s
, '\n', len
);
1840 strbuf_add(buf
, s
, count
);
1844 strbuf_add_commented_lines(buf
, s
, len
);
1847 /* Does the current fixup chain contain a squash command? */
1848 static int seen_squash(struct replay_opts
*opts
)
1850 return starts_with(opts
->current_fixups
.buf
, "squash") ||
1851 strstr(opts
->current_fixups
.buf
, "\nsquash");
1854 static void update_comment_bufs(struct strbuf
*buf1
, struct strbuf
*buf2
, int n
)
1856 strbuf_setlen(buf1
, 2);
1857 strbuf_addf(buf1
, _(nth_commit_msg_fmt
), n
);
1858 strbuf_addch(buf1
, '\n');
1859 strbuf_setlen(buf2
, 2);
1860 strbuf_addf(buf2
, _(skip_nth_commit_msg_fmt
), n
);
1861 strbuf_addch(buf2
, '\n');
1865 * Comment out any un-commented commit messages, updating the message comments
1866 * to say they will be skipped but do not comment out the empty lines that
1867 * surround commit messages and their comments.
1869 static void update_squash_message_for_fixup(struct strbuf
*msg
)
1871 void (*copy_lines
)(struct strbuf
*, const void *, size_t) = strbuf_add
;
1872 struct strbuf buf1
= STRBUF_INIT
, buf2
= STRBUF_INIT
;
1873 const char *s
, *start
;
1875 size_t orig_msg_len
;
1878 strbuf_addf(&buf1
, "# %s\n", _(first_commit_msg_str
));
1879 strbuf_addf(&buf2
, "# %s\n", _(skip_first_commit_msg_str
));
1880 s
= start
= orig_msg
= strbuf_detach(msg
, &orig_msg_len
);
1884 if (skip_prefix(s
, buf1
.buf
, &next
)) {
1886 * Copy the last message, preserving the blank line
1887 * preceding the current line
1889 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1890 copy_lines(msg
, start
, s
- start
- off
);
1892 strbuf_addch(msg
, '\n');
1894 * The next message needs to be commented out but the
1895 * message header is already commented out so just copy
1896 * it and the blank line that follows it.
1898 strbuf_addbuf(msg
, &buf2
);
1900 strbuf_addch(msg
, *next
++);
1902 copy_lines
= add_commented_lines
;
1903 update_comment_bufs(&buf1
, &buf2
, ++i
);
1904 } else if (skip_prefix(s
, buf2
.buf
, &next
)) {
1905 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1906 copy_lines(msg
, start
, s
- start
- off
);
1909 copy_lines
= strbuf_add
;
1910 update_comment_bufs(&buf1
, &buf2
, ++i
);
1912 s
= strchr(s
, '\n');
1917 copy_lines(msg
, start
, orig_msg_len
- (start
- orig_msg
));
1919 strbuf_release(&buf1
);
1920 strbuf_release(&buf2
);
1923 static int append_squash_message(struct strbuf
*buf
, const char *body
,
1924 enum todo_command command
, struct replay_opts
*opts
,
1927 const char *fixup_msg
;
1928 size_t commented_len
= 0, fixup_off
;
1930 * amend is non-interactive and not normally used with fixup!
1931 * or squash! commits, so only comment out those subjects when
1932 * squashing commit messages.
1934 if (starts_with(body
, "amend!") ||
1935 ((command
== TODO_SQUASH
|| seen_squash(opts
)) &&
1936 (starts_with(body
, "squash!") || starts_with(body
, "fixup!"))))
1937 commented_len
= commit_subject_length(body
);
1939 strbuf_addf(buf
, "\n%c ", comment_line_char
);
1940 strbuf_addf(buf
, _(nth_commit_msg_fmt
),
1941 ++opts
->current_fixup_count
+ 1);
1942 strbuf_addstr(buf
, "\n\n");
1943 strbuf_add_commented_lines(buf
, body
, commented_len
);
1944 /* buf->buf may be reallocated so store an offset into the buffer */
1945 fixup_off
= buf
->len
;
1946 strbuf_addstr(buf
, body
+ commented_len
);
1948 /* fixup -C after squash behaves like squash */
1949 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
)) {
1951 * We're replacing the commit message so we need to
1952 * append the Signed-off-by: trailer if the user
1953 * requested '--signoff'.
1956 append_signoff(buf
, 0, 0);
1958 if ((command
== TODO_FIXUP
) &&
1959 (flag
& TODO_REPLACE_FIXUP_MSG
) &&
1960 (file_exists(rebase_path_fixup_msg()) ||
1961 !file_exists(rebase_path_squash_msg()))) {
1962 fixup_msg
= skip_blank_lines(buf
->buf
+ fixup_off
);
1963 if (write_message(fixup_msg
, strlen(fixup_msg
),
1964 rebase_path_fixup_msg(), 0) < 0)
1965 return error(_("cannot write '%s'"),
1966 rebase_path_fixup_msg());
1968 unlink(rebase_path_fixup_msg());
1971 unlink(rebase_path_fixup_msg());
1977 static int update_squash_messages(struct repository
*r
,
1978 enum todo_command command
,
1979 struct commit
*commit
,
1980 struct replay_opts
*opts
,
1983 struct strbuf buf
= STRBUF_INIT
;
1985 const char *message
, *body
;
1986 const char *encoding
= get_commit_output_encoding();
1988 if (opts
->current_fixup_count
> 0) {
1989 struct strbuf header
= STRBUF_INIT
;
1992 if (strbuf_read_file(&buf
, rebase_path_squash_msg(), 9) <= 0)
1993 return error(_("could not read '%s'"),
1994 rebase_path_squash_msg());
1996 eol
= buf
.buf
[0] != comment_line_char
?
1997 buf
.buf
: strchrnul(buf
.buf
, '\n');
1999 strbuf_addf(&header
, "%c ", comment_line_char
);
2000 strbuf_addf(&header
, _(combined_commit_msg_fmt
),
2001 opts
->current_fixup_count
+ 2);
2002 strbuf_splice(&buf
, 0, eol
- buf
.buf
, header
.buf
, header
.len
);
2003 strbuf_release(&header
);
2004 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
))
2005 update_squash_message_for_fixup(&buf
);
2007 struct object_id head
;
2008 struct commit
*head_commit
;
2009 const char *head_message
, *body
;
2011 if (repo_get_oid(r
, "HEAD", &head
))
2012 return error(_("need a HEAD to fixup"));
2013 if (!(head_commit
= lookup_commit_reference(r
, &head
)))
2014 return error(_("could not read HEAD"));
2015 if (!(head_message
= repo_logmsg_reencode(r
, head_commit
, NULL
,
2017 return error(_("could not read HEAD's commit message"));
2019 find_commit_subject(head_message
, &body
);
2020 if (command
== TODO_FIXUP
&& !flag
&& write_message(body
, strlen(body
),
2021 rebase_path_fixup_msg(), 0) < 0) {
2022 repo_unuse_commit_buffer(r
, head_commit
, head_message
);
2023 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
2025 strbuf_addf(&buf
, "%c ", comment_line_char
);
2026 strbuf_addf(&buf
, _(combined_commit_msg_fmt
), 2);
2027 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
2028 strbuf_addstr(&buf
, is_fixup_flag(command
, flag
) ?
2029 _(skip_first_commit_msg_str
) :
2030 _(first_commit_msg_str
));
2031 strbuf_addstr(&buf
, "\n\n");
2032 if (is_fixup_flag(command
, flag
))
2033 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
2035 strbuf_addstr(&buf
, body
);
2037 repo_unuse_commit_buffer(r
, head_commit
, head_message
);
2040 if (!(message
= repo_logmsg_reencode(r
, commit
, NULL
, encoding
)))
2041 return error(_("could not read commit message of %s"),
2042 oid_to_hex(&commit
->object
.oid
));
2043 find_commit_subject(message
, &body
);
2045 if (command
== TODO_SQUASH
|| is_fixup_flag(command
, flag
)) {
2046 res
= append_squash_message(&buf
, body
, command
, opts
, flag
);
2047 } else if (command
== TODO_FIXUP
) {
2048 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
2049 strbuf_addf(&buf
, _(skip_nth_commit_msg_fmt
),
2050 ++opts
->current_fixup_count
+ 1);
2051 strbuf_addstr(&buf
, "\n\n");
2052 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
2054 return error(_("unknown command: %d"), command
);
2055 repo_unuse_commit_buffer(r
, commit
, message
);
2058 res
= write_message(buf
.buf
, buf
.len
, rebase_path_squash_msg(),
2060 strbuf_release(&buf
);
2063 strbuf_addf(&opts
->current_fixups
, "%s%s %s",
2064 opts
->current_fixups
.len
? "\n" : "",
2065 command_to_string(command
),
2066 oid_to_hex(&commit
->object
.oid
));
2067 res
= write_message(opts
->current_fixups
.buf
,
2068 opts
->current_fixups
.len
,
2069 rebase_path_current_fixups(), 0);
2075 static void flush_rewritten_pending(void)
2077 struct strbuf buf
= STRBUF_INIT
;
2078 struct object_id newoid
;
2081 if (strbuf_read_file(&buf
, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ
+ 1) * 2) > 0 &&
2082 !repo_get_oid(the_repository
, "HEAD", &newoid
) &&
2083 (out
= fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
2084 char *bol
= buf
.buf
, *eol
;
2087 eol
= strchrnul(bol
, '\n');
2088 fprintf(out
, "%.*s %s\n", (int)(eol
- bol
),
2089 bol
, oid_to_hex(&newoid
));
2095 unlink(rebase_path_rewritten_pending());
2097 strbuf_release(&buf
);
2100 static void record_in_rewritten(struct object_id
*oid
,
2101 enum todo_command next_command
)
2103 FILE *out
= fopen_or_warn(rebase_path_rewritten_pending(), "a");
2108 fprintf(out
, "%s\n", oid_to_hex(oid
));
2111 if (!is_fixup(next_command
))
2112 flush_rewritten_pending();
2115 static int should_edit(struct replay_opts
*opts
) {
2118 * Note that we only handle the case of non-conflicted
2119 * commits; continue_single_pick() handles the conflicted
2120 * commits itself instead of calling this function.
2122 return (opts
->action
== REPLAY_REVERT
&& isatty(0)) ? 1 : 0;
2126 static void refer_to_commit(struct replay_opts
*opts
,
2127 struct strbuf
*msgbuf
, struct commit
*commit
)
2129 if (opts
->commit_use_reference
) {
2130 struct pretty_print_context ctx
= {
2131 .abbrev
= DEFAULT_ABBREV
,
2132 .date_mode
.type
= DATE_SHORT
,
2134 repo_format_commit_message(the_repository
, commit
,
2135 "%h (%s, %ad)", msgbuf
, &ctx
);
2137 strbuf_addstr(msgbuf
, oid_to_hex(&commit
->object
.oid
));
2141 static int do_pick_commit(struct repository
*r
,
2142 struct todo_item
*item
,
2143 struct replay_opts
*opts
,
2144 int final_fixup
, int *check_todo
)
2146 unsigned int flags
= should_edit(opts
) ? EDIT_MSG
: 0;
2147 const char *msg_file
= should_edit(opts
) ? NULL
: git_path_merge_msg(r
);
2148 struct object_id head
;
2149 struct commit
*base
, *next
, *parent
;
2150 const char *base_label
, *next_label
;
2151 char *author
= NULL
;
2152 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
2153 struct strbuf msgbuf
= STRBUF_INIT
;
2154 int res
, unborn
= 0, reword
= 0, allow
, drop_commit
;
2155 enum todo_command command
= item
->command
;
2156 struct commit
*commit
= item
->commit
;
2158 if (opts
->no_commit
) {
2160 * We do not intend to commit immediately. We just want to
2161 * merge the differences in, so let's compute the tree
2162 * that represents the "current" state for the merge machinery
2165 if (write_index_as_tree(&head
, r
->index
, r
->index_file
, 0, NULL
))
2166 return error(_("your index file is unmerged."));
2168 unborn
= repo_get_oid(r
, "HEAD", &head
);
2169 /* Do we want to generate a root commit? */
2170 if (is_pick_or_similar(command
) && opts
->have_squash_onto
&&
2171 oideq(&head
, &opts
->squash_onto
)) {
2172 if (is_fixup(command
))
2173 return error(_("cannot fixup root commit"));
2174 flags
|= CREATE_ROOT_COMMIT
;
2177 oidcpy(&head
, the_hash_algo
->empty_tree
);
2178 if (index_differs_from(r
, unborn
? empty_tree_oid_hex() : "HEAD",
2180 return error_dirty_index(r
, opts
);
2182 discard_index(r
->index
);
2184 if (!commit
->parents
)
2186 else if (commit
->parents
->next
) {
2187 /* Reverting or cherry-picking a merge commit */
2189 struct commit_list
*p
;
2191 if (!opts
->mainline
)
2192 return error(_("commit %s is a merge but no -m option was given."),
2193 oid_to_hex(&commit
->object
.oid
));
2195 for (cnt
= 1, p
= commit
->parents
;
2196 cnt
!= opts
->mainline
&& p
;
2199 if (cnt
!= opts
->mainline
|| !p
)
2200 return error(_("commit %s does not have parent %d"),
2201 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2203 } else if (1 < opts
->mainline
)
2205 * Non-first parent explicitly specified as mainline for
2208 return error(_("commit %s does not have parent %d"),
2209 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2211 parent
= commit
->parents
->item
;
2213 if (get_message(commit
, &msg
) != 0)
2214 return error(_("cannot get commit message for %s"),
2215 oid_to_hex(&commit
->object
.oid
));
2217 if (opts
->allow_ff
&& !is_fixup(command
) &&
2218 ((parent
&& oideq(&parent
->object
.oid
, &head
)) ||
2219 (!parent
&& unborn
))) {
2220 if (is_rebase_i(opts
))
2221 write_author_script(msg
.message
);
2222 res
= fast_forward_to(r
, &commit
->object
.oid
, &head
, unborn
,
2224 if (res
|| command
!= TODO_REWORD
)
2228 goto fast_forward_edit
;
2230 if (parent
&& repo_parse_commit(r
, parent
) < 0)
2231 /* TRANSLATORS: The first %s will be a "todo" command like
2232 "revert" or "pick", the second %s a SHA1. */
2233 return error(_("%s: cannot parse parent commit %s"),
2234 command_to_string(command
),
2235 oid_to_hex(&parent
->object
.oid
));
2238 * "commit" is an existing commit. We would want to apply
2239 * the difference it introduces since its first parent "prev"
2240 * on top of the current HEAD if we are cherry-pick. Or the
2241 * reverse of it if we are revert.
2244 if (command
== TODO_REVERT
) {
2246 base_label
= msg
.label
;
2248 next_label
= msg
.parent_label
;
2249 if (opts
->commit_use_reference
) {
2250 strbuf_addstr(&msgbuf
,
2251 "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***");
2253 strbuf_addstr(&msgbuf
, "Revert \"");
2254 strbuf_addstr(&msgbuf
, msg
.subject
);
2255 strbuf_addstr(&msgbuf
, "\"");
2257 strbuf_addstr(&msgbuf
, "\n\nThis reverts commit ");
2258 refer_to_commit(opts
, &msgbuf
, commit
);
2260 if (commit
->parents
&& commit
->parents
->next
) {
2261 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
2262 refer_to_commit(opts
, &msgbuf
, parent
);
2264 strbuf_addstr(&msgbuf
, ".\n");
2269 base_label
= msg
.parent_label
;
2271 next_label
= msg
.label
;
2273 /* Append the commit log message to msgbuf. */
2274 if (find_commit_subject(msg
.message
, &p
))
2275 strbuf_addstr(&msgbuf
, p
);
2277 if (opts
->record_origin
) {
2278 strbuf_complete_line(&msgbuf
);
2279 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
2280 strbuf_addch(&msgbuf
, '\n');
2281 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
2282 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
2283 strbuf_addstr(&msgbuf
, ")\n");
2285 if (!is_fixup(command
))
2286 author
= get_author(msg
.message
);
2289 if (command
== TODO_REWORD
)
2291 else if (is_fixup(command
)) {
2292 if (update_squash_messages(r
, command
, commit
,
2293 opts
, item
->flags
)) {
2299 msg_file
= rebase_path_squash_msg();
2300 else if (file_exists(rebase_path_fixup_msg())) {
2301 flags
|= VERBATIM_MSG
;
2302 msg_file
= rebase_path_fixup_msg();
2304 const char *dest
= git_path_squash_msg(r
);
2306 if (copy_file(dest
, rebase_path_squash_msg(), 0666)) {
2307 res
= error(_("could not rename '%s' to '%s'"),
2308 rebase_path_squash_msg(), dest
);
2311 unlink(git_path_merge_msg(r
));
2317 if (opts
->signoff
&& !is_fixup(command
))
2318 append_signoff(&msgbuf
, 0, 0);
2320 if (is_rebase_i(opts
) && write_author_script(msg
.message
) < 0)
2322 else if (!opts
->strategy
||
2323 !strcmp(opts
->strategy
, "recursive") ||
2324 !strcmp(opts
->strategy
, "ort") ||
2325 command
== TODO_REVERT
) {
2326 res
= do_recursive_merge(r
, base
, next
, base_label
, next_label
,
2327 &head
, &msgbuf
, opts
);
2331 res
|= write_message(msgbuf
.buf
, msgbuf
.len
,
2332 git_path_merge_msg(r
), 0);
2334 struct commit_list
*common
= NULL
;
2335 struct commit_list
*remotes
= NULL
;
2337 res
= write_message(msgbuf
.buf
, msgbuf
.len
,
2338 git_path_merge_msg(r
), 0);
2340 commit_list_insert(base
, &common
);
2341 commit_list_insert(next
, &remotes
);
2342 res
|= try_merge_command(r
, opts
->strategy
,
2343 opts
->xopts_nr
, (const char **)opts
->xopts
,
2344 common
, oid_to_hex(&head
), remotes
);
2345 free_commit_list(common
);
2346 free_commit_list(remotes
);
2350 * If the merge was clean or if it failed due to conflict, we write
2351 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2352 * However, if the merge did not even start, then we don't want to
2355 if ((command
== TODO_PICK
|| command
== TODO_REWORD
||
2356 command
== TODO_EDIT
) && !opts
->no_commit
&&
2357 (res
== 0 || res
== 1) &&
2358 update_ref(NULL
, "CHERRY_PICK_HEAD", &commit
->object
.oid
, NULL
,
2359 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2361 if (command
== TODO_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1) &&
2362 update_ref(NULL
, "REVERT_HEAD", &commit
->object
.oid
, NULL
,
2363 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2367 error(command
== TODO_REVERT
2368 ? _("could not revert %s... %s")
2369 : _("could not apply %s... %s"),
2370 short_commit_name(commit
), msg
.subject
);
2371 print_advice(r
, res
== 1, opts
);
2372 repo_rerere(r
, opts
->allow_rerere_auto
);
2377 allow
= allow_empty(r
, opts
, commit
);
2381 } else if (allow
== 1) {
2382 flags
|= ALLOW_EMPTY
;
2383 } else if (allow
== 2) {
2385 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
2387 unlink(git_path_merge_msg(r
));
2388 unlink(git_path_auto_merge(r
));
2390 _("dropping %s %s -- patch contents already upstream\n"),
2391 oid_to_hex(&commit
->object
.oid
), msg
.subject
);
2392 } /* else allow == 0 and there's nothing special to do */
2393 if (!opts
->no_commit
&& !drop_commit
) {
2394 if (author
|| command
== TODO_REVERT
|| (flags
& AMEND_MSG
))
2395 res
= do_commit(r
, msg_file
, author
, opts
, flags
,
2396 commit
? &commit
->object
.oid
: NULL
);
2398 res
= error(_("unable to parse commit author"));
2399 *check_todo
= !!(flags
& EDIT_MSG
);
2400 if (!res
&& reword
) {
2402 res
= run_git_commit(NULL
, opts
, EDIT_MSG
|
2403 VERIFY_MSG
| AMEND_MSG
|
2404 (flags
& ALLOW_EMPTY
));
2410 if (!res
&& final_fixup
) {
2411 unlink(rebase_path_fixup_msg());
2412 unlink(rebase_path_squash_msg());
2413 unlink(rebase_path_current_fixups());
2414 strbuf_reset(&opts
->current_fixups
);
2415 opts
->current_fixup_count
= 0;
2419 free_message(commit
, &msg
);
2421 strbuf_release(&msgbuf
);
2422 update_abort_safety_file();
2427 static int prepare_revs(struct replay_opts
*opts
)
2430 * picking (but not reverting) ranges (but not individual revisions)
2431 * should be done in reverse
2433 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
2434 opts
->revs
->reverse
^= 1;
2436 if (prepare_revision_walk(opts
->revs
))
2437 return error(_("revision walk setup failed"));
2442 static int read_and_refresh_cache(struct repository
*r
,
2443 struct replay_opts
*opts
)
2445 struct lock_file index_lock
= LOCK_INIT
;
2446 int index_fd
= repo_hold_locked_index(r
, &index_lock
, 0);
2447 if (repo_read_index(r
) < 0) {
2448 rollback_lock_file(&index_lock
);
2449 return error(_("git %s: failed to read the index"),
2452 refresh_index(r
->index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
2454 if (index_fd
>= 0) {
2455 if (write_locked_index(r
->index
, &index_lock
,
2456 COMMIT_LOCK
| SKIP_IF_UNCHANGED
)) {
2457 return error(_("git %s: failed to refresh the index"),
2463 * If we are resolving merges in any way other than "ort", then
2464 * expand the sparse index.
2466 if (opts
->strategy
&& strcmp(opts
->strategy
, "ort"))
2467 ensure_full_index(r
->index
);
2471 void todo_list_release(struct todo_list
*todo_list
)
2473 strbuf_release(&todo_list
->buf
);
2474 FREE_AND_NULL(todo_list
->items
);
2475 todo_list
->nr
= todo_list
->alloc
= 0;
2478 static struct todo_item
*append_new_todo(struct todo_list
*todo_list
)
2480 ALLOC_GROW(todo_list
->items
, todo_list
->nr
+ 1, todo_list
->alloc
);
2481 todo_list
->total_nr
++;
2482 return todo_list
->items
+ todo_list
->nr
++;
2485 const char *todo_item_get_arg(struct todo_list
*todo_list
,
2486 struct todo_item
*item
)
2488 return todo_list
->buf
.buf
+ item
->arg_offset
;
2491 static int is_command(enum todo_command command
, const char **bol
)
2493 const char *str
= todo_command_info
[command
].str
;
2494 const char nick
= todo_command_info
[command
].c
;
2495 const char *p
= *bol
;
2497 return (skip_prefix(p
, str
, &p
) || (nick
&& *p
++ == nick
)) &&
2498 (*p
== ' ' || *p
== '\t' || *p
== '\n' || *p
== '\r' || !*p
) &&
2502 static int check_label_or_ref_arg(enum todo_command command
, const char *arg
)
2507 * '#' is not a valid label as the merge command uses it to
2508 * separate merge parents from the commit subject.
2510 if (!strcmp(arg
, "#") ||
2511 check_refname_format(arg
, REFNAME_ALLOW_ONELEVEL
))
2512 return error(_("'%s' is not a valid label"), arg
);
2515 case TODO_UPDATE_REF
:
2516 if (check_refname_format(arg
, REFNAME_ALLOW_ONELEVEL
))
2517 return error(_("'%s' is not a valid refname"), arg
);
2518 if (check_refname_format(arg
, 0))
2519 return error(_("update-ref requires a fully qualified "
2520 "refname e.g. refs/heads/%s"), arg
);
2524 BUG("unexpected todo_command");
2530 static int parse_insn_line(struct repository
*r
, struct todo_item
*item
,
2531 const char *buf
, const char *bol
, char *eol
)
2533 struct object_id commit_oid
;
2534 char *end_of_object_name
;
2535 int i
, saved
, status
, padding
;
2540 bol
+= strspn(bol
, " \t");
2542 if (bol
== eol
|| *bol
== '\r' || *bol
== comment_line_char
) {
2543 item
->command
= TODO_COMMENT
;
2544 item
->commit
= NULL
;
2545 item
->arg_offset
= bol
- buf
;
2546 item
->arg_len
= eol
- bol
;
2550 for (i
= 0; i
< TODO_COMMENT
; i
++)
2551 if (is_command(i
, &bol
)) {
2555 if (i
>= TODO_COMMENT
)
2556 return error(_("invalid command '%.*s'"),
2557 (int)strcspn(bol
, " \t\r\n"), bol
);
2559 /* Eat up extra spaces/ tabs before object name */
2560 padding
= strspn(bol
, " \t");
2563 if (item
->command
== TODO_NOOP
|| item
->command
== TODO_BREAK
) {
2565 return error(_("%s does not accept arguments: '%s'"),
2566 command_to_string(item
->command
), bol
);
2567 item
->commit
= NULL
;
2568 item
->arg_offset
= bol
- buf
;
2569 item
->arg_len
= eol
- bol
;
2574 return error(_("missing arguments for %s"),
2575 command_to_string(item
->command
));
2577 if (item
->command
== TODO_EXEC
|| item
->command
== TODO_LABEL
||
2578 item
->command
== TODO_RESET
|| item
->command
== TODO_UPDATE_REF
) {
2581 item
->commit
= NULL
;
2582 item
->arg_offset
= bol
- buf
;
2583 item
->arg_len
= (int)(eol
- bol
);
2584 if (item
->command
== TODO_LABEL
||
2585 item
->command
== TODO_UPDATE_REF
) {
2588 ret
= check_label_or_ref_arg(item
->command
, bol
);
2594 if (item
->command
== TODO_FIXUP
) {
2595 if (skip_prefix(bol
, "-C", &bol
)) {
2596 bol
+= strspn(bol
, " \t");
2597 item
->flags
|= TODO_REPLACE_FIXUP_MSG
;
2598 } else if (skip_prefix(bol
, "-c", &bol
)) {
2599 bol
+= strspn(bol
, " \t");
2600 item
->flags
|= TODO_EDIT_FIXUP_MSG
;
2604 if (item
->command
== TODO_MERGE
) {
2605 if (skip_prefix(bol
, "-C", &bol
))
2606 bol
+= strspn(bol
, " \t");
2607 else if (skip_prefix(bol
, "-c", &bol
)) {
2608 bol
+= strspn(bol
, " \t");
2609 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2611 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2612 item
->commit
= NULL
;
2613 item
->arg_offset
= bol
- buf
;
2614 item
->arg_len
= (int)(eol
- bol
);
2619 end_of_object_name
= (char *) bol
+ strcspn(bol
, " \t\n");
2620 saved
= *end_of_object_name
;
2621 *end_of_object_name
= '\0';
2622 status
= repo_get_oid(r
, bol
, &commit_oid
);
2624 error(_("could not parse '%s'"), bol
); /* return later */
2625 *end_of_object_name
= saved
;
2627 bol
= end_of_object_name
+ strspn(end_of_object_name
, " \t");
2628 item
->arg_offset
= bol
- buf
;
2629 item
->arg_len
= (int)(eol
- bol
);
2634 item
->commit
= lookup_commit_reference(r
, &commit_oid
);
2635 return item
->commit
? 0 : -1;
2638 int sequencer_get_last_command(struct repository
*r
, enum replay_action
*action
)
2640 const char *todo_file
, *bol
;
2641 struct strbuf buf
= STRBUF_INIT
;
2644 todo_file
= git_path_todo_file();
2645 if (strbuf_read_file(&buf
, todo_file
, 0) < 0) {
2646 if (errno
== ENOENT
|| errno
== ENOTDIR
)
2649 return error_errno("unable to open '%s'", todo_file
);
2651 bol
= buf
.buf
+ strspn(buf
.buf
, " \t\r\n");
2652 if (is_command(TODO_PICK
, &bol
) && (*bol
== ' ' || *bol
== '\t'))
2653 *action
= REPLAY_PICK
;
2654 else if (is_command(TODO_REVERT
, &bol
) &&
2655 (*bol
== ' ' || *bol
== '\t'))
2656 *action
= REPLAY_REVERT
;
2660 strbuf_release(&buf
);
2665 int todo_list_parse_insn_buffer(struct repository
*r
, char *buf
,
2666 struct todo_list
*todo_list
)
2668 struct todo_item
*item
;
2669 char *p
= buf
, *next_p
;
2670 int i
, res
= 0, fixup_okay
= file_exists(rebase_path_done());
2672 todo_list
->current
= todo_list
->nr
= 0;
2674 for (i
= 1; *p
; i
++, p
= next_p
) {
2675 char *eol
= strchrnul(p
, '\n');
2677 next_p
= *eol
? eol
+ 1 /* skip LF */ : eol
;
2679 if (p
!= eol
&& eol
[-1] == '\r')
2680 eol
--; /* strip Carriage Return */
2682 item
= append_new_todo(todo_list
);
2683 item
->offset_in_buf
= p
- todo_list
->buf
.buf
;
2684 if (parse_insn_line(r
, item
, buf
, p
, eol
)) {
2685 res
= error(_("invalid line %d: %.*s"),
2686 i
, (int)(eol
- p
), p
);
2687 item
->command
= TODO_COMMENT
+ 1;
2688 item
->arg_offset
= p
- buf
;
2689 item
->arg_len
= (int)(eol
- p
);
2690 item
->commit
= NULL
;
2695 else if (is_fixup(item
->command
))
2696 return error(_("cannot '%s' without a previous commit"),
2697 command_to_string(item
->command
));
2698 else if (!is_noop(item
->command
))
2705 static int count_commands(struct todo_list
*todo_list
)
2709 for (i
= 0; i
< todo_list
->nr
; i
++)
2710 if (todo_list
->items
[i
].command
!= TODO_COMMENT
)
2716 static int get_item_line_offset(struct todo_list
*todo_list
, int index
)
2718 return index
< todo_list
->nr
?
2719 todo_list
->items
[index
].offset_in_buf
: todo_list
->buf
.len
;
2722 static const char *get_item_line(struct todo_list
*todo_list
, int index
)
2724 return todo_list
->buf
.buf
+ get_item_line_offset(todo_list
, index
);
2727 static int get_item_line_length(struct todo_list
*todo_list
, int index
)
2729 return get_item_line_offset(todo_list
, index
+ 1)
2730 - get_item_line_offset(todo_list
, index
);
2733 static ssize_t
strbuf_read_file_or_whine(struct strbuf
*sb
, const char *path
)
2738 fd
= open(path
, O_RDONLY
);
2740 return error_errno(_("could not open '%s'"), path
);
2741 len
= strbuf_read(sb
, fd
, 0);
2744 return error(_("could not read '%s'."), path
);
2748 static int have_finished_the_last_pick(void)
2750 struct strbuf buf
= STRBUF_INIT
;
2752 const char *todo_path
= git_path_todo_file();
2755 if (strbuf_read_file(&buf
, todo_path
, 0) < 0) {
2756 if (errno
== ENOENT
) {
2759 error_errno("unable to open '%s'", todo_path
);
2763 /* If there is only one line then we are done */
2764 eol
= strchr(buf
.buf
, '\n');
2765 if (!eol
|| !eol
[1])
2768 strbuf_release(&buf
);
2773 void sequencer_post_commit_cleanup(struct repository
*r
, int verbose
)
2775 struct replay_opts opts
= REPLAY_OPTS_INIT
;
2776 int need_cleanup
= 0;
2778 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
2779 if (!refs_delete_ref(get_main_ref_store(r
), "",
2780 "CHERRY_PICK_HEAD", NULL
, 0) &&
2782 warning(_("cancelling a cherry picking in progress"));
2783 opts
.action
= REPLAY_PICK
;
2787 if (refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
2788 if (!refs_delete_ref(get_main_ref_store(r
), "", "REVERT_HEAD",
2791 warning(_("cancelling a revert in progress"));
2792 opts
.action
= REPLAY_REVERT
;
2796 unlink(git_path_auto_merge(r
));
2801 if (!have_finished_the_last_pick())
2804 sequencer_remove_state(&opts
);
2807 static void todo_list_write_total_nr(struct todo_list
*todo_list
)
2809 FILE *f
= fopen_or_warn(rebase_path_msgtotal(), "w");
2812 fprintf(f
, "%d\n", todo_list
->total_nr
);
2817 static int read_populate_todo(struct repository
*r
,
2818 struct todo_list
*todo_list
,
2819 struct replay_opts
*opts
)
2821 const char *todo_file
= get_todo_path(opts
);
2824 strbuf_reset(&todo_list
->buf
);
2825 if (strbuf_read_file_or_whine(&todo_list
->buf
, todo_file
) < 0)
2828 res
= todo_list_parse_insn_buffer(r
, todo_list
->buf
.buf
, todo_list
);
2830 if (is_rebase_i(opts
))
2831 return error(_("please fix this using "
2832 "'git rebase --edit-todo'."));
2833 return error(_("unusable instruction sheet: '%s'"), todo_file
);
2836 if (!todo_list
->nr
&&
2837 (!is_rebase_i(opts
) || !file_exists(rebase_path_done())))
2838 return error(_("no commits parsed."));
2840 if (!is_rebase_i(opts
)) {
2841 enum todo_command valid
=
2842 opts
->action
== REPLAY_PICK
? TODO_PICK
: TODO_REVERT
;
2845 for (i
= 0; i
< todo_list
->nr
; i
++)
2846 if (valid
== todo_list
->items
[i
].command
)
2848 else if (valid
== TODO_PICK
)
2849 return error(_("cannot cherry-pick during a revert."));
2851 return error(_("cannot revert during a cherry-pick."));
2854 if (is_rebase_i(opts
)) {
2855 struct todo_list done
= TODO_LIST_INIT
;
2857 if (strbuf_read_file(&done
.buf
, rebase_path_done(), 0) > 0 &&
2858 !todo_list_parse_insn_buffer(r
, done
.buf
.buf
, &done
))
2859 todo_list
->done_nr
= count_commands(&done
);
2861 todo_list
->done_nr
= 0;
2863 todo_list
->total_nr
= todo_list
->done_nr
2864 + count_commands(todo_list
);
2865 todo_list_release(&done
);
2867 todo_list_write_total_nr(todo_list
);
2873 static int git_config_string_dup(char **dest
,
2874 const char *var
, const char *value
)
2877 return config_error_nonbool(var
);
2879 *dest
= xstrdup(value
);
2883 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
2885 struct replay_opts
*opts
= data
;
2890 else if (!strcmp(key
, "options.no-commit"))
2891 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
2892 else if (!strcmp(key
, "options.edit"))
2893 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
2894 else if (!strcmp(key
, "options.allow-empty"))
2896 git_config_bool_or_int(key
, value
, &error_flag
);
2897 else if (!strcmp(key
, "options.allow-empty-message"))
2898 opts
->allow_empty_message
=
2899 git_config_bool_or_int(key
, value
, &error_flag
);
2900 else if (!strcmp(key
, "options.keep-redundant-commits"))
2901 opts
->keep_redundant_commits
=
2902 git_config_bool_or_int(key
, value
, &error_flag
);
2903 else if (!strcmp(key
, "options.signoff"))
2904 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
2905 else if (!strcmp(key
, "options.record-origin"))
2906 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
2907 else if (!strcmp(key
, "options.allow-ff"))
2908 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
2909 else if (!strcmp(key
, "options.mainline"))
2910 opts
->mainline
= git_config_int(key
, value
);
2911 else if (!strcmp(key
, "options.strategy"))
2912 git_config_string_dup(&opts
->strategy
, key
, value
);
2913 else if (!strcmp(key
, "options.gpg-sign"))
2914 git_config_string_dup(&opts
->gpg_sign
, key
, value
);
2915 else if (!strcmp(key
, "options.strategy-option")) {
2916 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
2917 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
2918 } else if (!strcmp(key
, "options.allow-rerere-auto"))
2919 opts
->allow_rerere_auto
=
2920 git_config_bool_or_int(key
, value
, &error_flag
) ?
2921 RERERE_AUTOUPDATE
: RERERE_NOAUTOUPDATE
;
2922 else if (!strcmp(key
, "options.default-msg-cleanup")) {
2923 opts
->explicit_cleanup
= 1;
2924 opts
->default_msg_cleanup
= get_cleanup_mode(value
, 1);
2926 return error(_("invalid key: %s"), key
);
2929 return error(_("invalid value for '%s': '%s'"), key
, value
);
2934 void parse_strategy_opts(struct replay_opts
*opts
, char *raw_opts
)
2938 char *strategy_opts_string
= raw_opts
;
2940 if (*strategy_opts_string
== ' ')
2941 strategy_opts_string
++;
2943 count
= split_cmdline(strategy_opts_string
,
2944 (const char ***)&opts
->xopts
);
2946 die(_("could not split '%s': %s"), strategy_opts_string
,
2947 split_cmdline_strerror(count
));
2948 opts
->xopts_nr
= count
;
2949 for (i
= 0; i
< opts
->xopts_nr
; i
++) {
2950 const char *arg
= opts
->xopts
[i
];
2952 skip_prefix(arg
, "--", &arg
);
2953 opts
->xopts
[i
] = xstrdup(arg
);
2957 static void read_strategy_opts(struct replay_opts
*opts
, struct strbuf
*buf
)
2960 if (!read_oneliner(buf
, rebase_path_strategy(), 0))
2962 free(opts
->strategy
);
2963 opts
->strategy
= strbuf_detach(buf
, NULL
);
2964 if (!read_oneliner(buf
, rebase_path_strategy_opts(), 0))
2967 parse_strategy_opts(opts
, buf
->buf
);
2970 static int read_populate_opts(struct replay_opts
*opts
)
2972 if (is_rebase_i(opts
)) {
2973 struct strbuf buf
= STRBUF_INIT
;
2976 if (read_oneliner(&buf
, rebase_path_gpg_sign_opt(),
2977 READ_ONELINER_SKIP_IF_EMPTY
)) {
2978 if (!starts_with(buf
.buf
, "-S"))
2981 free(opts
->gpg_sign
);
2982 opts
->gpg_sign
= xstrdup(buf
.buf
+ 2);
2987 if (read_oneliner(&buf
, rebase_path_allow_rerere_autoupdate(),
2988 READ_ONELINER_SKIP_IF_EMPTY
)) {
2989 if (!strcmp(buf
.buf
, "--rerere-autoupdate"))
2990 opts
->allow_rerere_auto
= RERERE_AUTOUPDATE
;
2991 else if (!strcmp(buf
.buf
, "--no-rerere-autoupdate"))
2992 opts
->allow_rerere_auto
= RERERE_NOAUTOUPDATE
;
2996 if (file_exists(rebase_path_verbose()))
2999 if (file_exists(rebase_path_quiet()))
3002 if (file_exists(rebase_path_signoff())) {
3007 if (file_exists(rebase_path_cdate_is_adate())) {
3009 opts
->committer_date_is_author_date
= 1;
3012 if (file_exists(rebase_path_ignore_date())) {
3014 opts
->ignore_date
= 1;
3017 if (file_exists(rebase_path_reschedule_failed_exec()))
3018 opts
->reschedule_failed_exec
= 1;
3019 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
3020 opts
->reschedule_failed_exec
= 0;
3022 if (file_exists(rebase_path_drop_redundant_commits()))
3023 opts
->drop_redundant_commits
= 1;
3025 if (file_exists(rebase_path_keep_redundant_commits()))
3026 opts
->keep_redundant_commits
= 1;
3028 read_strategy_opts(opts
, &buf
);
3031 if (read_oneliner(&opts
->current_fixups
,
3032 rebase_path_current_fixups(),
3033 READ_ONELINER_SKIP_IF_EMPTY
)) {
3034 const char *p
= opts
->current_fixups
.buf
;
3035 opts
->current_fixup_count
= 1;
3036 while ((p
= strchr(p
, '\n'))) {
3037 opts
->current_fixup_count
++;
3042 if (read_oneliner(&buf
, rebase_path_squash_onto(), 0)) {
3043 if (repo_get_oid_committish(the_repository
, buf
.buf
, &opts
->squash_onto
) < 0) {
3044 ret
= error(_("unusable squash-onto"));
3047 opts
->have_squash_onto
= 1;
3051 strbuf_release(&buf
);
3055 if (!file_exists(git_path_opts_file()))
3058 * The function git_parse_source(), called from git_config_from_file(),
3059 * may die() in case of a syntactically incorrect file. We do not care
3060 * about this case, though, because we wrote that file ourselves, so we
3061 * are pretty certain that it is syntactically correct.
3063 if (git_config_from_file(populate_opts_cb
, git_path_opts_file(), opts
) < 0)
3064 return error(_("malformed options sheet: '%s'"),
3065 git_path_opts_file());
3069 static void write_strategy_opts(struct replay_opts
*opts
)
3072 struct strbuf buf
= STRBUF_INIT
;
3074 for (i
= 0; i
< opts
->xopts_nr
; ++i
)
3075 strbuf_addf(&buf
, " --%s", opts
->xopts
[i
]);
3077 write_file(rebase_path_strategy_opts(), "%s\n", buf
.buf
);
3078 strbuf_release(&buf
);
3081 int write_basic_state(struct replay_opts
*opts
, const char *head_name
,
3082 struct commit
*onto
, const struct object_id
*orig_head
)
3085 write_file(rebase_path_head_name(), "%s\n", head_name
);
3087 write_file(rebase_path_onto(), "%s\n",
3088 oid_to_hex(&onto
->object
.oid
));
3090 write_file(rebase_path_orig_head(), "%s\n",
3091 oid_to_hex(orig_head
));
3094 write_file(rebase_path_quiet(), "%s", "");
3096 write_file(rebase_path_verbose(), "%s", "");
3098 write_file(rebase_path_strategy(), "%s\n", opts
->strategy
);
3099 if (opts
->xopts_nr
> 0)
3100 write_strategy_opts(opts
);
3102 if (opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
)
3103 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
3104 else if (opts
->allow_rerere_auto
== RERERE_NOAUTOUPDATE
)
3105 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
3108 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts
->gpg_sign
);
3110 write_file(rebase_path_signoff(), "--signoff\n");
3111 if (opts
->drop_redundant_commits
)
3112 write_file(rebase_path_drop_redundant_commits(), "%s", "");
3113 if (opts
->keep_redundant_commits
)
3114 write_file(rebase_path_keep_redundant_commits(), "%s", "");
3115 if (opts
->committer_date_is_author_date
)
3116 write_file(rebase_path_cdate_is_adate(), "%s", "");
3117 if (opts
->ignore_date
)
3118 write_file(rebase_path_ignore_date(), "%s", "");
3119 if (opts
->reschedule_failed_exec
)
3120 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
3122 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
3127 static int walk_revs_populate_todo(struct todo_list
*todo_list
,
3128 struct replay_opts
*opts
)
3130 enum todo_command command
= opts
->action
== REPLAY_PICK
?
3131 TODO_PICK
: TODO_REVERT
;
3132 const char *command_string
= todo_command_info
[command
].str
;
3133 const char *encoding
;
3134 struct commit
*commit
;
3136 if (prepare_revs(opts
))
3139 encoding
= get_log_output_encoding();
3141 while ((commit
= get_revision(opts
->revs
))) {
3142 struct todo_item
*item
= append_new_todo(todo_list
);
3143 const char *commit_buffer
= repo_logmsg_reencode(the_repository
,
3146 const char *subject
;
3149 item
->command
= command
;
3150 item
->commit
= commit
;
3151 item
->arg_offset
= 0;
3153 item
->offset_in_buf
= todo_list
->buf
.len
;
3154 subject_len
= find_commit_subject(commit_buffer
, &subject
);
3155 strbuf_addf(&todo_list
->buf
, "%s %s %.*s\n", command_string
,
3156 short_commit_name(commit
), subject_len
, subject
);
3157 repo_unuse_commit_buffer(the_repository
, commit
,
3162 return error(_("empty commit set passed"));
3167 static int create_seq_dir(struct repository
*r
)
3169 enum replay_action action
;
3170 const char *in_progress_error
= NULL
;
3171 const char *in_progress_advice
= NULL
;
3172 unsigned int advise_skip
=
3173 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD") ||
3174 refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD");
3176 if (!sequencer_get_last_command(r
, &action
)) {
3179 in_progress_error
= _("revert is already in progress");
3180 in_progress_advice
=
3181 _("try \"git revert (--continue | %s--abort | --quit)\"");
3184 in_progress_error
= _("cherry-pick is already in progress");
3185 in_progress_advice
=
3186 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
3189 BUG("unexpected action in create_seq_dir");
3192 if (in_progress_error
) {
3193 error("%s", in_progress_error
);
3194 if (advice_enabled(ADVICE_SEQUENCER_IN_USE
))
3195 advise(in_progress_advice
,
3196 advise_skip
? "--skip | " : "");
3199 if (mkdir(git_path_seq_dir(), 0777) < 0)
3200 return error_errno(_("could not create sequencer directory '%s'"),
3201 git_path_seq_dir());
3206 static int save_head(const char *head
)
3208 struct lock_file head_lock
= LOCK_INIT
;
3209 struct strbuf buf
= STRBUF_INIT
;
3213 fd
= hold_lock_file_for_update(&head_lock
, git_path_head_file(), 0);
3215 return error_errno(_("could not lock HEAD"));
3216 strbuf_addf(&buf
, "%s\n", head
);
3217 written
= write_in_full(fd
, buf
.buf
, buf
.len
);
3218 strbuf_release(&buf
);
3220 error_errno(_("could not write to '%s'"), git_path_head_file());
3221 rollback_lock_file(&head_lock
);
3224 if (commit_lock_file(&head_lock
) < 0)
3225 return error(_("failed to finalize '%s'"), git_path_head_file());
3229 static int rollback_is_safe(void)
3231 struct strbuf sb
= STRBUF_INIT
;
3232 struct object_id expected_head
, actual_head
;
3234 if (strbuf_read_file(&sb
, git_path_abort_safety_file(), 0) >= 0) {
3236 if (get_oid_hex(sb
.buf
, &expected_head
)) {
3237 strbuf_release(&sb
);
3238 die(_("could not parse %s"), git_path_abort_safety_file());
3240 strbuf_release(&sb
);
3242 else if (errno
== ENOENT
)
3243 oidclr(&expected_head
);
3245 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3247 if (repo_get_oid(the_repository
, "HEAD", &actual_head
))
3248 oidclr(&actual_head
);
3250 return oideq(&actual_head
, &expected_head
);
3253 static int reset_merge(const struct object_id
*oid
)
3255 struct child_process cmd
= CHILD_PROCESS_INIT
;
3258 strvec_pushl(&cmd
.args
, "reset", "--merge", NULL
);
3260 if (!is_null_oid(oid
))
3261 strvec_push(&cmd
.args
, oid_to_hex(oid
));
3263 return run_command(&cmd
);
3266 static int rollback_single_pick(struct repository
*r
)
3268 struct object_id head_oid
;
3270 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
3271 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
3272 return error(_("no cherry-pick or revert in progress"));
3273 if (read_ref_full("HEAD", 0, &head_oid
, NULL
))
3274 return error(_("cannot resolve HEAD"));
3275 if (is_null_oid(&head_oid
))
3276 return error(_("cannot abort from a branch yet to be born"));
3277 return reset_merge(&head_oid
);
3280 static int skip_single_pick(void)
3282 struct object_id head
;
3284 if (read_ref_full("HEAD", 0, &head
, NULL
))
3285 return error(_("cannot resolve HEAD"));
3286 return reset_merge(&head
);
3289 int sequencer_rollback(struct repository
*r
, struct replay_opts
*opts
)
3292 struct object_id oid
;
3293 struct strbuf buf
= STRBUF_INIT
;
3296 f
= fopen(git_path_head_file(), "r");
3297 if (!f
&& errno
== ENOENT
) {
3299 * There is no multiple-cherry-pick in progress.
3300 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3301 * a single-cherry-pick in progress, abort that.
3303 return rollback_single_pick(r
);
3306 return error_errno(_("cannot open '%s'"), git_path_head_file());
3307 if (strbuf_getline_lf(&buf
, f
)) {
3308 error(_("cannot read '%s': %s"), git_path_head_file(),
3309 ferror(f
) ? strerror(errno
) : _("unexpected end of file"));
3314 if (parse_oid_hex(buf
.buf
, &oid
, &p
) || *p
!= '\0') {
3315 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
3316 git_path_head_file());
3319 if (is_null_oid(&oid
)) {
3320 error(_("cannot abort from a branch yet to be born"));
3324 if (!rollback_is_safe()) {
3325 /* Do not error, just do not rollback */
3326 warning(_("You seem to have moved HEAD. "
3327 "Not rewinding, check your HEAD!"));
3329 if (reset_merge(&oid
))
3331 strbuf_release(&buf
);
3332 return sequencer_remove_state(opts
);
3334 strbuf_release(&buf
);
3338 int sequencer_skip(struct repository
*r
, struct replay_opts
*opts
)
3340 enum replay_action action
= -1;
3341 sequencer_get_last_command(r
, &action
);
3344 * Check whether the subcommand requested to skip the commit is actually
3345 * in progress and that it's safe to skip the commit.
3347 * opts->action tells us which subcommand requested to skip the commit.
3348 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3349 * action is in progress and we can skip the commit.
3351 * Otherwise we check that the last instruction was related to the
3352 * particular subcommand we're trying to execute and barf if that's not
3355 * Finally we check that the rollback is "safe", i.e., has the HEAD
3356 * moved? In this case, it doesn't make sense to "reset the merge" and
3357 * "skip the commit" as the user already handled this by committing. But
3358 * we'd not want to barf here, instead give advice on how to proceed. We
3359 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3360 * it gets removed when the user commits, so if it still exists we're
3361 * sure the user can't have committed before.
3363 switch (opts
->action
) {
3365 if (!refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
3366 if (action
!= REPLAY_REVERT
)
3367 return error(_("no revert in progress"));
3368 if (!rollback_is_safe())
3373 if (!refs_ref_exists(get_main_ref_store(r
),
3374 "CHERRY_PICK_HEAD")) {
3375 if (action
!= REPLAY_PICK
)
3376 return error(_("no cherry-pick in progress"));
3377 if (!rollback_is_safe())
3382 BUG("unexpected action in sequencer_skip");
3385 if (skip_single_pick())
3386 return error(_("failed to skip the commit"));
3387 if (!is_directory(git_path_seq_dir()))
3390 return sequencer_continue(r
, opts
);
3393 error(_("there is nothing to skip"));
3395 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
)) {
3396 advise(_("have you committed already?\n"
3397 "try \"git %s --continue\""),
3398 action
== REPLAY_REVERT
? "revert" : "cherry-pick");
3403 static int save_todo(struct todo_list
*todo_list
, struct replay_opts
*opts
)
3405 struct lock_file todo_lock
= LOCK_INIT
;
3406 const char *todo_path
= get_todo_path(opts
);
3407 int next
= todo_list
->current
, offset
, fd
;
3410 * rebase -i writes "git-rebase-todo" without the currently executing
3411 * command, appending it to "done" instead.
3413 if (is_rebase_i(opts
))
3416 fd
= hold_lock_file_for_update(&todo_lock
, todo_path
, 0);
3418 return error_errno(_("could not lock '%s'"), todo_path
);
3419 offset
= get_item_line_offset(todo_list
, next
);
3420 if (write_in_full(fd
, todo_list
->buf
.buf
+ offset
,
3421 todo_list
->buf
.len
- offset
) < 0)
3422 return error_errno(_("could not write to '%s'"), todo_path
);
3423 if (commit_lock_file(&todo_lock
) < 0)
3424 return error(_("failed to finalize '%s'"), todo_path
);
3426 if (is_rebase_i(opts
) && next
> 0) {
3427 const char *done
= rebase_path_done();
3428 int fd
= open(done
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
3433 if (write_in_full(fd
, get_item_line(todo_list
, next
- 1),
3434 get_item_line_length(todo_list
, next
- 1))
3436 ret
= error_errno(_("could not write to '%s'"), done
);
3438 ret
= error_errno(_("failed to finalize '%s'"), done
);
3444 static int save_opts(struct replay_opts
*opts
)
3446 const char *opts_file
= git_path_opts_file();
3449 if (opts
->no_commit
)
3450 res
|= git_config_set_in_file_gently(opts_file
,
3451 "options.no-commit", "true");
3452 if (opts
->edit
>= 0)
3453 res
|= git_config_set_in_file_gently(opts_file
, "options.edit",
3454 opts
->edit
? "true" : "false");
3455 if (opts
->allow_empty
)
3456 res
|= git_config_set_in_file_gently(opts_file
,
3457 "options.allow-empty", "true");
3458 if (opts
->allow_empty_message
)
3459 res
|= git_config_set_in_file_gently(opts_file
,
3460 "options.allow-empty-message", "true");
3461 if (opts
->keep_redundant_commits
)
3462 res
|= git_config_set_in_file_gently(opts_file
,
3463 "options.keep-redundant-commits", "true");
3465 res
|= git_config_set_in_file_gently(opts_file
,
3466 "options.signoff", "true");
3467 if (opts
->record_origin
)
3468 res
|= git_config_set_in_file_gently(opts_file
,
3469 "options.record-origin", "true");
3471 res
|= git_config_set_in_file_gently(opts_file
,
3472 "options.allow-ff", "true");
3473 if (opts
->mainline
) {
3474 struct strbuf buf
= STRBUF_INIT
;
3475 strbuf_addf(&buf
, "%d", opts
->mainline
);
3476 res
|= git_config_set_in_file_gently(opts_file
,
3477 "options.mainline", buf
.buf
);
3478 strbuf_release(&buf
);
3481 res
|= git_config_set_in_file_gently(opts_file
,
3482 "options.strategy", opts
->strategy
);
3484 res
|= git_config_set_in_file_gently(opts_file
,
3485 "options.gpg-sign", opts
->gpg_sign
);
3488 for (i
= 0; i
< opts
->xopts_nr
; i
++)
3489 res
|= git_config_set_multivar_in_file_gently(opts_file
,
3490 "options.strategy-option",
3491 opts
->xopts
[i
], "^$", 0);
3493 if (opts
->allow_rerere_auto
)
3494 res
|= git_config_set_in_file_gently(opts_file
,
3495 "options.allow-rerere-auto",
3496 opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
?
3499 if (opts
->explicit_cleanup
)
3500 res
|= git_config_set_in_file_gently(opts_file
,
3501 "options.default-msg-cleanup",
3502 describe_cleanup_mode(opts
->default_msg_cleanup
));
3506 static int make_patch(struct repository
*r
,
3507 struct commit
*commit
,
3508 struct replay_opts
*opts
)
3510 struct strbuf buf
= STRBUF_INIT
;
3511 struct rev_info log_tree_opt
;
3512 const char *subject
;
3513 char hex
[GIT_MAX_HEXSZ
+ 1];
3516 oid_to_hex_r(hex
, &commit
->object
.oid
);
3517 if (write_message(hex
, strlen(hex
), rebase_path_stopped_sha(), 1) < 0)
3519 res
|= write_rebase_head(&commit
->object
.oid
);
3521 strbuf_addf(&buf
, "%s/patch", get_dir(opts
));
3522 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
3523 repo_init_revisions(r
, &log_tree_opt
, NULL
);
3524 log_tree_opt
.abbrev
= 0;
3525 log_tree_opt
.diff
= 1;
3526 log_tree_opt
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
3527 log_tree_opt
.disable_stdin
= 1;
3528 log_tree_opt
.no_commit_id
= 1;
3529 log_tree_opt
.diffopt
.file
= fopen(buf
.buf
, "w");
3530 log_tree_opt
.diffopt
.use_color
= GIT_COLOR_NEVER
;
3531 if (!log_tree_opt
.diffopt
.file
)
3532 res
|= error_errno(_("could not open '%s'"), buf
.buf
);
3534 res
|= log_tree_commit(&log_tree_opt
, commit
);
3535 fclose(log_tree_opt
.diffopt
.file
);
3539 strbuf_addf(&buf
, "%s/message", get_dir(opts
));
3540 if (!file_exists(buf
.buf
)) {
3541 const char *encoding
= get_commit_output_encoding();
3542 const char *commit_buffer
= repo_logmsg_reencode(r
,
3545 find_commit_subject(commit_buffer
, &subject
);
3546 res
|= write_message(subject
, strlen(subject
), buf
.buf
, 1);
3547 repo_unuse_commit_buffer(r
, commit
,
3550 strbuf_release(&buf
);
3551 release_revisions(&log_tree_opt
);
3556 static int intend_to_amend(void)
3558 struct object_id head
;
3561 if (repo_get_oid(the_repository
, "HEAD", &head
))
3562 return error(_("cannot read HEAD"));
3564 p
= oid_to_hex(&head
);
3565 return write_message(p
, strlen(p
), rebase_path_amend(), 1);
3568 static int error_with_patch(struct repository
*r
,
3569 struct commit
*commit
,
3570 const char *subject
, int subject_len
,
3571 struct replay_opts
*opts
,
3572 int exit_code
, int to_amend
)
3575 if (make_patch(r
, commit
, opts
))
3577 } else if (copy_file(rebase_path_message(),
3578 git_path_merge_msg(r
), 0666))
3579 return error(_("unable to copy '%s' to '%s'"),
3580 git_path_merge_msg(r
), rebase_path_message());
3583 if (intend_to_amend())
3587 _("You can amend the commit now, with\n"
3589 " git commit --amend %s\n"
3591 "Once you are satisfied with your changes, run\n"
3593 " git rebase --continue\n"),
3594 gpg_sign_opt_quoted(opts
));
3595 } else if (exit_code
) {
3597 fprintf_ln(stderr
, _("Could not apply %s... %.*s"),
3598 short_commit_name(commit
), subject_len
, subject
);
3601 * We don't have the hash of the parent so
3602 * just print the line from the todo file.
3604 fprintf_ln(stderr
, _("Could not merge %.*s"),
3605 subject_len
, subject
);
3611 static int error_failed_squash(struct repository
*r
,
3612 struct commit
*commit
,
3613 struct replay_opts
*opts
,
3615 const char *subject
)
3617 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3618 return error(_("could not copy '%s' to '%s'"),
3619 rebase_path_squash_msg(), rebase_path_message());
3620 unlink(git_path_merge_msg(r
));
3621 if (copy_file(git_path_merge_msg(r
), rebase_path_message(), 0666))
3622 return error(_("could not copy '%s' to '%s'"),
3623 rebase_path_message(),
3624 git_path_merge_msg(r
));
3625 return error_with_patch(r
, commit
, subject
, subject_len
, opts
, 1, 0);
3628 static int do_exec(struct repository
*r
, const char *command_line
)
3630 struct child_process cmd
= CHILD_PROCESS_INIT
;
3633 fprintf(stderr
, _("Executing: %s\n"), command_line
);
3635 strvec_push(&cmd
.args
, command_line
);
3636 status
= run_command(&cmd
);
3638 /* force re-reading of the cache */
3639 discard_index(r
->index
);
3640 if (repo_read_index(r
) < 0)
3641 return error(_("could not read index"));
3643 dirty
= require_clean_work_tree(r
, "rebase", NULL
, 1, 1);
3646 warning(_("execution failed: %s\n%s"
3647 "You can fix the problem, and then run\n"
3649 " git rebase --continue\n"
3652 dirty
? N_("and made changes to the index and/or the "
3653 "working tree\n") : "");
3655 /* command not found */
3658 warning(_("execution succeeded: %s\nbut "
3659 "left changes to the index and/or the working tree\n"
3660 "Commit or stash your changes, and then run\n"
3662 " git rebase --continue\n"
3663 "\n"), command_line
);
3670 __attribute__((format (printf
, 2, 3)))
3671 static int safe_append(const char *filename
, const char *fmt
, ...)
3674 struct lock_file lock
= LOCK_INIT
;
3675 int fd
= hold_lock_file_for_update(&lock
, filename
,
3676 LOCK_REPORT_ON_ERROR
);
3677 struct strbuf buf
= STRBUF_INIT
;
3682 if (strbuf_read_file(&buf
, filename
, 0) < 0 && errno
!= ENOENT
) {
3683 error_errno(_("could not read '%s'"), filename
);
3684 rollback_lock_file(&lock
);
3687 strbuf_complete(&buf
, '\n');
3689 strbuf_vaddf(&buf
, fmt
, ap
);
3692 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
3693 error_errno(_("could not write to '%s'"), filename
);
3694 strbuf_release(&buf
);
3695 rollback_lock_file(&lock
);
3698 if (commit_lock_file(&lock
) < 0) {
3699 strbuf_release(&buf
);
3700 rollback_lock_file(&lock
);
3701 return error(_("failed to finalize '%s'"), filename
);
3704 strbuf_release(&buf
);
3708 static int do_label(struct repository
*r
, const char *name
, int len
)
3710 struct ref_store
*refs
= get_main_ref_store(r
);
3711 struct ref_transaction
*transaction
;
3712 struct strbuf ref_name
= STRBUF_INIT
, err
= STRBUF_INIT
;
3713 struct strbuf msg
= STRBUF_INIT
;
3715 struct object_id head_oid
;
3717 if (len
== 1 && *name
== '#')
3718 return error(_("illegal label name: '%.*s'"), len
, name
);
3720 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
3721 strbuf_addf(&msg
, "rebase (label) '%.*s'", len
, name
);
3723 transaction
= ref_store_transaction_begin(refs
, &err
);
3725 error("%s", err
.buf
);
3727 } else if (repo_get_oid(r
, "HEAD", &head_oid
)) {
3728 error(_("could not read HEAD"));
3730 } else if (ref_transaction_update(transaction
, ref_name
.buf
, &head_oid
,
3731 NULL
, 0, msg
.buf
, &err
) < 0 ||
3732 ref_transaction_commit(transaction
, &err
)) {
3733 error("%s", err
.buf
);
3736 ref_transaction_free(transaction
);
3737 strbuf_release(&err
);
3738 strbuf_release(&msg
);
3741 ret
= safe_append(rebase_path_refs_to_delete(),
3742 "%s\n", ref_name
.buf
);
3743 strbuf_release(&ref_name
);
3748 static const char *sequencer_reflog_action(struct replay_opts
*opts
)
3750 if (!opts
->reflog_action
) {
3751 opts
->reflog_action
= getenv(GIT_REFLOG_ACTION
);
3752 opts
->reflog_action
=
3753 xstrdup(opts
->reflog_action
? opts
->reflog_action
3754 : action_name(opts
));
3757 return opts
->reflog_action
;
3760 __attribute__((format (printf
, 3, 4)))
3761 static const char *reflog_message(struct replay_opts
*opts
,
3762 const char *sub_action
, const char *fmt
, ...)
3765 static struct strbuf buf
= STRBUF_INIT
;
3769 strbuf_addstr(&buf
, sequencer_reflog_action(opts
));
3771 strbuf_addf(&buf
, " (%s)", sub_action
);
3773 strbuf_addstr(&buf
, ": ");
3774 strbuf_vaddf(&buf
, fmt
, ap
);
3781 static struct commit
*lookup_label(struct repository
*r
, const char *label
,
3782 int len
, struct strbuf
*buf
)
3784 struct commit
*commit
;
3785 struct object_id oid
;
3788 strbuf_addf(buf
, "refs/rewritten/%.*s", len
, label
);
3789 if (!read_ref(buf
->buf
, &oid
)) {
3790 commit
= lookup_commit_object(r
, &oid
);
3792 /* fall back to non-rewritten ref or commit */
3793 strbuf_splice(buf
, 0, strlen("refs/rewritten/"), "", 0);
3794 commit
= lookup_commit_reference_by_name(buf
->buf
);
3798 error(_("could not resolve '%s'"), buf
->buf
);
3803 static int do_reset(struct repository
*r
,
3804 const char *name
, int len
,
3805 struct replay_opts
*opts
)
3807 struct strbuf ref_name
= STRBUF_INIT
;
3808 struct object_id oid
;
3809 struct lock_file lock
= LOCK_INIT
;
3810 struct tree_desc desc
= { 0 };
3812 struct unpack_trees_options unpack_tree_opts
= { 0 };
3815 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0)
3818 if (len
== 10 && !strncmp("[new root]", name
, len
)) {
3819 if (!opts
->have_squash_onto
) {
3821 if (commit_tree("", 0, the_hash_algo
->empty_tree
,
3822 NULL
, &opts
->squash_onto
,
3824 return error(_("writing fake root commit"));
3825 opts
->have_squash_onto
= 1;
3826 hex
= oid_to_hex(&opts
->squash_onto
);
3827 if (write_message(hex
, strlen(hex
),
3828 rebase_path_squash_onto(), 0))
3829 return error(_("writing squash-onto"));
3831 oidcpy(&oid
, &opts
->squash_onto
);
3834 struct commit
*commit
;
3836 /* Determine the length of the label */
3837 for (i
= 0; i
< len
; i
++)
3838 if (isspace(name
[i
]))
3842 commit
= lookup_label(r
, name
, len
, &ref_name
);
3847 oid
= commit
->object
.oid
;
3850 setup_unpack_trees_porcelain(&unpack_tree_opts
, "reset");
3851 unpack_tree_opts
.head_idx
= 1;
3852 unpack_tree_opts
.src_index
= r
->index
;
3853 unpack_tree_opts
.dst_index
= r
->index
;
3854 unpack_tree_opts
.fn
= oneway_merge
;
3855 unpack_tree_opts
.merge
= 1;
3856 unpack_tree_opts
.update
= 1;
3857 unpack_tree_opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
3858 unpack_tree_opts
.skip_cache_tree_update
= 1;
3859 init_checkout_metadata(&unpack_tree_opts
.meta
, name
, &oid
, NULL
);
3861 if (repo_read_index_unmerged(r
)) {
3862 ret
= error_resolve_conflict(action_name(opts
));
3866 if (!fill_tree_descriptor(r
, &desc
, &oid
)) {
3867 ret
= error(_("failed to find tree of %s"), oid_to_hex(&oid
));
3871 if (unpack_trees(1, &desc
, &unpack_tree_opts
)) {
3876 tree
= parse_tree_indirect(&oid
);
3877 prime_cache_tree(r
, r
->index
, tree
);
3879 if (write_locked_index(r
->index
, &lock
, COMMIT_LOCK
) < 0)
3880 ret
= error(_("could not write index"));
3883 ret
= update_ref(reflog_message(opts
, "reset", "'%.*s'",
3884 len
, name
), "HEAD", &oid
,
3885 NULL
, 0, UPDATE_REFS_MSG_ON_ERR
);
3887 free((void *)desc
.buffer
);
3889 rollback_lock_file(&lock
);
3890 strbuf_release(&ref_name
);
3891 clear_unpack_trees_porcelain(&unpack_tree_opts
);
3895 static int do_merge(struct repository
*r
,
3896 struct commit
*commit
,
3897 const char *arg
, int arg_len
,
3898 int flags
, int *check_todo
, struct replay_opts
*opts
)
3900 int run_commit_flags
= 0;
3901 struct strbuf ref_name
= STRBUF_INIT
;
3902 struct commit
*head_commit
, *merge_commit
, *i
;
3903 struct commit_list
*bases
, *j
;
3904 struct commit_list
*to_merge
= NULL
, **tail
= &to_merge
;
3905 const char *strategy
= !opts
->xopts_nr
&&
3907 !strcmp(opts
->strategy
, "recursive") ||
3908 !strcmp(opts
->strategy
, "ort")) ?
3909 NULL
: opts
->strategy
;
3910 struct merge_options o
;
3911 int merge_arg_len
, oneline_offset
, can_fast_forward
, ret
, k
;
3912 static struct lock_file lock
;
3915 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0) {
3920 head_commit
= lookup_commit_reference_by_name("HEAD");
3922 ret
= error(_("cannot merge without a current revision"));
3927 * For octopus merges, the arg starts with the list of revisions to be
3928 * merged. The list is optionally followed by '#' and the oneline.
3930 merge_arg_len
= oneline_offset
= arg_len
;
3931 for (p
= arg
; p
- arg
< arg_len
; p
+= strspn(p
, " \t\n")) {
3934 if (*p
== '#' && (!p
[1] || isspace(p
[1]))) {
3935 p
+= 1 + strspn(p
+ 1, " \t\n");
3936 oneline_offset
= p
- arg
;
3939 k
= strcspn(p
, " \t\n");
3942 merge_commit
= lookup_label(r
, p
, k
, &ref_name
);
3943 if (!merge_commit
) {
3944 ret
= error(_("unable to parse '%.*s'"), k
, p
);
3947 tail
= &commit_list_insert(merge_commit
, tail
)->next
;
3949 merge_arg_len
= p
- arg
;
3953 ret
= error(_("nothing to merge: '%.*s'"), arg_len
, arg
);
3957 if (opts
->have_squash_onto
&&
3958 oideq(&head_commit
->object
.oid
, &opts
->squash_onto
)) {
3960 * When the user tells us to "merge" something into a
3961 * "[new root]", let's simply fast-forward to the merge head.
3963 rollback_lock_file(&lock
);
3965 ret
= error(_("octopus merge cannot be executed on "
3966 "top of a [new root]"));
3968 ret
= fast_forward_to(r
, &to_merge
->item
->object
.oid
,
3969 &head_commit
->object
.oid
, 0,
3975 * If HEAD is not identical to the first parent of the original merge
3976 * commit, we cannot fast-forward.
3978 can_fast_forward
= opts
->allow_ff
&& commit
&& commit
->parents
&&
3979 oideq(&commit
->parents
->item
->object
.oid
,
3980 &head_commit
->object
.oid
);
3983 * If any merge head is different from the original one, we cannot
3986 if (can_fast_forward
) {
3987 struct commit_list
*p
= commit
->parents
->next
;
3989 for (j
= to_merge
; j
&& p
; j
= j
->next
, p
= p
->next
)
3990 if (!oideq(&j
->item
->object
.oid
,
3991 &p
->item
->object
.oid
)) {
3992 can_fast_forward
= 0;
3996 * If the number of merge heads differs from the original merge
3997 * commit, we cannot fast-forward.
4000 can_fast_forward
= 0;
4003 if (can_fast_forward
) {
4004 rollback_lock_file(&lock
);
4005 ret
= fast_forward_to(r
, &commit
->object
.oid
,
4006 &head_commit
->object
.oid
, 0, opts
);
4007 if (flags
& TODO_EDIT_MERGE_MSG
)
4008 goto fast_forward_edit
;
4014 const char *encoding
= get_commit_output_encoding();
4015 const char *message
= repo_logmsg_reencode(r
, commit
, NULL
,
4021 ret
= error(_("could not get commit message of '%s'"),
4022 oid_to_hex(&commit
->object
.oid
));
4025 write_author_script(message
);
4026 find_commit_subject(message
, &body
);
4028 ret
= write_message(body
, len
, git_path_merge_msg(r
), 0);
4029 repo_unuse_commit_buffer(r
, commit
, message
);
4031 error_errno(_("could not write '%s'"),
4032 git_path_merge_msg(r
));
4036 struct strbuf buf
= STRBUF_INIT
;
4039 strbuf_addf(&buf
, "author %s", git_author_info(0));
4040 write_author_script(buf
.buf
);
4043 if (oneline_offset
< arg_len
) {
4044 p
= arg
+ oneline_offset
;
4045 len
= arg_len
- oneline_offset
;
4047 strbuf_addf(&buf
, "Merge %s '%.*s'",
4048 to_merge
->next
? "branches" : "branch",
4049 merge_arg_len
, arg
);
4054 ret
= write_message(p
, len
, git_path_merge_msg(r
), 0);
4055 strbuf_release(&buf
);
4057 error_errno(_("could not write '%s'"),
4058 git_path_merge_msg(r
));
4063 if (strategy
|| to_merge
->next
) {
4065 struct child_process cmd
= CHILD_PROCESS_INIT
;
4067 if (read_env_script(&cmd
.env
)) {
4068 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
4070 ret
= error(_(staged_changes_advice
), gpg_opt
, gpg_opt
);
4074 if (opts
->committer_date_is_author_date
)
4075 strvec_pushf(&cmd
.env
, "GIT_COMMITTER_DATE=%s",
4078 author_date_from_env(&cmd
.env
));
4079 if (opts
->ignore_date
)
4080 strvec_push(&cmd
.env
, "GIT_AUTHOR_DATE=");
4083 strvec_push(&cmd
.args
, "merge");
4084 strvec_push(&cmd
.args
, "-s");
4086 strvec_push(&cmd
.args
, "octopus");
4088 strvec_push(&cmd
.args
, strategy
);
4089 for (k
= 0; k
< opts
->xopts_nr
; k
++)
4090 strvec_pushf(&cmd
.args
,
4091 "-X%s", opts
->xopts
[k
]);
4093 if (!(flags
& TODO_EDIT_MERGE_MSG
))
4094 strvec_push(&cmd
.args
, "--no-edit");
4096 strvec_push(&cmd
.args
, "--edit");
4097 strvec_push(&cmd
.args
, "--no-ff");
4098 strvec_push(&cmd
.args
, "--no-log");
4099 strvec_push(&cmd
.args
, "--no-stat");
4100 strvec_push(&cmd
.args
, "-F");
4101 strvec_push(&cmd
.args
, git_path_merge_msg(r
));
4103 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
4105 strvec_push(&cmd
.args
, "--no-gpg-sign");
4107 /* Add the tips to be merged */
4108 for (j
= to_merge
; j
; j
= j
->next
)
4109 strvec_push(&cmd
.args
,
4110 oid_to_hex(&j
->item
->object
.oid
));
4112 strbuf_release(&ref_name
);
4113 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
4115 rollback_lock_file(&lock
);
4117 ret
= run_command(&cmd
);
4119 /* force re-reading of the cache */
4121 discard_index(r
->index
);
4122 if (repo_read_index(r
) < 0)
4123 ret
= error(_("could not read index"));
4128 merge_commit
= to_merge
->item
;
4129 bases
= repo_get_merge_bases(r
, head_commit
, merge_commit
);
4130 if (bases
&& oideq(&merge_commit
->object
.oid
,
4131 &bases
->item
->object
.oid
)) {
4133 /* skip merging an ancestor of HEAD */
4137 write_message(oid_to_hex(&merge_commit
->object
.oid
), the_hash_algo
->hexsz
,
4138 git_path_merge_head(r
), 0);
4139 write_message("no-ff", 5, git_path_merge_mode(r
), 0);
4141 bases
= reverse_commit_list(bases
);
4144 init_merge_options(&o
, r
);
4146 o
.branch2
= ref_name
.buf
;
4147 o
.buffer_output
= 2;
4149 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "ort")) {
4151 * TODO: Should use merge_incore_recursive() and
4152 * merge_switch_to_result(), skipping the call to
4153 * merge_switch_to_result() when we don't actually need to
4154 * update the index and working copy immediately.
4156 ret
= merge_ort_recursive(&o
,
4157 head_commit
, merge_commit
, bases
,
4160 ret
= merge_recursive(&o
, head_commit
, merge_commit
, bases
,
4164 fputs(o
.obuf
.buf
, stdout
);
4165 strbuf_release(&o
.obuf
);
4167 error(_("could not even attempt to merge '%.*s'"),
4168 merge_arg_len
, arg
);
4172 * The return value of merge_recursive() is 1 on clean, and 0 on
4175 * Let's reverse that, so that do_merge() returns 0 upon success and
4176 * 1 upon failed merge (keeping the return value -1 for the cases where
4177 * we will want to reschedule the `merge` command).
4181 if (r
->index
->cache_changed
&&
4182 write_locked_index(r
->index
, &lock
, COMMIT_LOCK
)) {
4183 ret
= error(_("merge: Unable to write new index file"));
4187 rollback_lock_file(&lock
);
4189 repo_rerere(r
, opts
->allow_rerere_auto
);
4192 * In case of problems, we now want to return a positive
4193 * value (a negative one would indicate that the `merge`
4194 * command needs to be rescheduled).
4196 ret
= !!run_git_commit(git_path_merge_msg(r
), opts
,
4199 if (!ret
&& flags
& TODO_EDIT_MERGE_MSG
) {
4202 run_commit_flags
|= AMEND_MSG
| EDIT_MSG
| VERIFY_MSG
;
4203 ret
= !!run_git_commit(NULL
, opts
, run_commit_flags
);
4208 strbuf_release(&ref_name
);
4209 rollback_lock_file(&lock
);
4210 free_commit_list(to_merge
);
4214 static int write_update_refs_state(struct string_list
*refs_to_oids
)
4217 struct lock_file lock
= LOCK_INIT
;
4219 struct string_list_item
*item
;
4222 path
= rebase_path_update_refs(the_repository
->gitdir
);
4224 if (!refs_to_oids
->nr
) {
4225 if (unlink(path
) && errno
!= ENOENT
)
4226 result
= error_errno(_("could not unlink: %s"), path
);
4230 if (safe_create_leading_directories(path
)) {
4231 result
= error(_("unable to create leading directories of %s"),
4236 if (hold_lock_file_for_update(&lock
, path
, 0) < 0) {
4237 result
= error(_("another 'rebase' process appears to be running; "
4238 "'%s.lock' already exists"),
4243 fp
= fdopen_lock_file(&lock
, "w");
4245 result
= error_errno(_("could not open '%s' for writing"), path
);
4246 rollback_lock_file(&lock
);
4250 for_each_string_list_item(item
, refs_to_oids
) {
4251 struct update_ref_record
*rec
= item
->util
;
4252 fprintf(fp
, "%s\n%s\n%s\n", item
->string
,
4253 oid_to_hex(&rec
->before
), oid_to_hex(&rec
->after
));
4256 result
= commit_lock_file(&lock
);
4264 * Parse the update-refs file for the current rebase, then remove the
4265 * refs that do not appear in the todo_list (and have not had updated
4266 * values stored) and add refs that are in the todo_list but not
4267 * represented in the update-refs file.
4269 * If there are changes to the update-refs list, then write the new state
4272 void todo_list_filter_update_refs(struct repository
*r
,
4273 struct todo_list
*todo_list
)
4277 struct string_list update_refs
= STRING_LIST_INIT_DUP
;
4279 sequencer_get_update_refs_state(r
->gitdir
, &update_refs
);
4282 * For each item in the update_refs list, if it has no updated
4283 * value and does not appear in the todo_list, then remove it
4284 * from the update_refs list.
4286 for (i
= 0; i
< update_refs
.nr
; i
++) {
4289 const char *ref
= update_refs
.items
[i
].string
;
4290 size_t reflen
= strlen(ref
);
4291 struct update_ref_record
*rec
= update_refs
.items
[i
].util
;
4293 /* OID already stored as updated. */
4294 if (!is_null_oid(&rec
->after
))
4297 for (j
= 0; !found
&& j
< todo_list
->total_nr
; j
++) {
4298 struct todo_item
*item
= &todo_list
->items
[j
];
4299 const char *arg
= todo_list
->buf
.buf
+ item
->arg_offset
;
4301 if (item
->command
!= TODO_UPDATE_REF
)
4304 if (item
->arg_len
!= reflen
||
4305 strncmp(arg
, ref
, reflen
))
4312 free(update_refs
.items
[i
].string
);
4313 free(update_refs
.items
[i
].util
);
4316 MOVE_ARRAY(update_refs
.items
+ i
, update_refs
.items
+ i
+ 1, update_refs
.nr
- i
);
4324 * For each todo_item, check if its ref is in the update_refs list.
4325 * If not, then add it as an un-updated ref.
4327 for (i
= 0; i
< todo_list
->total_nr
; i
++) {
4328 struct todo_item
*item
= &todo_list
->items
[i
];
4329 const char *arg
= todo_list
->buf
.buf
+ item
->arg_offset
;
4332 if (item
->command
!= TODO_UPDATE_REF
)
4335 for (j
= 0; !found
&& j
< update_refs
.nr
; j
++) {
4336 const char *ref
= update_refs
.items
[j
].string
;
4338 found
= strlen(ref
) == item
->arg_len
&&
4339 !strncmp(ref
, arg
, item
->arg_len
);
4343 struct string_list_item
*inserted
;
4344 struct strbuf argref
= STRBUF_INIT
;
4346 strbuf_add(&argref
, arg
, item
->arg_len
);
4347 inserted
= string_list_insert(&update_refs
, argref
.buf
);
4348 inserted
->util
= init_update_ref_record(argref
.buf
);
4349 strbuf_release(&argref
);
4355 write_update_refs_state(&update_refs
);
4356 string_list_clear(&update_refs
, 1);
4359 static int do_update_ref(struct repository
*r
, const char *refname
)
4361 struct string_list_item
*item
;
4362 struct string_list list
= STRING_LIST_INIT_DUP
;
4364 if (sequencer_get_update_refs_state(r
->gitdir
, &list
))
4367 for_each_string_list_item(item
, &list
) {
4368 if (!strcmp(item
->string
, refname
)) {
4369 struct update_ref_record
*rec
= item
->util
;
4370 if (read_ref("HEAD", &rec
->after
))
4376 write_update_refs_state(&list
);
4377 string_list_clear(&list
, 1);
4381 static int do_update_refs(struct repository
*r
, int quiet
)
4384 struct string_list_item
*item
;
4385 struct string_list refs_to_oids
= STRING_LIST_INIT_DUP
;
4386 struct ref_store
*refs
= get_main_ref_store(r
);
4387 struct strbuf update_msg
= STRBUF_INIT
;
4388 struct strbuf error_msg
= STRBUF_INIT
;
4390 if ((res
= sequencer_get_update_refs_state(r
->gitdir
, &refs_to_oids
)))
4393 for_each_string_list_item(item
, &refs_to_oids
) {
4394 struct update_ref_record
*rec
= item
->util
;
4397 loop_res
= refs_update_ref(refs
, "rewritten during rebase",
4399 &rec
->after
, &rec
->before
,
4400 0, UPDATE_REFS_MSG_ON_ERR
);
4407 strbuf_addf(&error_msg
, "\t%s\n", item
->string
);
4409 strbuf_addf(&update_msg
, "\t%s\n", item
->string
);
4413 (update_msg
.len
|| error_msg
.len
)) {
4415 _("Updated the following refs with %s:\n%s"),
4421 _("Failed to update the following refs with %s:\n%s"),
4426 string_list_clear(&refs_to_oids
, 1);
4427 strbuf_release(&update_msg
);
4428 strbuf_release(&error_msg
);
4432 static int is_final_fixup(struct todo_list
*todo_list
)
4434 int i
= todo_list
->current
;
4436 if (!is_fixup(todo_list
->items
[i
].command
))
4439 while (++i
< todo_list
->nr
)
4440 if (is_fixup(todo_list
->items
[i
].command
))
4442 else if (!is_noop(todo_list
->items
[i
].command
))
4447 static enum todo_command
peek_command(struct todo_list
*todo_list
, int offset
)
4451 for (i
= todo_list
->current
+ offset
; i
< todo_list
->nr
; i
++)
4452 if (!is_noop(todo_list
->items
[i
].command
))
4453 return todo_list
->items
[i
].command
;
4458 void create_autostash(struct repository
*r
, const char *path
)
4460 struct strbuf buf
= STRBUF_INIT
;
4461 struct lock_file lock_file
= LOCK_INIT
;
4464 fd
= repo_hold_locked_index(r
, &lock_file
, 0);
4465 refresh_index(r
->index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
4467 repo_update_index_if_able(r
, &lock_file
);
4468 rollback_lock_file(&lock_file
);
4470 if (has_unstaged_changes(r
, 1) ||
4471 has_uncommitted_changes(r
, 1)) {
4472 struct child_process stash
= CHILD_PROCESS_INIT
;
4473 struct reset_head_opts ropts
= { .flags
= RESET_HEAD_HARD
};
4474 struct object_id oid
;
4476 strvec_pushl(&stash
.args
,
4477 "stash", "create", "autostash", NULL
);
4481 if (capture_command(&stash
, &buf
, GIT_MAX_HEXSZ
))
4482 die(_("Cannot autostash"));
4483 strbuf_trim_trailing_newline(&buf
);
4484 if (repo_get_oid(r
, buf
.buf
, &oid
))
4485 die(_("Unexpected stash response: '%s'"),
4488 strbuf_add_unique_abbrev(&buf
, &oid
, DEFAULT_ABBREV
);
4490 if (safe_create_leading_directories_const(path
))
4491 die(_("Could not create directory for '%s'"),
4493 write_file(path
, "%s", oid_to_hex(&oid
));
4494 printf(_("Created autostash: %s\n"), buf
.buf
);
4495 if (reset_head(r
, &ropts
) < 0)
4496 die(_("could not reset --hard"));
4497 discard_index(r
->index
);
4498 if (repo_read_index(r
) < 0)
4499 die(_("could not read index"));
4501 strbuf_release(&buf
);
4504 static int apply_save_autostash_oid(const char *stash_oid
, int attempt_apply
)
4506 struct child_process child
= CHILD_PROCESS_INIT
;
4509 if (attempt_apply
) {
4511 child
.no_stdout
= 1;
4512 child
.no_stderr
= 1;
4513 strvec_push(&child
.args
, "stash");
4514 strvec_push(&child
.args
, "apply");
4515 strvec_push(&child
.args
, stash_oid
);
4516 ret
= run_command(&child
);
4519 if (attempt_apply
&& !ret
)
4520 fprintf(stderr
, _("Applied autostash.\n"));
4522 struct child_process store
= CHILD_PROCESS_INIT
;
4525 strvec_push(&store
.args
, "stash");
4526 strvec_push(&store
.args
, "store");
4527 strvec_push(&store
.args
, "-m");
4528 strvec_push(&store
.args
, "autostash");
4529 strvec_push(&store
.args
, "-q");
4530 strvec_push(&store
.args
, stash_oid
);
4531 if (run_command(&store
))
4532 ret
= error(_("cannot store %s"), stash_oid
);
4536 "Your changes are safe in the stash.\n"
4537 "You can run \"git stash pop\" or"
4538 " \"git stash drop\" at any time.\n"),
4540 _("Applying autostash resulted in conflicts.") :
4541 _("Autostash exists; creating a new stash entry."));
4547 static int apply_save_autostash(const char *path
, int attempt_apply
)
4549 struct strbuf stash_oid
= STRBUF_INIT
;
4552 if (!read_oneliner(&stash_oid
, path
,
4553 READ_ONELINER_SKIP_IF_EMPTY
)) {
4554 strbuf_release(&stash_oid
);
4557 strbuf_trim(&stash_oid
);
4559 ret
= apply_save_autostash_oid(stash_oid
.buf
, attempt_apply
);
4562 strbuf_release(&stash_oid
);
4566 int save_autostash(const char *path
)
4568 return apply_save_autostash(path
, 0);
4571 int apply_autostash(const char *path
)
4573 return apply_save_autostash(path
, 1);
4576 int apply_autostash_oid(const char *stash_oid
)
4578 return apply_save_autostash_oid(stash_oid
, 1);
4581 static int checkout_onto(struct repository
*r
, struct replay_opts
*opts
,
4582 const char *onto_name
, const struct object_id
*onto
,
4583 const struct object_id
*orig_head
)
4585 struct reset_head_opts ropts
= {
4587 .orig_head
= orig_head
,
4588 .flags
= RESET_HEAD_DETACH
| RESET_ORIG_HEAD
|
4589 RESET_HEAD_RUN_POST_CHECKOUT_HOOK
,
4590 .head_msg
= reflog_message(opts
, "start", "checkout %s",
4592 .default_reflog_action
= sequencer_reflog_action(opts
)
4594 if (reset_head(r
, &ropts
)) {
4595 apply_autostash(rebase_path_autostash());
4596 sequencer_remove_state(opts
);
4597 return error(_("could not detach HEAD"));
4603 static int stopped_at_head(struct repository
*r
)
4605 struct object_id head
;
4606 struct commit
*commit
;
4607 struct commit_message message
;
4609 if (repo_get_oid(r
, "HEAD", &head
) ||
4610 !(commit
= lookup_commit(r
, &head
)) ||
4611 repo_parse_commit(r
, commit
) || get_message(commit
, &message
))
4612 fprintf(stderr
, _("Stopped at HEAD\n"));
4614 fprintf(stderr
, _("Stopped at %s\n"), message
.label
);
4615 free_message(commit
, &message
);
4621 static int reread_todo_if_changed(struct repository
*r
,
4622 struct todo_list
*todo_list
,
4623 struct replay_opts
*opts
)
4626 struct strbuf buf
= STRBUF_INIT
;
4628 if (strbuf_read_file_or_whine(&buf
, get_todo_path(opts
)) < 0)
4630 offset
= get_item_line_offset(todo_list
, todo_list
->current
+ 1);
4631 if (buf
.len
!= todo_list
->buf
.len
- offset
||
4632 memcmp(buf
.buf
, todo_list
->buf
.buf
+ offset
, buf
.len
)) {
4633 /* Reread the todo file if it has changed. */
4634 todo_list_release(todo_list
);
4635 if (read_populate_todo(r
, todo_list
, opts
))
4636 return -1; /* message was printed */
4637 /* `current` will be incremented on return */
4638 todo_list
->current
= -1;
4640 strbuf_release(&buf
);
4645 static const char rescheduled_advice
[] =
4646 N_("Could not execute the todo command\n"
4650 "It has been rescheduled; To edit the command before continuing, please\n"
4651 "edit the todo list first:\n"
4653 " git rebase --edit-todo\n"
4654 " git rebase --continue\n");
4656 static int pick_commits(struct repository
*r
,
4657 struct todo_list
*todo_list
,
4658 struct replay_opts
*opts
)
4660 int res
= 0, reschedule
= 0;
4662 opts
->reflog_message
= sequencer_reflog_action(opts
);
4664 assert(!(opts
->signoff
|| opts
->no_commit
||
4665 opts
->record_origin
|| should_edit(opts
) ||
4666 opts
->committer_date_is_author_date
||
4667 opts
->ignore_date
));
4668 if (read_and_refresh_cache(r
, opts
))
4671 while (todo_list
->current
< todo_list
->nr
) {
4672 struct todo_item
*item
= todo_list
->items
+ todo_list
->current
;
4673 const char *arg
= todo_item_get_arg(todo_list
, item
);
4676 if (save_todo(todo_list
, opts
))
4678 if (is_rebase_i(opts
)) {
4679 if (item
->command
!= TODO_COMMENT
) {
4680 FILE *f
= fopen(rebase_path_msgnum(), "w");
4682 todo_list
->done_nr
++;
4685 fprintf(f
, "%d\n", todo_list
->done_nr
);
4689 fprintf(stderr
, _("Rebasing (%d/%d)%s"),
4691 todo_list
->total_nr
,
4692 opts
->verbose
? "\n" : "\r");
4694 unlink(rebase_path_message());
4695 unlink(rebase_path_author_script());
4696 unlink(rebase_path_stopped_sha());
4697 unlink(rebase_path_amend());
4698 unlink(git_path_merge_head(r
));
4699 unlink(git_path_auto_merge(r
));
4700 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
4702 if (item
->command
== TODO_BREAK
) {
4705 return stopped_at_head(r
);
4708 if (item
->command
<= TODO_SQUASH
) {
4709 if (is_rebase_i(opts
))
4710 opts
->reflog_message
= reflog_message(opts
,
4711 command_to_string(item
->command
), NULL
);
4713 res
= do_pick_commit(r
, item
, opts
,
4714 is_final_fixup(todo_list
),
4716 if (is_rebase_i(opts
) && res
< 0) {
4718 advise(_(rescheduled_advice
),
4719 get_item_line_length(todo_list
,
4720 todo_list
->current
),
4721 get_item_line(todo_list
,
4722 todo_list
->current
));
4723 todo_list
->current
--;
4724 if (save_todo(todo_list
, opts
))
4727 if (item
->command
== TODO_EDIT
) {
4728 struct commit
*commit
= item
->commit
;
4733 _("Stopped at %s... %.*s\n"),
4734 short_commit_name(commit
),
4735 item
->arg_len
, arg
);
4737 return error_with_patch(r
, commit
,
4738 arg
, item
->arg_len
, opts
, res
, !res
);
4740 if (is_rebase_i(opts
) && !res
)
4741 record_in_rewritten(&item
->commit
->object
.oid
,
4742 peek_command(todo_list
, 1));
4743 if (res
&& is_fixup(item
->command
)) {
4746 return error_failed_squash(r
, item
->commit
, opts
,
4747 item
->arg_len
, arg
);
4748 } else if (res
&& is_rebase_i(opts
) && item
->commit
) {
4750 struct object_id oid
;
4753 * If we are rewording and have either
4754 * fast-forwarded already, or are about to
4755 * create a new root commit, we want to amend,
4756 * otherwise we do not.
4758 if (item
->command
== TODO_REWORD
&&
4759 !repo_get_oid(r
, "HEAD", &oid
) &&
4760 (oideq(&item
->commit
->object
.oid
, &oid
) ||
4761 (opts
->have_squash_onto
&&
4762 oideq(&opts
->squash_onto
, &oid
))))
4765 return res
| error_with_patch(r
, item
->commit
,
4766 arg
, item
->arg_len
, opts
,
4769 } else if (item
->command
== TODO_EXEC
) {
4770 char *end_of_arg
= (char *)(arg
+ item
->arg_len
);
4771 int saved
= *end_of_arg
;
4776 res
= do_exec(r
, arg
);
4777 *end_of_arg
= saved
;
4780 if (opts
->reschedule_failed_exec
)
4784 } else if (item
->command
== TODO_LABEL
) {
4785 if ((res
= do_label(r
, arg
, item
->arg_len
)))
4787 } else if (item
->command
== TODO_RESET
) {
4788 if ((res
= do_reset(r
, arg
, item
->arg_len
, opts
)))
4790 } else if (item
->command
== TODO_MERGE
) {
4791 if ((res
= do_merge(r
, item
->commit
, arg
, item
->arg_len
,
4792 item
->flags
, &check_todo
, opts
)) < 0)
4794 else if (item
->commit
)
4795 record_in_rewritten(&item
->commit
->object
.oid
,
4796 peek_command(todo_list
, 1));
4798 /* failed with merge conflicts */
4799 return error_with_patch(r
, item
->commit
,
4802 } else if (item
->command
== TODO_UPDATE_REF
) {
4803 struct strbuf ref
= STRBUF_INIT
;
4804 strbuf_add(&ref
, arg
, item
->arg_len
);
4805 if ((res
= do_update_ref(r
, ref
.buf
)))
4807 strbuf_release(&ref
);
4808 } else if (!is_noop(item
->command
))
4809 return error(_("unknown command %d"), item
->command
);
4812 advise(_(rescheduled_advice
),
4813 get_item_line_length(todo_list
,
4814 todo_list
->current
),
4815 get_item_line(todo_list
, todo_list
->current
));
4816 todo_list
->current
--;
4817 if (save_todo(todo_list
, opts
))
4820 return error_with_patch(r
,
4824 } else if (is_rebase_i(opts
) && check_todo
&& !res
&&
4825 reread_todo_if_changed(r
, todo_list
, opts
)) {
4829 todo_list
->current
++;
4834 if (is_rebase_i(opts
)) {
4835 struct strbuf head_ref
= STRBUF_INIT
, buf
= STRBUF_INIT
;
4838 /* Stopped in the middle, as planned? */
4839 if (todo_list
->current
< todo_list
->nr
)
4842 if (read_oneliner(&head_ref
, rebase_path_head_name(), 0) &&
4843 starts_with(head_ref
.buf
, "refs/")) {
4845 struct object_id head
, orig
;
4848 if (repo_get_oid(r
, "HEAD", &head
)) {
4849 res
= error(_("cannot read HEAD"));
4851 strbuf_release(&head_ref
);
4852 strbuf_release(&buf
);
4855 if (!read_oneliner(&buf
, rebase_path_orig_head(), 0) ||
4856 get_oid_hex(buf
.buf
, &orig
)) {
4857 res
= error(_("could not read orig-head"));
4858 goto cleanup_head_ref
;
4861 if (!read_oneliner(&buf
, rebase_path_onto(), 0)) {
4862 res
= error(_("could not read 'onto'"));
4863 goto cleanup_head_ref
;
4865 msg
= reflog_message(opts
, "finish", "%s onto %s",
4866 head_ref
.buf
, buf
.buf
);
4867 if (update_ref(msg
, head_ref
.buf
, &head
, &orig
,
4868 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
)) {
4869 res
= error(_("could not update %s"),
4871 goto cleanup_head_ref
;
4873 msg
= reflog_message(opts
, "finish", "returning to %s",
4875 if (create_symref("HEAD", head_ref
.buf
, msg
)) {
4876 res
= error(_("could not update HEAD to %s"),
4878 goto cleanup_head_ref
;
4883 if (opts
->verbose
) {
4884 struct rev_info log_tree_opt
;
4885 struct object_id orig
, head
;
4887 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
4888 repo_init_revisions(r
, &log_tree_opt
, NULL
);
4889 log_tree_opt
.diff
= 1;
4890 log_tree_opt
.diffopt
.output_format
=
4891 DIFF_FORMAT_DIFFSTAT
;
4892 log_tree_opt
.disable_stdin
= 1;
4894 if (read_oneliner(&buf
, rebase_path_orig_head(), 0) &&
4895 !repo_get_oid(r
, buf
.buf
, &orig
) &&
4896 !repo_get_oid(r
, "HEAD", &head
)) {
4897 diff_tree_oid(&orig
, &head
, "",
4898 &log_tree_opt
.diffopt
);
4899 log_tree_diff_flush(&log_tree_opt
);
4901 release_revisions(&log_tree_opt
);
4903 flush_rewritten_pending();
4904 if (!stat(rebase_path_rewritten_list(), &st
) &&
4906 struct child_process child
= CHILD_PROCESS_INIT
;
4907 struct run_hooks_opt hook_opt
= RUN_HOOKS_OPT_INIT
;
4909 child
.in
= open(rebase_path_rewritten_list(), O_RDONLY
);
4911 strvec_push(&child
.args
, "notes");
4912 strvec_push(&child
.args
, "copy");
4913 strvec_push(&child
.args
, "--for-rewrite=rebase");
4914 /* we don't care if this copying failed */
4915 run_command(&child
);
4917 hook_opt
.path_to_stdin
= rebase_path_rewritten_list();
4918 strvec_push(&hook_opt
.args
, "rebase");
4919 run_hooks_opt("post-rewrite", &hook_opt
);
4921 apply_autostash(rebase_path_autostash());
4927 _("Successfully rebased and updated %s.\n"),
4931 strbuf_release(&buf
);
4932 strbuf_release(&head_ref
);
4934 if (do_update_refs(r
, opts
->quiet
))
4939 * Sequence of picks finished successfully; cleanup by
4940 * removing the .git/sequencer directory
4942 return sequencer_remove_state(opts
);
4945 static int continue_single_pick(struct repository
*r
, struct replay_opts
*opts
)
4947 struct child_process cmd
= CHILD_PROCESS_INIT
;
4949 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
4950 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
4951 return error(_("no cherry-pick or revert in progress"));
4954 strvec_push(&cmd
.args
, "commit");
4957 * continue_single_pick() handles the case of recovering from a
4958 * conflict. should_edit() doesn't handle that case; for a conflict,
4959 * we want to edit if the user asked for it, or if they didn't specify
4960 * and stdin is a tty.
4962 if (!opts
->edit
|| (opts
->edit
< 0 && !isatty(0)))
4964 * Include --cleanup=strip as well because we don't want the
4965 * "# Conflicts:" messages.
4967 strvec_pushl(&cmd
.args
, "--no-edit", "--cleanup=strip", NULL
);
4969 return run_command(&cmd
);
4972 static int commit_staged_changes(struct repository
*r
,
4973 struct replay_opts
*opts
,
4974 struct todo_list
*todo_list
)
4976 unsigned int flags
= ALLOW_EMPTY
| EDIT_MSG
;
4977 unsigned int final_fixup
= 0, is_clean
;
4979 if (has_unstaged_changes(r
, 1))
4980 return error(_("cannot rebase: You have unstaged changes."));
4982 is_clean
= !has_uncommitted_changes(r
, 0);
4984 if (file_exists(rebase_path_amend())) {
4985 struct strbuf rev
= STRBUF_INIT
;
4986 struct object_id head
, to_amend
;
4988 if (repo_get_oid(r
, "HEAD", &head
))
4989 return error(_("cannot amend non-existing commit"));
4990 if (!read_oneliner(&rev
, rebase_path_amend(), 0))
4991 return error(_("invalid file: '%s'"), rebase_path_amend());
4992 if (get_oid_hex(rev
.buf
, &to_amend
))
4993 return error(_("invalid contents: '%s'"),
4994 rebase_path_amend());
4995 if (!is_clean
&& !oideq(&head
, &to_amend
))
4996 return error(_("\nYou have uncommitted changes in your "
4997 "working tree. Please, commit them\n"
4998 "first and then run 'git rebase "
4999 "--continue' again."));
5001 * When skipping a failed fixup/squash, we need to edit the
5002 * commit message, the current fixup list and count, and if it
5003 * was the last fixup/squash in the chain, we need to clean up
5004 * the commit message and if there was a squash, let the user
5007 if (!is_clean
|| !opts
->current_fixup_count
)
5008 ; /* this is not the final fixup */
5009 else if (!oideq(&head
, &to_amend
) ||
5010 !file_exists(rebase_path_stopped_sha())) {
5011 /* was a final fixup or squash done manually? */
5012 if (!is_fixup(peek_command(todo_list
, 0))) {
5013 unlink(rebase_path_fixup_msg());
5014 unlink(rebase_path_squash_msg());
5015 unlink(rebase_path_current_fixups());
5016 strbuf_reset(&opts
->current_fixups
);
5017 opts
->current_fixup_count
= 0;
5020 /* we are in a fixup/squash chain */
5021 const char *p
= opts
->current_fixups
.buf
;
5022 int len
= opts
->current_fixups
.len
;
5024 opts
->current_fixup_count
--;
5026 BUG("Incorrect current_fixups:\n%s", p
);
5027 while (len
&& p
[len
- 1] != '\n')
5029 strbuf_setlen(&opts
->current_fixups
, len
);
5030 if (write_message(p
, len
, rebase_path_current_fixups(),
5032 return error(_("could not write file: '%s'"),
5033 rebase_path_current_fixups());
5036 * If a fixup/squash in a fixup/squash chain failed, the
5037 * commit message is already correct, no need to commit
5040 * Only if it is the final command in the fixup/squash
5041 * chain, and only if the chain is longer than a single
5042 * fixup/squash command (which was just skipped), do we
5043 * actually need to re-commit with a cleaned up commit
5046 if (opts
->current_fixup_count
> 0 &&
5047 !is_fixup(peek_command(todo_list
, 0))) {
5050 * If there was not a single "squash" in the
5051 * chain, we only need to clean up the commit
5052 * message, no need to bother the user with
5053 * opening the commit message in the editor.
5055 if (!starts_with(p
, "squash ") &&
5056 !strstr(p
, "\nsquash "))
5057 flags
= (flags
& ~EDIT_MSG
) | CLEANUP_MSG
;
5058 } else if (is_fixup(peek_command(todo_list
, 0))) {
5060 * We need to update the squash message to skip
5061 * the latest commit message.
5063 struct commit
*commit
;
5064 const char *path
= rebase_path_squash_msg();
5065 const char *encoding
= get_commit_output_encoding();
5067 if (parse_head(r
, &commit
) ||
5068 !(p
= repo_logmsg_reencode(r
, commit
, NULL
, encoding
)) ||
5069 write_message(p
, strlen(p
), path
, 0)) {
5070 repo_unuse_commit_buffer(r
, commit
, p
);
5071 return error(_("could not write file: "
5074 repo_unuse_commit_buffer(r
,
5079 strbuf_release(&rev
);
5084 if (refs_ref_exists(get_main_ref_store(r
),
5085 "CHERRY_PICK_HEAD") &&
5086 refs_delete_ref(get_main_ref_store(r
), "",
5087 "CHERRY_PICK_HEAD", NULL
, 0))
5088 return error(_("could not remove CHERRY_PICK_HEAD"));
5089 if (unlink(git_path_merge_msg(r
)) && errno
!= ENOENT
)
5090 return error_errno(_("could not remove '%s'"),
5091 git_path_merge_msg(r
));
5096 if (run_git_commit(final_fixup
? NULL
: rebase_path_message(),
5098 return error(_("could not commit staged changes."));
5099 unlink(rebase_path_amend());
5100 unlink(git_path_merge_head(r
));
5101 unlink(git_path_auto_merge(r
));
5103 unlink(rebase_path_fixup_msg());
5104 unlink(rebase_path_squash_msg());
5106 if (opts
->current_fixup_count
> 0) {
5108 * Whether final fixup or not, we just cleaned up the commit
5111 unlink(rebase_path_current_fixups());
5112 strbuf_reset(&opts
->current_fixups
);
5113 opts
->current_fixup_count
= 0;
5118 int sequencer_continue(struct repository
*r
, struct replay_opts
*opts
)
5120 struct todo_list todo_list
= TODO_LIST_INIT
;
5123 if (read_and_refresh_cache(r
, opts
))
5126 if (read_populate_opts(opts
))
5128 if (is_rebase_i(opts
)) {
5129 if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
5130 goto release_todo_list
;
5132 if (file_exists(rebase_path_dropped())) {
5133 if ((res
= todo_list_check_against_backup(r
, &todo_list
)))
5134 goto release_todo_list
;
5136 unlink(rebase_path_dropped());
5139 opts
->reflog_message
= reflog_message(opts
, "continue", NULL
);
5140 if (commit_staged_changes(r
, opts
, &todo_list
)) {
5142 goto release_todo_list
;
5144 } else if (!file_exists(get_todo_path(opts
)))
5145 return continue_single_pick(r
, opts
);
5146 else if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
5147 goto release_todo_list
;
5149 if (!is_rebase_i(opts
)) {
5150 /* Verify that the conflict has been resolved */
5151 if (refs_ref_exists(get_main_ref_store(r
),
5152 "CHERRY_PICK_HEAD") ||
5153 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
5154 res
= continue_single_pick(r
, opts
);
5156 goto release_todo_list
;
5158 if (index_differs_from(r
, "HEAD", NULL
, 0)) {
5159 res
= error_dirty_index(r
, opts
);
5160 goto release_todo_list
;
5162 todo_list
.current
++;
5163 } else if (file_exists(rebase_path_stopped_sha())) {
5164 struct strbuf buf
= STRBUF_INIT
;
5165 struct object_id oid
;
5167 if (read_oneliner(&buf
, rebase_path_stopped_sha(),
5168 READ_ONELINER_SKIP_IF_EMPTY
) &&
5169 !get_oid_hex(buf
.buf
, &oid
))
5170 record_in_rewritten(&oid
, peek_command(&todo_list
, 0));
5171 strbuf_release(&buf
);
5174 res
= pick_commits(r
, &todo_list
, opts
);
5176 todo_list_release(&todo_list
);
5180 static int single_pick(struct repository
*r
,
5181 struct commit
*cmit
,
5182 struct replay_opts
*opts
)
5185 struct todo_item item
;
5187 item
.command
= opts
->action
== REPLAY_PICK
?
5188 TODO_PICK
: TODO_REVERT
;
5191 opts
->reflog_message
= sequencer_reflog_action(opts
);
5192 return do_pick_commit(r
, &item
, opts
, 0, &check_todo
);
5195 int sequencer_pick_revisions(struct repository
*r
,
5196 struct replay_opts
*opts
)
5198 struct todo_list todo_list
= TODO_LIST_INIT
;
5199 struct object_id oid
;
5203 if (read_and_refresh_cache(r
, opts
))
5206 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
5207 struct object_id oid
;
5208 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
5210 /* This happens when using --stdin. */
5214 if (!repo_get_oid(r
, name
, &oid
)) {
5215 if (!lookup_commit_reference_gently(r
, &oid
, 1)) {
5216 enum object_type type
= oid_object_info(r
,
5219 return error(_("%s: can't cherry-pick a %s"),
5220 name
, type_name(type
));
5223 return error(_("%s: bad revision"), name
);
5227 * If we were called as "git cherry-pick <commit>", just
5228 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
5229 * REVERT_HEAD, and don't touch the sequencer state.
5230 * This means it is possible to cherry-pick in the middle
5231 * of a cherry-pick sequence.
5233 if (opts
->revs
->cmdline
.nr
== 1 &&
5234 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
5235 opts
->revs
->no_walk
&&
5236 !opts
->revs
->cmdline
.rev
->flags
) {
5237 struct commit
*cmit
;
5238 if (prepare_revision_walk(opts
->revs
))
5239 return error(_("revision walk setup failed"));
5240 cmit
= get_revision(opts
->revs
);
5242 return error(_("empty commit set passed"));
5243 if (get_revision(opts
->revs
))
5244 BUG("unexpected extra commit from walk");
5245 return single_pick(r
, cmit
, opts
);
5249 * Start a new cherry-pick/ revert sequence; but
5250 * first, make sure that an existing one isn't in
5254 if (walk_revs_populate_todo(&todo_list
, opts
) ||
5255 create_seq_dir(r
) < 0)
5257 if (repo_get_oid(r
, "HEAD", &oid
) && (opts
->action
== REPLAY_REVERT
))
5258 return error(_("can't revert as initial commit"));
5259 if (save_head(oid_to_hex(&oid
)))
5261 if (save_opts(opts
))
5263 update_abort_safety_file();
5264 res
= pick_commits(r
, &todo_list
, opts
);
5265 todo_list_release(&todo_list
);
5269 void append_signoff(struct strbuf
*msgbuf
, size_t ignore_footer
, unsigned flag
)
5271 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
5272 struct strbuf sob
= STRBUF_INIT
;
5275 strbuf_addstr(&sob
, sign_off_header
);
5276 strbuf_addstr(&sob
, fmt_name(WANT_COMMITTER_IDENT
));
5277 strbuf_addch(&sob
, '\n');
5280 strbuf_complete_line(msgbuf
);
5283 * If the whole message buffer is equal to the sob, pretend that we
5284 * found a conforming footer with a matching sob
5286 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
5287 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
5290 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
5293 const char *append_newlines
= NULL
;
5294 size_t len
= msgbuf
->len
- ignore_footer
;
5298 * The buffer is completely empty. Leave foom for
5299 * the title and body to be filled in by the user.
5301 append_newlines
= "\n\n";
5302 } else if (len
== 1) {
5304 * Buffer contains a single newline. Add another
5305 * so that we leave room for the title and body.
5307 append_newlines
= "\n";
5308 } else if (msgbuf
->buf
[len
- 2] != '\n') {
5310 * Buffer ends with a single newline. Add another
5311 * so that there is an empty line between the message
5314 append_newlines
= "\n";
5315 } /* else, the buffer already ends with two newlines. */
5317 if (append_newlines
)
5318 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
5319 append_newlines
, strlen(append_newlines
));
5322 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
5323 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
5326 strbuf_release(&sob
);
5329 struct labels_entry
{
5330 struct hashmap_entry entry
;
5331 char label
[FLEX_ARRAY
];
5334 static int labels_cmp(const void *fndata UNUSED
,
5335 const struct hashmap_entry
*eptr
,
5336 const struct hashmap_entry
*entry_or_key
, const void *key
)
5338 const struct labels_entry
*a
, *b
;
5340 a
= container_of(eptr
, const struct labels_entry
, entry
);
5341 b
= container_of(entry_or_key
, const struct labels_entry
, entry
);
5343 return key
? strcmp(a
->label
, key
) : strcmp(a
->label
, b
->label
);
5346 struct string_entry
{
5347 struct oidmap_entry entry
;
5348 char string
[FLEX_ARRAY
];
5351 struct label_state
{
5352 struct oidmap commit2label
;
5353 struct hashmap labels
;
5357 static const char *label_oid(struct object_id
*oid
, const char *label
,
5358 struct label_state
*state
)
5360 struct labels_entry
*labels_entry
;
5361 struct string_entry
*string_entry
;
5362 struct object_id dummy
;
5365 string_entry
= oidmap_get(&state
->commit2label
, oid
);
5367 return string_entry
->string
;
5370 * For "uninteresting" commits, i.e. commits that are not to be
5371 * rebased, and which can therefore not be labeled, we use a unique
5372 * abbreviation of the commit name. This is slightly more complicated
5373 * than calling repo_find_unique_abbrev() because we also need to make
5374 * sure that the abbreviation does not conflict with any other
5377 * We disallow "interesting" commits to be labeled by a string that
5378 * is a valid full-length hash, to ensure that we always can find an
5379 * abbreviation for any uninteresting commit's names that does not
5380 * clash with any other label.
5382 strbuf_reset(&state
->buf
);
5386 strbuf_grow(&state
->buf
, GIT_MAX_HEXSZ
);
5387 label
= p
= state
->buf
.buf
;
5389 repo_find_unique_abbrev_r(the_repository
, p
, oid
,
5393 * We may need to extend the abbreviated hash so that there is
5394 * no conflicting label.
5396 if (hashmap_get_from_hash(&state
->labels
, strihash(p
), p
)) {
5397 size_t i
= strlen(p
) + 1;
5399 oid_to_hex_r(p
, oid
);
5400 for (; i
< the_hash_algo
->hexsz
; i
++) {
5403 if (!hashmap_get_from_hash(&state
->labels
,
5410 struct strbuf
*buf
= &state
->buf
;
5413 * Sanitize labels by replacing non-alpha-numeric characters
5414 * (including white-space ones) by dashes, as they might be
5415 * illegal in file names (and hence in ref names).
5417 * Note that we retain non-ASCII UTF-8 characters (identified
5418 * via the most significant bit). They should be all acceptable
5419 * in file names. We do not validate the UTF-8 here, that's not
5420 * the job of this function.
5422 for (; *label
; label
++)
5423 if ((*label
& 0x80) || isalnum(*label
))
5424 strbuf_addch(buf
, *label
);
5425 /* avoid leading dash and double-dashes */
5426 else if (buf
->len
&& buf
->buf
[buf
->len
- 1] != '-')
5427 strbuf_addch(buf
, '-');
5429 strbuf_addstr(buf
, "rev-");
5430 strbuf_add_unique_abbrev(buf
, oid
, default_abbrev
);
5434 if ((buf
->len
== the_hash_algo
->hexsz
&&
5435 !get_oid_hex(label
, &dummy
)) ||
5436 (buf
->len
== 1 && *label
== '#') ||
5437 hashmap_get_from_hash(&state
->labels
,
5438 strihash(label
), label
)) {
5440 * If the label already exists, or if the label is a
5441 * valid full OID, or the label is a '#' (which we use
5442 * as a separator between merge heads and oneline), we
5443 * append a dash and a number to make it unique.
5445 size_t len
= buf
->len
;
5447 for (i
= 2; ; i
++) {
5448 strbuf_setlen(buf
, len
);
5449 strbuf_addf(buf
, "-%d", i
);
5450 if (!hashmap_get_from_hash(&state
->labels
,
5460 FLEX_ALLOC_STR(labels_entry
, label
, label
);
5461 hashmap_entry_init(&labels_entry
->entry
, strihash(label
));
5462 hashmap_add(&state
->labels
, &labels_entry
->entry
);
5464 FLEX_ALLOC_STR(string_entry
, string
, label
);
5465 oidcpy(&string_entry
->entry
.oid
, oid
);
5466 oidmap_put(&state
->commit2label
, string_entry
);
5468 return string_entry
->string
;
5471 static int make_script_with_merges(struct pretty_print_context
*pp
,
5472 struct rev_info
*revs
, struct strbuf
*out
,
5475 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5476 int rebase_cousins
= flags
& TODO_LIST_REBASE_COUSINS
;
5477 int root_with_onto
= flags
& TODO_LIST_ROOT_WITH_ONTO
;
5478 int skipped_commit
= 0;
5479 struct strbuf buf
= STRBUF_INIT
, oneline
= STRBUF_INIT
;
5480 struct strbuf label
= STRBUF_INIT
;
5481 struct commit_list
*commits
= NULL
, **tail
= &commits
, *iter
;
5482 struct commit_list
*tips
= NULL
, **tips_tail
= &tips
;
5483 struct commit
*commit
;
5484 struct oidmap commit2todo
= OIDMAP_INIT
;
5485 struct string_entry
*entry
;
5486 struct oidset interesting
= OIDSET_INIT
, child_seen
= OIDSET_INIT
,
5487 shown
= OIDSET_INIT
;
5488 struct label_state state
= { OIDMAP_INIT
, { NULL
}, STRBUF_INIT
};
5490 int abbr
= flags
& TODO_LIST_ABBREVIATE_CMDS
;
5491 const char *cmd_pick
= abbr
? "p" : "pick",
5492 *cmd_label
= abbr
? "l" : "label",
5493 *cmd_reset
= abbr
? "t" : "reset",
5494 *cmd_merge
= abbr
? "m" : "merge";
5496 oidmap_init(&commit2todo
, 0);
5497 oidmap_init(&state
.commit2label
, 0);
5498 hashmap_init(&state
.labels
, labels_cmp
, NULL
, 0);
5499 strbuf_init(&state
.buf
, 32);
5501 if (revs
->cmdline
.nr
&& (revs
->cmdline
.rev
[0].flags
& BOTTOM
)) {
5502 struct labels_entry
*onto_label_entry
;
5503 struct object_id
*oid
= &revs
->cmdline
.rev
[0].item
->oid
;
5504 FLEX_ALLOC_STR(entry
, string
, "onto");
5505 oidcpy(&entry
->entry
.oid
, oid
);
5506 oidmap_put(&state
.commit2label
, entry
);
5508 FLEX_ALLOC_STR(onto_label_entry
, label
, "onto");
5509 hashmap_entry_init(&onto_label_entry
->entry
, strihash("onto"));
5510 hashmap_add(&state
.labels
, &onto_label_entry
->entry
);
5515 * - get onelines for all commits
5516 * - gather all branch tips (i.e. 2nd or later parents of merges)
5517 * - label all branch tips
5519 while ((commit
= get_revision(revs
))) {
5520 struct commit_list
*to_merge
;
5521 const char *p1
, *p2
;
5522 struct object_id
*oid
;
5525 tail
= &commit_list_insert(commit
, tail
)->next
;
5526 oidset_insert(&interesting
, &commit
->object
.oid
);
5528 is_empty
= is_original_commit_empty(commit
);
5529 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
)) {
5530 if (flags
& TODO_LIST_WARN_SKIPPED_CHERRY_PICKS
)
5531 warning(_("skipped previously applied commit %s"),
5532 short_commit_name(commit
));
5536 if (is_empty
&& !keep_empty
)
5539 strbuf_reset(&oneline
);
5540 pretty_print_commit(pp
, commit
, &oneline
);
5542 to_merge
= commit
->parents
? commit
->parents
->next
: NULL
;
5544 /* non-merge commit: easy case */
5546 strbuf_addf(&buf
, "%s %s %s", cmd_pick
,
5547 oid_to_hex(&commit
->object
.oid
),
5550 strbuf_addf(&buf
, " %c empty",
5553 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5554 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5555 oidmap_put(&commit2todo
, entry
);
5560 /* Create a label */
5561 strbuf_reset(&label
);
5562 if (skip_prefix(oneline
.buf
, "Merge ", &p1
) &&
5563 (p1
= strchr(p1
, '\'')) &&
5564 (p2
= strchr(++p1
, '\'')))
5565 strbuf_add(&label
, p1
, p2
- p1
);
5566 else if (skip_prefix(oneline
.buf
, "Merge pull request ",
5568 (p1
= strstr(p1
, " from ")))
5569 strbuf_addstr(&label
, p1
+ strlen(" from "));
5571 strbuf_addbuf(&label
, &oneline
);
5574 strbuf_addf(&buf
, "%s -C %s",
5575 cmd_merge
, oid_to_hex(&commit
->object
.oid
));
5577 /* label the tips of merged branches */
5578 for (; to_merge
; to_merge
= to_merge
->next
) {
5579 oid
= &to_merge
->item
->object
.oid
;
5580 strbuf_addch(&buf
, ' ');
5582 if (!oidset_contains(&interesting
, oid
)) {
5583 strbuf_addstr(&buf
, label_oid(oid
, NULL
,
5588 tips_tail
= &commit_list_insert(to_merge
->item
,
5591 strbuf_addstr(&buf
, label_oid(oid
, label
.buf
, &state
));
5593 strbuf_addf(&buf
, " # %s", oneline
.buf
);
5595 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5596 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5597 oidmap_put(&commit2todo
, entry
);
5600 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS
,
5601 _("use --reapply-cherry-picks to include skipped commits"));
5605 * - label branch points
5606 * - add HEAD to the branch tips
5608 for (iter
= commits
; iter
; iter
= iter
->next
) {
5609 struct commit_list
*parent
= iter
->item
->parents
;
5610 for (; parent
; parent
= parent
->next
) {
5611 struct object_id
*oid
= &parent
->item
->object
.oid
;
5612 if (!oidset_contains(&interesting
, oid
))
5614 if (oidset_insert(&child_seen
, oid
))
5615 label_oid(oid
, "branch-point", &state
);
5618 /* Add HEAD as implicit "tip of branch" */
5620 tips_tail
= &commit_list_insert(iter
->item
,
5625 * Third phase: output the todo list. This is a bit tricky, as we
5626 * want to avoid jumping back and forth between revisions. To
5627 * accomplish that goal, we walk backwards from the branch tips,
5628 * gathering commits not yet shown, reversing the list on the fly,
5629 * then outputting that list (labeling revisions as needed).
5631 strbuf_addf(out
, "%s onto\n", cmd_label
);
5632 for (iter
= tips
; iter
; iter
= iter
->next
) {
5633 struct commit_list
*list
= NULL
, *iter2
;
5635 commit
= iter
->item
;
5636 if (oidset_contains(&shown
, &commit
->object
.oid
))
5638 entry
= oidmap_get(&state
.commit2label
, &commit
->object
.oid
);
5641 strbuf_addf(out
, "\n%c Branch %s\n", comment_line_char
, entry
->string
);
5643 strbuf_addch(out
, '\n');
5645 while (oidset_contains(&interesting
, &commit
->object
.oid
) &&
5646 !oidset_contains(&shown
, &commit
->object
.oid
)) {
5647 commit_list_insert(commit
, &list
);
5648 if (!commit
->parents
) {
5652 commit
= commit
->parents
->item
;
5656 strbuf_addf(out
, "%s %s\n", cmd_reset
,
5657 rebase_cousins
|| root_with_onto
?
5658 "onto" : "[new root]");
5660 const char *to
= NULL
;
5662 entry
= oidmap_get(&state
.commit2label
,
5663 &commit
->object
.oid
);
5666 else if (!rebase_cousins
)
5667 to
= label_oid(&commit
->object
.oid
, NULL
,
5670 if (!to
|| !strcmp(to
, "onto"))
5671 strbuf_addf(out
, "%s onto\n", cmd_reset
);
5673 strbuf_reset(&oneline
);
5674 pretty_print_commit(pp
, commit
, &oneline
);
5675 strbuf_addf(out
, "%s %s # %s\n",
5676 cmd_reset
, to
, oneline
.buf
);
5680 for (iter2
= list
; iter2
; iter2
= iter2
->next
) {
5681 struct object_id
*oid
= &iter2
->item
->object
.oid
;
5682 entry
= oidmap_get(&commit2todo
, oid
);
5683 /* only show if not already upstream */
5685 strbuf_addf(out
, "%s\n", entry
->string
);
5686 entry
= oidmap_get(&state
.commit2label
, oid
);
5688 strbuf_addf(out
, "%s %s\n",
5689 cmd_label
, entry
->string
);
5690 oidset_insert(&shown
, oid
);
5693 free_commit_list(list
);
5696 free_commit_list(commits
);
5697 free_commit_list(tips
);
5699 strbuf_release(&label
);
5700 strbuf_release(&oneline
);
5701 strbuf_release(&buf
);
5703 oidmap_free(&commit2todo
, 1);
5704 oidmap_free(&state
.commit2label
, 1);
5705 hashmap_clear_and_free(&state
.labels
, struct labels_entry
, entry
);
5706 strbuf_release(&state
.buf
);
5711 int sequencer_make_script(struct repository
*r
, struct strbuf
*out
, int argc
,
5712 const char **argv
, unsigned flags
)
5714 char *format
= NULL
;
5715 struct pretty_print_context pp
= {0};
5716 struct rev_info revs
;
5717 struct commit
*commit
;
5718 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5719 const char *insn
= flags
& TODO_LIST_ABBREVIATE_CMDS
? "p" : "pick";
5720 int rebase_merges
= flags
& TODO_LIST_REBASE_MERGES
;
5721 int reapply_cherry_picks
= flags
& TODO_LIST_REAPPLY_CHERRY_PICKS
;
5722 int skipped_commit
= 0;
5725 repo_init_revisions(r
, &revs
, NULL
);
5726 revs
.verbose_header
= 1;
5728 revs
.max_parents
= 1;
5729 revs
.cherry_mark
= !reapply_cherry_picks
;
5732 revs
.right_only
= 1;
5733 revs
.sort_order
= REV_SORT_IN_GRAPH_ORDER
;
5734 revs
.topo_order
= 1;
5736 revs
.pretty_given
= 1;
5737 git_config_get_string("rebase.instructionFormat", &format
);
5738 if (!format
|| !*format
) {
5740 format
= xstrdup("%s");
5742 get_commit_format(format
, &revs
);
5744 pp
.fmt
= revs
.commit_format
;
5745 pp
.output_encoding
= get_log_output_encoding();
5747 if (setup_revisions(argc
, argv
, &revs
, NULL
) > 1) {
5748 ret
= error(_("make_script: unhandled options"));
5752 if (prepare_revision_walk(&revs
) < 0) {
5753 ret
= error(_("make_script: error preparing revisions"));
5757 if (rebase_merges
) {
5758 ret
= make_script_with_merges(&pp
, &revs
, out
, flags
);
5762 while ((commit
= get_revision(&revs
))) {
5763 int is_empty
= is_original_commit_empty(commit
);
5765 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
)) {
5766 if (flags
& TODO_LIST_WARN_SKIPPED_CHERRY_PICKS
)
5767 warning(_("skipped previously applied commit %s"),
5768 short_commit_name(commit
));
5772 if (is_empty
&& !keep_empty
)
5774 strbuf_addf(out
, "%s %s ", insn
,
5775 oid_to_hex(&commit
->object
.oid
));
5776 pretty_print_commit(&pp
, commit
, out
);
5778 strbuf_addf(out
, " %c empty", comment_line_char
);
5779 strbuf_addch(out
, '\n');
5782 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS
,
5783 _("use --reapply-cherry-picks to include skipped commits"));
5785 release_revisions(&revs
);
5790 * Add commands after pick and (series of) squash/fixup commands
5793 static void todo_list_add_exec_commands(struct todo_list
*todo_list
,
5794 struct string_list
*commands
)
5796 struct strbuf
*buf
= &todo_list
->buf
;
5797 size_t base_offset
= buf
->len
;
5798 int i
, insert
, nr
= 0, alloc
= 0;
5799 struct todo_item
*items
= NULL
, *base_items
= NULL
;
5801 CALLOC_ARRAY(base_items
, commands
->nr
);
5802 for (i
= 0; i
< commands
->nr
; i
++) {
5803 size_t command_len
= strlen(commands
->items
[i
].string
);
5805 strbuf_addstr(buf
, commands
->items
[i
].string
);
5806 strbuf_addch(buf
, '\n');
5808 base_items
[i
].command
= TODO_EXEC
;
5809 base_items
[i
].offset_in_buf
= base_offset
;
5810 base_items
[i
].arg_offset
= base_offset
;
5811 base_items
[i
].arg_len
= command_len
;
5813 base_offset
+= command_len
+ 1;
5817 * Insert <commands> after every pick. Here, fixup/squash chains
5818 * are considered part of the pick, so we insert the commands *after*
5819 * those chains if there are any.
5821 * As we insert the exec commands immediately after rearranging
5822 * any fixups and before the user edits the list, a fixup chain
5823 * can never contain comments (any comments are empty picks that
5824 * have been commented out because the user did not specify
5825 * --keep-empty). So, it is safe to insert an exec command
5826 * without looking at the command following a comment.
5829 for (i
= 0; i
< todo_list
->nr
; i
++) {
5830 enum todo_command command
= todo_list
->items
[i
].command
;
5831 if (insert
&& !is_fixup(command
)) {
5832 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5833 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5839 ALLOC_GROW(items
, nr
+ 1, alloc
);
5840 items
[nr
++] = todo_list
->items
[i
];
5842 if (command
== TODO_PICK
|| command
== TODO_MERGE
)
5846 /* insert or append final <commands> */
5848 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5849 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5854 FREE_AND_NULL(todo_list
->items
);
5855 todo_list
->items
= items
;
5857 todo_list
->alloc
= alloc
;
5860 static void todo_list_to_strbuf(struct repository
*r
, struct todo_list
*todo_list
,
5861 struct strbuf
*buf
, int num
, unsigned flags
)
5863 struct todo_item
*item
;
5864 int i
, max
= todo_list
->nr
;
5866 if (num
> 0 && num
< max
)
5869 for (item
= todo_list
->items
, i
= 0; i
< max
; i
++, item
++) {
5872 /* if the item is not a command write it and continue */
5873 if (item
->command
>= TODO_COMMENT
) {
5874 strbuf_addf(buf
, "%.*s\n", item
->arg_len
,
5875 todo_item_get_arg(todo_list
, item
));
5879 /* add command to the buffer */
5880 cmd
= command_to_char(item
->command
);
5881 if ((flags
& TODO_LIST_ABBREVIATE_CMDS
) && cmd
)
5882 strbuf_addch(buf
, cmd
);
5884 strbuf_addstr(buf
, command_to_string(item
->command
));
5888 const char *oid
= flags
& TODO_LIST_SHORTEN_IDS
?
5889 short_commit_name(item
->commit
) :
5890 oid_to_hex(&item
->commit
->object
.oid
);
5892 if (item
->command
== TODO_FIXUP
) {
5893 if (item
->flags
& TODO_EDIT_FIXUP_MSG
)
5894 strbuf_addstr(buf
, " -c");
5895 else if (item
->flags
& TODO_REPLACE_FIXUP_MSG
) {
5896 strbuf_addstr(buf
, " -C");
5900 if (item
->command
== TODO_MERGE
) {
5901 if (item
->flags
& TODO_EDIT_MERGE_MSG
)
5902 strbuf_addstr(buf
, " -c");
5904 strbuf_addstr(buf
, " -C");
5907 strbuf_addf(buf
, " %s", oid
);
5910 /* add all the rest */
5912 strbuf_addch(buf
, '\n');
5914 strbuf_addf(buf
, " %.*s\n", item
->arg_len
,
5915 todo_item_get_arg(todo_list
, item
));
5919 int todo_list_write_to_file(struct repository
*r
, struct todo_list
*todo_list
,
5920 const char *file
, const char *shortrevisions
,
5921 const char *shortonto
, int num
, unsigned flags
)
5924 struct strbuf buf
= STRBUF_INIT
;
5926 todo_list_to_strbuf(r
, todo_list
, &buf
, num
, flags
);
5927 if (flags
& TODO_LIST_APPEND_TODO_HELP
)
5928 append_todo_help(count_commands(todo_list
),
5929 shortrevisions
, shortonto
, &buf
);
5931 res
= write_message(buf
.buf
, buf
.len
, file
, 0);
5932 strbuf_release(&buf
);
5937 /* skip picking commits whose parents are unchanged */
5938 static int skip_unnecessary_picks(struct repository
*r
,
5939 struct todo_list
*todo_list
,
5940 struct object_id
*base_oid
)
5942 struct object_id
*parent_oid
;
5945 for (i
= 0; i
< todo_list
->nr
; i
++) {
5946 struct todo_item
*item
= todo_list
->items
+ i
;
5948 if (item
->command
>= TODO_NOOP
)
5950 if (item
->command
!= TODO_PICK
)
5952 if (repo_parse_commit(r
, item
->commit
)) {
5953 return error(_("could not parse commit '%s'"),
5954 oid_to_hex(&item
->commit
->object
.oid
));
5956 if (!item
->commit
->parents
)
5957 break; /* root commit */
5958 if (item
->commit
->parents
->next
)
5959 break; /* merge commit */
5960 parent_oid
= &item
->commit
->parents
->item
->object
.oid
;
5961 if (!oideq(parent_oid
, base_oid
))
5963 oidcpy(base_oid
, &item
->commit
->object
.oid
);
5966 const char *done_path
= rebase_path_done();
5968 if (todo_list_write_to_file(r
, todo_list
, done_path
, NULL
, NULL
, i
, 0)) {
5969 error_errno(_("could not write to '%s'"), done_path
);
5973 MOVE_ARRAY(todo_list
->items
, todo_list
->items
+ i
, todo_list
->nr
- i
);
5975 todo_list
->current
= 0;
5976 todo_list
->done_nr
+= i
;
5978 if (is_fixup(peek_command(todo_list
, 0)))
5979 record_in_rewritten(base_oid
, peek_command(todo_list
, 0));
5985 struct todo_add_branch_context
{
5986 struct todo_item
*items
;
5990 struct commit
*commit
;
5991 struct string_list refs_to_oids
;
5994 static int add_decorations_to_list(const struct commit
*commit
,
5995 struct todo_add_branch_context
*ctx
)
5997 const struct name_decoration
*decoration
= get_name_decoration(&commit
->object
);
5998 const char *head_ref
= resolve_ref_unsafe("HEAD",
5999 RESOLVE_REF_READING
,
6003 while (decoration
) {
6004 struct todo_item
*item
;
6006 size_t base_offset
= ctx
->buf
->len
;
6009 * If the branch is the current HEAD, then it will be
6010 * updated by the default rebase behavior.
6012 if (head_ref
&& !strcmp(head_ref
, decoration
->name
)) {
6013 decoration
= decoration
->next
;
6017 ALLOC_GROW(ctx
->items
,
6020 item
= &ctx
->items
[ctx
->items_nr
];
6021 memset(item
, 0, sizeof(*item
));
6023 /* If the branch is checked out, then leave a comment instead. */
6024 if ((path
= branch_checked_out(decoration
->name
))) {
6025 item
->command
= TODO_COMMENT
;
6026 strbuf_addf(ctx
->buf
, "# Ref %s checked out at '%s'\n",
6027 decoration
->name
, path
);
6029 struct string_list_item
*sti
;
6030 item
->command
= TODO_UPDATE_REF
;
6031 strbuf_addf(ctx
->buf
, "%s\n", decoration
->name
);
6033 sti
= string_list_insert(&ctx
->refs_to_oids
,
6035 sti
->util
= init_update_ref_record(decoration
->name
);
6038 item
->offset_in_buf
= base_offset
;
6039 item
->arg_offset
= base_offset
;
6040 item
->arg_len
= ctx
->buf
->len
- base_offset
;
6043 decoration
= decoration
->next
;
6050 * For each 'pick' command, find out if the commit has a decoration in
6051 * refs/heads/. If so, then add a 'label for-update-refs/' command.
6053 static int todo_list_add_update_ref_commands(struct todo_list
*todo_list
)
6056 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
6057 static struct string_list decorate_refs_exclude_config
= STRING_LIST_INIT_NODUP
;
6058 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
6059 struct decoration_filter decoration_filter
= {
6060 .include_ref_pattern
= &decorate_refs_include
,
6061 .exclude_ref_pattern
= &decorate_refs_exclude
,
6062 .exclude_ref_config_pattern
= &decorate_refs_exclude_config
,
6064 struct todo_add_branch_context ctx
= {
6065 .buf
= &todo_list
->buf
,
6066 .refs_to_oids
= STRING_LIST_INIT_DUP
,
6069 ctx
.items_alloc
= 2 * todo_list
->nr
+ 1;
6070 ALLOC_ARRAY(ctx
.items
, ctx
.items_alloc
);
6072 string_list_append(&decorate_refs_include
, "refs/heads/");
6073 load_ref_decorations(&decoration_filter
, 0);
6075 for (i
= 0; i
< todo_list
->nr
; ) {
6076 struct todo_item
*item
= &todo_list
->items
[i
];
6078 /* insert ith item into new list */
6079 ALLOC_GROW(ctx
.items
,
6083 ctx
.items
[ctx
.items_nr
++] = todo_list
->items
[i
++];
6086 ctx
.commit
= item
->commit
;
6087 add_decorations_to_list(item
->commit
, &ctx
);
6091 res
= write_update_refs_state(&ctx
.refs_to_oids
);
6093 string_list_clear(&ctx
.refs_to_oids
, 1);
6096 /* we failed, so clean up the new list. */
6101 free(todo_list
->items
);
6102 todo_list
->items
= ctx
.items
;
6103 todo_list
->nr
= ctx
.items_nr
;
6104 todo_list
->alloc
= ctx
.items_alloc
;
6109 int complete_action(struct repository
*r
, struct replay_opts
*opts
, unsigned flags
,
6110 const char *shortrevisions
, const char *onto_name
,
6111 struct commit
*onto
, const struct object_id
*orig_head
,
6112 struct string_list
*commands
, unsigned autosquash
,
6113 unsigned update_refs
,
6114 struct todo_list
*todo_list
)
6116 char shortonto
[GIT_MAX_HEXSZ
+ 1];
6117 const char *todo_file
= rebase_path_todo();
6118 struct todo_list new_todo
= TODO_LIST_INIT
;
6119 struct strbuf
*buf
= &todo_list
->buf
, buf2
= STRBUF_INIT
;
6120 struct object_id oid
= onto
->object
.oid
;
6123 repo_find_unique_abbrev_r(r
, shortonto
, &oid
,
6126 if (buf
->len
== 0) {
6127 struct todo_item
*item
= append_new_todo(todo_list
);
6128 item
->command
= TODO_NOOP
;
6129 item
->commit
= NULL
;
6130 item
->arg_len
= item
->arg_offset
= item
->flags
= item
->offset_in_buf
= 0;
6133 if (update_refs
&& todo_list_add_update_ref_commands(todo_list
))
6136 if (autosquash
&& todo_list_rearrange_squash(todo_list
))
6140 todo_list_add_exec_commands(todo_list
, commands
);
6142 if (count_commands(todo_list
) == 0) {
6143 apply_autostash(rebase_path_autostash());
6144 sequencer_remove_state(opts
);
6146 return error(_("nothing to do"));
6149 res
= edit_todo_list(r
, todo_list
, &new_todo
, shortrevisions
,
6153 else if (res
== -2) {
6154 apply_autostash(rebase_path_autostash());
6155 sequencer_remove_state(opts
);
6158 } else if (res
== -3) {
6159 apply_autostash(rebase_path_autostash());
6160 sequencer_remove_state(opts
);
6161 todo_list_release(&new_todo
);
6163 return error(_("nothing to do"));
6164 } else if (res
== -4) {
6165 checkout_onto(r
, opts
, onto_name
, &onto
->object
.oid
, orig_head
);
6166 todo_list_release(&new_todo
);
6171 /* Expand the commit IDs */
6172 todo_list_to_strbuf(r
, &new_todo
, &buf2
, -1, 0);
6173 strbuf_swap(&new_todo
.buf
, &buf2
);
6174 strbuf_release(&buf2
);
6175 new_todo
.total_nr
-= new_todo
.nr
;
6176 if (todo_list_parse_insn_buffer(r
, new_todo
.buf
.buf
, &new_todo
) < 0)
6177 BUG("invalid todo list after expanding IDs:\n%s",
6180 if (opts
->allow_ff
&& skip_unnecessary_picks(r
, &new_todo
, &oid
)) {
6181 todo_list_release(&new_todo
);
6182 return error(_("could not skip unnecessary pick commands"));
6185 if (todo_list_write_to_file(r
, &new_todo
, todo_file
, NULL
, NULL
, -1,
6186 flags
& ~(TODO_LIST_SHORTEN_IDS
))) {
6187 todo_list_release(&new_todo
);
6188 return error_errno(_("could not write '%s'"), todo_file
);
6193 if (checkout_onto(r
, opts
, onto_name
, &oid
, orig_head
))
6196 if (require_clean_work_tree(r
, "rebase", "", 1, 1))
6199 todo_list_write_total_nr(&new_todo
);
6200 res
= pick_commits(r
, &new_todo
, opts
);
6203 todo_list_release(&new_todo
);
6208 struct subject2item_entry
{
6209 struct hashmap_entry entry
;
6211 char subject
[FLEX_ARRAY
];
6214 static int subject2item_cmp(const void *fndata UNUSED
,
6215 const struct hashmap_entry
*eptr
,
6216 const struct hashmap_entry
*entry_or_key
,
6219 const struct subject2item_entry
*a
, *b
;
6221 a
= container_of(eptr
, const struct subject2item_entry
, entry
);
6222 b
= container_of(entry_or_key
, const struct subject2item_entry
, entry
);
6224 return key
? strcmp(a
->subject
, key
) : strcmp(a
->subject
, b
->subject
);
6227 define_commit_slab(commit_todo_item
, struct todo_item
*);
6229 static int skip_fixupish(const char *subject
, const char **p
) {
6230 return skip_prefix(subject
, "fixup! ", p
) ||
6231 skip_prefix(subject
, "amend! ", p
) ||
6232 skip_prefix(subject
, "squash! ", p
);
6236 * Rearrange the todo list that has both "pick commit-id msg" and "pick
6237 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
6238 * after the former, and change "pick" to "fixup"/"squash".
6240 * Note that if the config has specified a custom instruction format, each log
6241 * message will have to be retrieved from the commit (as the oneline in the
6242 * script cannot be trusted) in order to normalize the autosquash arrangement.
6244 int todo_list_rearrange_squash(struct todo_list
*todo_list
)
6246 struct hashmap subject2item
;
6247 int rearranged
= 0, *next
, *tail
, i
, nr
= 0, alloc
= 0;
6249 struct commit_todo_item commit_todo
;
6250 struct todo_item
*items
= NULL
;
6252 init_commit_todo_item(&commit_todo
);
6254 * The hashmap maps onelines to the respective todo list index.
6256 * If any items need to be rearranged, the next[i] value will indicate
6257 * which item was moved directly after the i'th.
6259 * In that case, last[i] will indicate the index of the latest item to
6260 * be moved to appear after the i'th.
6262 hashmap_init(&subject2item
, subject2item_cmp
, NULL
, todo_list
->nr
);
6263 ALLOC_ARRAY(next
, todo_list
->nr
);
6264 ALLOC_ARRAY(tail
, todo_list
->nr
);
6265 ALLOC_ARRAY(subjects
, todo_list
->nr
);
6266 for (i
= 0; i
< todo_list
->nr
; i
++) {
6267 struct strbuf buf
= STRBUF_INIT
;
6268 struct todo_item
*item
= todo_list
->items
+ i
;
6269 const char *commit_buffer
, *subject
, *p
;
6272 struct subject2item_entry
*entry
;
6274 next
[i
] = tail
[i
] = -1;
6275 if (!item
->commit
|| item
->command
== TODO_DROP
) {
6280 if (is_fixup(item
->command
)) {
6281 clear_commit_todo_item(&commit_todo
);
6282 return error(_("the script was already rearranged."));
6285 repo_parse_commit(the_repository
, item
->commit
);
6286 commit_buffer
= repo_logmsg_reencode(the_repository
,
6289 find_commit_subject(commit_buffer
, &subject
);
6290 format_subject(&buf
, subject
, " ");
6291 subject
= subjects
[i
] = strbuf_detach(&buf
, &subject_len
);
6292 repo_unuse_commit_buffer(the_repository
, item
->commit
,
6294 if (skip_fixupish(subject
, &p
)) {
6295 struct commit
*commit2
;
6300 if (!skip_fixupish(p
, &p
))
6304 entry
= hashmap_get_entry_from_hash(&subject2item
,
6306 struct subject2item_entry
,
6309 /* found by title */
6311 else if (!strchr(p
, ' ') &&
6313 lookup_commit_reference_by_name(p
)) &&
6314 *commit_todo_item_at(&commit_todo
, commit2
))
6315 /* found by commit name */
6316 i2
= *commit_todo_item_at(&commit_todo
, commit2
)
6319 /* copy can be a prefix of the commit subject */
6320 for (i2
= 0; i2
< i
; i2
++)
6322 starts_with(subjects
[i2
], p
))
6330 if (starts_with(subject
, "fixup!")) {
6331 todo_list
->items
[i
].command
= TODO_FIXUP
;
6332 } else if (starts_with(subject
, "amend!")) {
6333 todo_list
->items
[i
].command
= TODO_FIXUP
;
6334 todo_list
->items
[i
].flags
= TODO_REPLACE_FIXUP_MSG
;
6336 todo_list
->items
[i
].command
= TODO_SQUASH
;
6342 next
[i
] = next
[tail
[i2
]];
6346 } else if (!hashmap_get_from_hash(&subject2item
,
6347 strhash(subject
), subject
)) {
6348 FLEX_ALLOC_MEM(entry
, subject
, subject
, subject_len
);
6350 hashmap_entry_init(&entry
->entry
,
6351 strhash(entry
->subject
));
6352 hashmap_put(&subject2item
, &entry
->entry
);
6355 *commit_todo_item_at(&commit_todo
, item
->commit
) = item
;
6359 for (i
= 0; i
< todo_list
->nr
; i
++) {
6360 enum todo_command command
= todo_list
->items
[i
].command
;
6364 * Initially, all commands are 'pick's. If it is a
6365 * fixup or a squash now, we have rearranged it.
6367 if (is_fixup(command
))
6371 ALLOC_GROW(items
, nr
+ 1, alloc
);
6372 items
[nr
++] = todo_list
->items
[cur
];
6377 FREE_AND_NULL(todo_list
->items
);
6378 todo_list
->items
= items
;
6380 todo_list
->alloc
= alloc
;
6385 for (i
= 0; i
< todo_list
->nr
; i
++)
6388 hashmap_clear_and_free(&subject2item
, struct subject2item_entry
, entry
);
6390 clear_commit_todo_item(&commit_todo
);
6395 int sequencer_determine_whence(struct repository
*r
, enum commit_whence
*whence
)
6397 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
6398 struct object_id cherry_pick_head
, rebase_head
;
6400 if (file_exists(git_path_seq_dir()))
6401 *whence
= FROM_CHERRY_PICK_MULTI
;
6402 if (file_exists(rebase_path()) &&
6403 !repo_get_oid(r
, "REBASE_HEAD", &rebase_head
) &&
6404 !repo_get_oid(r
, "CHERRY_PICK_HEAD", &cherry_pick_head
) &&
6405 oideq(&rebase_head
, &cherry_pick_head
))
6406 *whence
= FROM_REBASE_PICK
;
6408 *whence
= FROM_CHERRY_PICK_SINGLE
;
6416 int sequencer_get_update_refs_state(const char *wt_dir
,
6417 struct string_list
*refs
)
6421 struct strbuf ref
= STRBUF_INIT
;
6422 struct strbuf hash
= STRBUF_INIT
;
6423 struct update_ref_record
*rec
= NULL
;
6425 char *path
= rebase_path_update_refs(wt_dir
);
6427 fp
= fopen(path
, "r");
6431 while (strbuf_getline(&ref
, fp
) != EOF
) {
6432 struct string_list_item
*item
;
6434 CALLOC_ARRAY(rec
, 1);
6436 if (strbuf_getline(&hash
, fp
) == EOF
||
6437 get_oid_hex(hash
.buf
, &rec
->before
)) {
6438 warning(_("update-refs file at '%s' is invalid"),
6444 if (strbuf_getline(&hash
, fp
) == EOF
||
6445 get_oid_hex(hash
.buf
, &rec
->after
)) {
6446 warning(_("update-refs file at '%s' is invalid"),
6452 item
= string_list_insert(refs
, ref
.buf
);
6462 strbuf_release(&ref
);
6463 strbuf_release(&hash
);