5 #include "environment.h"
10 #include "object-store.h"
13 #include "sequencer.h"
15 #include "run-command.h"
19 #include "cache-tree.h"
23 #include "merge-ort.h"
24 #include "merge-ort-wrappers.h"
30 #include "wt-status.h"
32 #include "notes-utils.h"
34 #include "unpack-trees.h"
38 #include "commit-slab.h"
40 #include "commit-reach.h"
41 #include "rebase-interactive.h"
46 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
48 static const char sign_off_header
[] = "Signed-off-by: ";
49 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
51 GIT_PATH_FUNC(git_path_commit_editmsg
, "COMMIT_EDITMSG")
53 static GIT_PATH_FUNC(git_path_seq_dir
, "sequencer")
55 static GIT_PATH_FUNC(git_path_todo_file
, "sequencer/todo")
56 static GIT_PATH_FUNC(git_path_opts_file
, "sequencer/opts")
57 static GIT_PATH_FUNC(git_path_head_file
, "sequencer/head")
58 static GIT_PATH_FUNC(git_path_abort_safety_file
, "sequencer/abort-safety")
60 static GIT_PATH_FUNC(rebase_path
, "rebase-merge")
62 * The file containing rebase commands, comments, and empty lines.
63 * This file is created by "git rebase -i" then edited by the user. As
64 * the lines are processed, they are removed from the front of this
65 * file and written to the tail of 'done'.
67 GIT_PATH_FUNC(rebase_path_todo
, "rebase-merge/git-rebase-todo")
68 GIT_PATH_FUNC(rebase_path_todo_backup
, "rebase-merge/git-rebase-todo.backup")
70 GIT_PATH_FUNC(rebase_path_dropped
, "rebase-merge/dropped")
73 * The rebase command lines that have already been processed. A line
74 * is moved here when it is first handled, before any associated user
77 static GIT_PATH_FUNC(rebase_path_done
, "rebase-merge/done")
79 * The file to keep track of how many commands were already processed (e.g.
82 static GIT_PATH_FUNC(rebase_path_msgnum
, "rebase-merge/msgnum")
84 * The file to keep track of how many commands are to be processed in total
85 * (e.g. for the prompt).
87 static GIT_PATH_FUNC(rebase_path_msgtotal
, "rebase-merge/end")
89 * The commit message that is planned to be used for any changes that
90 * need to be committed following a user interaction.
92 static GIT_PATH_FUNC(rebase_path_message
, "rebase-merge/message")
94 * The file into which is accumulated the suggested commit message for
95 * squash/fixup commands. When the first of a series of squash/fixups
96 * is seen, the file is created and the commit message from the
97 * previous commit and from the first squash/fixup commit are written
98 * to it. The commit message for each subsequent squash/fixup commit
99 * is appended to the file as it is processed.
101 static GIT_PATH_FUNC(rebase_path_squash_msg
, "rebase-merge/message-squash")
103 * If the current series of squash/fixups has not yet included a squash
104 * command, then this file exists and holds the commit message of the
105 * original "pick" commit. (If the series ends without a "squash"
106 * command, then this can be used as the commit message of the combined
107 * commit without opening the editor.)
109 static GIT_PATH_FUNC(rebase_path_fixup_msg
, "rebase-merge/message-fixup")
111 * This file contains the list fixup/squash commands that have been
112 * accumulated into message-fixup or message-squash so far.
114 static GIT_PATH_FUNC(rebase_path_current_fixups
, "rebase-merge/current-fixups")
116 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
117 * GIT_AUTHOR_DATE that will be used for the commit that is currently
120 static GIT_PATH_FUNC(rebase_path_author_script
, "rebase-merge/author-script")
122 * When an "edit" rebase command is being processed, the SHA1 of the
123 * commit to be edited is recorded in this file. When "git rebase
124 * --continue" is executed, if there are any staged changes then they
125 * will be amended to the HEAD commit, but only provided the HEAD
126 * commit is still the commit to be edited. When any other rebase
127 * command is processed, this file is deleted.
129 static GIT_PATH_FUNC(rebase_path_amend
, "rebase-merge/amend")
131 * When we stop at a given patch via the "edit" command, this file contains
132 * the commit object name of the corresponding patch.
134 static GIT_PATH_FUNC(rebase_path_stopped_sha
, "rebase-merge/stopped-sha")
136 * For the post-rewrite hook, we make a list of rewritten commits and
137 * their new sha1s. The rewritten-pending list keeps the sha1s of
138 * commits that have been processed, but not committed yet,
139 * e.g. because they are waiting for a 'squash' command.
141 static GIT_PATH_FUNC(rebase_path_rewritten_list
, "rebase-merge/rewritten-list")
142 static GIT_PATH_FUNC(rebase_path_rewritten_pending
,
143 "rebase-merge/rewritten-pending")
146 * The path of the file containing the OID of the "squash onto" commit, i.e.
147 * the dummy commit used for `reset [new root]`.
149 static GIT_PATH_FUNC(rebase_path_squash_onto
, "rebase-merge/squash-onto")
152 * The path of the file listing refs that need to be deleted after the rebase
153 * finishes. This is used by the `label` command to record the need for cleanup.
155 static GIT_PATH_FUNC(rebase_path_refs_to_delete
, "rebase-merge/refs-to-delete")
158 * The update-refs file stores a list of refs that will be updated at the end
159 * of the rebase sequence. The 'update-ref <ref>' commands in the todo file
160 * update the OIDs for the refs in this file, but the refs are not updated
161 * until the end of the rebase sequence.
163 * rebase_path_update_refs() returns the path to this file for a given
164 * worktree directory. For the current worktree, pass the_repository->gitdir.
166 static char *rebase_path_update_refs(const char *wt_git_dir
)
168 return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir
);
172 * The following files are written by git-rebase just after parsing the
175 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt
, "rebase-merge/gpg_sign_opt")
176 static GIT_PATH_FUNC(rebase_path_cdate_is_adate
, "rebase-merge/cdate_is_adate")
177 static GIT_PATH_FUNC(rebase_path_ignore_date
, "rebase-merge/ignore_date")
178 static GIT_PATH_FUNC(rebase_path_orig_head
, "rebase-merge/orig-head")
179 static GIT_PATH_FUNC(rebase_path_verbose
, "rebase-merge/verbose")
180 static GIT_PATH_FUNC(rebase_path_quiet
, "rebase-merge/quiet")
181 static GIT_PATH_FUNC(rebase_path_signoff
, "rebase-merge/signoff")
182 static GIT_PATH_FUNC(rebase_path_head_name
, "rebase-merge/head-name")
183 static GIT_PATH_FUNC(rebase_path_onto
, "rebase-merge/onto")
184 static GIT_PATH_FUNC(rebase_path_autostash
, "rebase-merge/autostash")
185 static GIT_PATH_FUNC(rebase_path_strategy
, "rebase-merge/strategy")
186 static GIT_PATH_FUNC(rebase_path_strategy_opts
, "rebase-merge/strategy_opts")
187 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate
, "rebase-merge/allow_rerere_autoupdate")
188 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec
, "rebase-merge/reschedule-failed-exec")
189 static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec
, "rebase-merge/no-reschedule-failed-exec")
190 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits
, "rebase-merge/drop_redundant_commits")
191 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits
, "rebase-merge/keep_redundant_commits")
194 * A 'struct update_refs_record' represents a value in the update-refs
195 * list. We use a string_list to map refs to these (before, after) pairs.
197 struct update_ref_record
{
198 struct object_id before
;
199 struct object_id after
;
202 static struct update_ref_record
*init_update_ref_record(const char *ref
)
204 struct update_ref_record
*rec
;
206 CALLOC_ARRAY(rec
, 1);
208 oidcpy(&rec
->before
, null_oid());
209 oidcpy(&rec
->after
, null_oid());
211 /* This may fail, but that's fine, we will keep the null OID. */
212 read_ref(ref
, &rec
->before
);
217 static int git_sequencer_config(const char *k
, const char *v
, void *cb
)
219 struct replay_opts
*opts
= cb
;
222 if (!strcmp(k
, "commit.cleanup")) {
225 status
= git_config_string(&s
, k
, v
);
229 if (!strcmp(s
, "verbatim")) {
230 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
231 opts
->explicit_cleanup
= 1;
232 } else if (!strcmp(s
, "whitespace")) {
233 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
234 opts
->explicit_cleanup
= 1;
235 } else if (!strcmp(s
, "strip")) {
236 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_ALL
;
237 opts
->explicit_cleanup
= 1;
238 } else if (!strcmp(s
, "scissors")) {
239 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_SCISSORS
;
240 opts
->explicit_cleanup
= 1;
242 warning(_("invalid commit message cleanup mode '%s'"),
250 if (!strcmp(k
, "commit.gpgsign")) {
251 opts
->gpg_sign
= git_config_bool(k
, v
) ? xstrdup("") : NULL
;
255 if (!opts
->default_strategy
&& !strcmp(k
, "pull.twohead")) {
256 int ret
= git_config_string((const char**)&opts
->default_strategy
, k
, v
);
259 * pull.twohead is allowed to be multi-valued; we only
260 * care about the first value.
262 char *tmp
= strchr(opts
->default_strategy
, ' ');
269 if (opts
->action
== REPLAY_REVERT
&& !strcmp(k
, "revert.reference"))
270 opts
->commit_use_reference
= git_config_bool(k
, v
);
272 return git_diff_basic_config(k
, v
, NULL
);
275 void sequencer_init_config(struct replay_opts
*opts
)
277 opts
->default_msg_cleanup
= COMMIT_MSG_CLEANUP_NONE
;
278 git_config(git_sequencer_config
, opts
);
281 static inline int is_rebase_i(const struct replay_opts
*opts
)
283 return opts
->action
== REPLAY_INTERACTIVE_REBASE
;
286 static const char *get_dir(const struct replay_opts
*opts
)
288 if (is_rebase_i(opts
))
289 return rebase_path();
290 return git_path_seq_dir();
293 static const char *get_todo_path(const struct replay_opts
*opts
)
295 if (is_rebase_i(opts
))
296 return rebase_path_todo();
297 return git_path_todo_file();
301 * Returns 0 for non-conforming footer
302 * Returns 1 for conforming footer
303 * Returns 2 when sob exists within conforming footer
304 * Returns 3 when sob exists within conforming footer as last entry
306 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
307 size_t ignore_footer
)
309 struct process_trailer_options opts
= PROCESS_TRAILER_OPTIONS_INIT
;
310 struct trailer_info info
;
312 int found_sob
= 0, found_sob_last
= 0;
318 saved_char
= sb
->buf
[sb
->len
- ignore_footer
];
319 sb
->buf
[sb
->len
- ignore_footer
] = '\0';
322 trailer_info_get(&info
, sb
->buf
, &opts
);
325 sb
->buf
[sb
->len
- ignore_footer
] = saved_char
;
327 if (info
.trailer_start
== info
.trailer_end
)
330 for (i
= 0; i
< info
.trailer_nr
; i
++)
331 if (sob
&& !strncmp(info
.trailers
[i
], sob
->buf
, sob
->len
)) {
333 if (i
== info
.trailer_nr
- 1)
337 trailer_info_release(&info
);
346 static const char *gpg_sign_opt_quoted(struct replay_opts
*opts
)
348 static struct strbuf buf
= STRBUF_INIT
;
352 sq_quotef(&buf
, "-S%s", opts
->gpg_sign
);
356 void replay_opts_release(struct replay_opts
*opts
)
358 free(opts
->gpg_sign
);
359 free(opts
->reflog_action
);
360 free(opts
->default_strategy
);
361 free(opts
->strategy
);
362 for (size_t i
= 0; i
< opts
->xopts_nr
; i
++)
363 free(opts
->xopts
[i
]);
365 strbuf_release(&opts
->current_fixups
);
367 release_revisions(opts
->revs
);
371 int sequencer_remove_state(struct replay_opts
*opts
)
373 struct strbuf buf
= STRBUF_INIT
;
376 if (is_rebase_i(opts
) &&
377 strbuf_read_file(&buf
, rebase_path_refs_to_delete(), 0) > 0) {
380 char *eol
= strchr(p
, '\n');
383 if (delete_ref("(rebase) cleanup", p
, NULL
, 0) < 0) {
384 warning(_("could not delete '%s'"), p
);
394 strbuf_addstr(&buf
, get_dir(opts
));
395 if (remove_dir_recursively(&buf
, 0))
396 ret
= error(_("could not remove '%s'"), buf
.buf
);
397 strbuf_release(&buf
);
402 static const char *action_name(const struct replay_opts
*opts
)
404 switch (opts
->action
) {
408 return N_("cherry-pick");
409 case REPLAY_INTERACTIVE_REBASE
:
412 die(_("unknown action: %d"), opts
->action
);
415 struct commit_message
{
422 static const char *short_commit_name(struct commit
*commit
)
424 return find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
);
427 static int get_message(struct commit
*commit
, struct commit_message
*out
)
429 const char *abbrev
, *subject
;
432 out
->message
= logmsg_reencode(commit
, NULL
, get_commit_output_encoding());
433 abbrev
= short_commit_name(commit
);
435 subject_len
= find_commit_subject(out
->message
, &subject
);
437 out
->subject
= xmemdupz(subject
, subject_len
);
438 out
->label
= xstrfmt("%s (%s)", abbrev
, out
->subject
);
439 out
->parent_label
= xstrfmt("parent of %s", out
->label
);
444 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
446 free(msg
->parent_label
);
449 unuse_commit_buffer(commit
, msg
->message
);
452 static void print_advice(struct repository
*r
, int show_hint
,
453 struct replay_opts
*opts
)
455 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
460 * A conflict has occurred but the porcelain
461 * (typically rebase --interactive) wants to take care
462 * of the commit itself so remove CHERRY_PICK_HEAD
464 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
471 advise(_("after resolving the conflicts, mark the corrected paths\n"
472 "with 'git add <paths>' or 'git rm <paths>'"));
473 else if (opts
->action
== REPLAY_PICK
)
474 advise(_("After resolving the conflicts, mark them with\n"
475 "\"git add/rm <pathspec>\", then run\n"
476 "\"git cherry-pick --continue\".\n"
477 "You can instead skip this commit with \"git cherry-pick --skip\".\n"
478 "To abort and get back to the state before \"git cherry-pick\",\n"
479 "run \"git cherry-pick --abort\"."));
480 else if (opts
->action
== REPLAY_REVERT
)
481 advise(_("After resolving the conflicts, mark them with\n"
482 "\"git add/rm <pathspec>\", then run\n"
483 "\"git revert --continue\".\n"
484 "You can instead skip this commit with \"git revert --skip\".\n"
485 "To abort and get back to the state before \"git revert\",\n"
486 "run \"git revert --abort\"."));
488 BUG("unexpected pick action in print_advice()");
492 static int write_message(const void *buf
, size_t len
, const char *filename
,
495 struct lock_file msg_file
= LOCK_INIT
;
497 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
, 0);
499 return error_errno(_("could not lock '%s'"), filename
);
500 if (write_in_full(msg_fd
, buf
, len
) < 0) {
501 error_errno(_("could not write to '%s'"), filename
);
502 rollback_lock_file(&msg_file
);
505 if (append_eol
&& write(msg_fd
, "\n", 1) < 0) {
506 error_errno(_("could not write eol to '%s'"), filename
);
507 rollback_lock_file(&msg_file
);
510 if (commit_lock_file(&msg_file
) < 0)
511 return error(_("failed to finalize '%s'"), filename
);
516 int read_oneliner(struct strbuf
*buf
,
517 const char *path
, unsigned flags
)
519 int orig_len
= buf
->len
;
521 if (strbuf_read_file(buf
, path
, 0) < 0) {
522 if ((flags
& READ_ONELINER_WARN_MISSING
) ||
523 (errno
!= ENOENT
&& errno
!= ENOTDIR
))
524 warning_errno(_("could not read '%s'"), path
);
528 if (buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\n') {
529 if (--buf
->len
> orig_len
&& buf
->buf
[buf
->len
- 1] == '\r')
531 buf
->buf
[buf
->len
] = '\0';
534 if ((flags
& READ_ONELINER_SKIP_IF_EMPTY
) && buf
->len
== orig_len
)
540 static struct tree
*empty_tree(struct repository
*r
)
542 return lookup_tree(r
, the_hash_algo
->empty_tree
);
545 static int error_dirty_index(struct repository
*repo
, struct replay_opts
*opts
)
547 if (repo_read_index_unmerged(repo
))
548 return error_resolve_conflict(action_name(opts
));
550 error(_("your local changes would be overwritten by %s."),
551 _(action_name(opts
)));
553 if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE
))
554 advise(_("commit your changes or stash them to proceed."));
558 static void update_abort_safety_file(void)
560 struct object_id head
;
562 /* Do nothing on a single-pick */
563 if (!file_exists(git_path_seq_dir()))
566 if (!get_oid("HEAD", &head
))
567 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head
));
569 write_file(git_path_abort_safety_file(), "%s", "");
572 static int fast_forward_to(struct repository
*r
,
573 const struct object_id
*to
,
574 const struct object_id
*from
,
576 struct replay_opts
*opts
)
578 struct ref_transaction
*transaction
;
579 struct strbuf sb
= STRBUF_INIT
;
580 struct strbuf err
= STRBUF_INIT
;
583 if (checkout_fast_forward(r
, from
, to
, 1))
584 return -1; /* the callee should have complained already */
586 strbuf_addf(&sb
, "%s: fast-forward", action_name(opts
));
588 transaction
= ref_transaction_begin(&err
);
590 ref_transaction_update(transaction
, "HEAD",
591 to
, unborn
&& !is_rebase_i(opts
) ?
594 ref_transaction_commit(transaction
, &err
)) {
595 ref_transaction_free(transaction
);
596 error("%s", err
.buf
);
598 strbuf_release(&err
);
603 strbuf_release(&err
);
604 ref_transaction_free(transaction
);
605 update_abort_safety_file();
609 enum commit_msg_cleanup_mode
get_cleanup_mode(const char *cleanup_arg
,
612 if (!cleanup_arg
|| !strcmp(cleanup_arg
, "default"))
613 return use_editor
? COMMIT_MSG_CLEANUP_ALL
:
614 COMMIT_MSG_CLEANUP_SPACE
;
615 else if (!strcmp(cleanup_arg
, "verbatim"))
616 return COMMIT_MSG_CLEANUP_NONE
;
617 else if (!strcmp(cleanup_arg
, "whitespace"))
618 return COMMIT_MSG_CLEANUP_SPACE
;
619 else if (!strcmp(cleanup_arg
, "strip"))
620 return COMMIT_MSG_CLEANUP_ALL
;
621 else if (!strcmp(cleanup_arg
, "scissors"))
622 return use_editor
? COMMIT_MSG_CLEANUP_SCISSORS
:
623 COMMIT_MSG_CLEANUP_SPACE
;
625 die(_("Invalid cleanup mode %s"), cleanup_arg
);
629 * NB using int rather than enum cleanup_mode to stop clang's
630 * -Wtautological-constant-out-of-range-compare complaining that the comparison
633 static const char *describe_cleanup_mode(int cleanup_mode
)
635 static const char *modes
[] = { "whitespace",
640 if (cleanup_mode
< ARRAY_SIZE(modes
))
641 return modes
[cleanup_mode
];
643 BUG("invalid cleanup_mode provided (%d)", cleanup_mode
);
646 void append_conflicts_hint(struct index_state
*istate
,
647 struct strbuf
*msgbuf
, enum commit_msg_cleanup_mode cleanup_mode
)
651 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
652 strbuf_addch(msgbuf
, '\n');
653 wt_status_append_cut_line(msgbuf
);
654 strbuf_addch(msgbuf
, comment_line_char
);
657 strbuf_addch(msgbuf
, '\n');
658 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
659 for (i
= 0; i
< istate
->cache_nr
;) {
660 const struct cache_entry
*ce
= istate
->cache
[i
++];
662 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
663 while (i
< istate
->cache_nr
&&
664 !strcmp(ce
->name
, istate
->cache
[i
]->name
))
670 static int do_recursive_merge(struct repository
*r
,
671 struct commit
*base
, struct commit
*next
,
672 const char *base_label
, const char *next_label
,
673 struct object_id
*head
, struct strbuf
*msgbuf
,
674 struct replay_opts
*opts
)
676 struct merge_options o
;
677 struct merge_result result
;
678 struct tree
*next_tree
, *base_tree
, *head_tree
;
679 int clean
, show_output
;
681 struct lock_file index_lock
= LOCK_INIT
;
683 if (repo_hold_locked_index(r
, &index_lock
, LOCK_REPORT_ON_ERROR
) < 0)
688 init_merge_options(&o
, r
);
689 o
.ancestor
= base
? base_label
: "(empty tree)";
691 o
.branch2
= next
? next_label
: "(empty tree)";
692 if (is_rebase_i(opts
))
694 o
.show_rename_progress
= 1;
696 head_tree
= parse_tree_indirect(head
);
697 next_tree
= next
? get_commit_tree(next
) : empty_tree(r
);
698 base_tree
= base
? get_commit_tree(base
) : empty_tree(r
);
700 for (i
= 0; i
< opts
->xopts_nr
; i
++)
701 parse_merge_opt(&o
, opts
->xopts
[i
]);
703 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "ort")) {
704 memset(&result
, 0, sizeof(result
));
705 merge_incore_nonrecursive(&o
, base_tree
, head_tree
, next_tree
,
707 show_output
= !is_rebase_i(opts
) || !result
.clean
;
709 * TODO: merge_switch_to_result will update index/working tree;
710 * we only really want to do that if !result.clean || this is
711 * the final patch to be picked. But determining this is the
712 * final patch would take some work, and "head_tree" would need
713 * to be replace with the tree the index matched before we
714 * started doing any picks.
716 merge_switch_to_result(&o
, head_tree
, &result
, 1, show_output
);
717 clean
= result
.clean
;
719 ensure_full_index(r
->index
);
720 clean
= merge_trees(&o
, head_tree
, next_tree
, base_tree
);
721 if (is_rebase_i(opts
) && clean
<= 0)
722 fputs(o
.obuf
.buf
, stdout
);
723 strbuf_release(&o
.obuf
);
726 rollback_lock_file(&index_lock
);
730 if (write_locked_index(r
->index
, &index_lock
,
731 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
733 * TRANSLATORS: %s will be "revert", "cherry-pick" or
736 return error(_("%s: Unable to write new index file"),
737 _(action_name(opts
)));
740 append_conflicts_hint(r
->index
, msgbuf
,
741 opts
->default_msg_cleanup
);
746 static struct object_id
*get_cache_tree_oid(struct index_state
*istate
)
748 if (!cache_tree_fully_valid(istate
->cache_tree
))
749 if (cache_tree_update(istate
, 0)) {
750 error(_("unable to update cache tree"));
754 return &istate
->cache_tree
->oid
;
757 static int is_index_unchanged(struct repository
*r
)
759 struct object_id head_oid
, *cache_tree_oid
;
760 struct commit
*head_commit
;
761 struct index_state
*istate
= r
->index
;
763 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
764 return error(_("could not resolve HEAD commit"));
766 head_commit
= lookup_commit(r
, &head_oid
);
769 * If head_commit is NULL, check_commit, called from
770 * lookup_commit, would have indicated that head_commit is not
771 * a commit object already. parse_commit() will return failure
772 * without further complaints in such a case. Otherwise, if
773 * the commit is invalid, parse_commit() will complain. So
774 * there is nothing for us to say here. Just return failure.
776 if (parse_commit(head_commit
))
779 if (!(cache_tree_oid
= get_cache_tree_oid(istate
)))
782 return oideq(cache_tree_oid
, get_commit_tree_oid(head_commit
));
785 static int write_author_script(const char *message
)
787 struct strbuf buf
= STRBUF_INIT
;
792 if (!*message
|| starts_with(message
, "\n")) {
794 /* Missing 'author' line? */
795 unlink(rebase_path_author_script());
797 } else if (skip_prefix(message
, "author ", &message
))
799 else if ((eol
= strchr(message
, '\n')))
804 strbuf_addstr(&buf
, "GIT_AUTHOR_NAME='");
805 while (*message
&& *message
!= '\n' && *message
!= '\r')
806 if (skip_prefix(message
, " <", &message
))
808 else if (*message
!= '\'')
809 strbuf_addch(&buf
, *(message
++));
811 strbuf_addf(&buf
, "'\\%c'", *(message
++));
812 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_EMAIL='");
813 while (*message
&& *message
!= '\n' && *message
!= '\r')
814 if (skip_prefix(message
, "> ", &message
))
816 else if (*message
!= '\'')
817 strbuf_addch(&buf
, *(message
++));
819 strbuf_addf(&buf
, "'\\%c'", *(message
++));
820 strbuf_addstr(&buf
, "'\nGIT_AUTHOR_DATE='@");
821 while (*message
&& *message
!= '\n' && *message
!= '\r')
822 if (*message
!= '\'')
823 strbuf_addch(&buf
, *(message
++));
825 strbuf_addf(&buf
, "'\\%c'", *(message
++));
826 strbuf_addch(&buf
, '\'');
827 res
= write_message(buf
.buf
, buf
.len
, rebase_path_author_script(), 1);
828 strbuf_release(&buf
);
833 * Take a series of KEY='VALUE' lines where VALUE part is
834 * sq-quoted, and append <KEY, VALUE> at the end of the string list
836 static int parse_key_value_squoted(char *buf
, struct string_list
*list
)
839 struct string_list_item
*item
;
841 char *cp
= strchr(buf
, '=');
843 np
= strchrnul(buf
, '\n');
844 return error(_("no key present in '%.*s'"),
845 (int) (np
- buf
), buf
);
847 np
= strchrnul(cp
, '\n');
849 item
= string_list_append(list
, buf
);
851 buf
= np
+ (*np
== '\n');
855 return error(_("unable to dequote value of '%s'"),
857 item
->util
= xstrdup(cp
);
863 * Reads and parses the state directory's "author-script" file, and sets name,
864 * email and date accordingly.
865 * Returns 0 on success, -1 if the file could not be parsed.
867 * The author script is of the format:
869 * GIT_AUTHOR_NAME='$author_name'
870 * GIT_AUTHOR_EMAIL='$author_email'
871 * GIT_AUTHOR_DATE='$author_date'
873 * where $author_name, $author_email and $author_date are quoted. We are strict
874 * with our parsing, as the file was meant to be eval'd in the now-removed
875 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
876 * from what this function expects, it is better to bail out than to do
877 * something that the user does not expect.
879 int read_author_script(const char *path
, char **name
, char **email
, char **date
,
882 struct strbuf buf
= STRBUF_INIT
;
883 struct string_list kv
= STRING_LIST_INIT_DUP
;
884 int retval
= -1; /* assume failure */
885 int i
, name_i
= -2, email_i
= -2, date_i
= -2, err
= 0;
887 if (strbuf_read_file(&buf
, path
, 256) <= 0) {
888 strbuf_release(&buf
);
889 if (errno
== ENOENT
&& allow_missing
)
892 return error_errno(_("could not open '%s' for reading"),
896 if (parse_key_value_squoted(buf
.buf
, &kv
))
899 for (i
= 0; i
< kv
.nr
; i
++) {
900 if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_NAME")) {
902 name_i
= error(_("'GIT_AUTHOR_NAME' already given"));
905 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_EMAIL")) {
907 email_i
= error(_("'GIT_AUTHOR_EMAIL' already given"));
910 } else if (!strcmp(kv
.items
[i
].string
, "GIT_AUTHOR_DATE")) {
912 date_i
= error(_("'GIT_AUTHOR_DATE' already given"));
916 err
= error(_("unknown variable '%s'"),
921 error(_("missing 'GIT_AUTHOR_NAME'"));
923 error(_("missing 'GIT_AUTHOR_EMAIL'"));
925 error(_("missing 'GIT_AUTHOR_DATE'"));
926 if (name_i
< 0 || email_i
< 0 || date_i
< 0 || err
)
928 *name
= kv
.items
[name_i
].util
;
929 *email
= kv
.items
[email_i
].util
;
930 *date
= kv
.items
[date_i
].util
;
933 string_list_clear(&kv
, !!retval
);
934 strbuf_release(&buf
);
939 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
940 * file with shell quoting into struct strvec. Returns -1 on
941 * error, 0 otherwise.
943 static int read_env_script(struct strvec
*env
)
945 char *name
, *email
, *date
;
947 if (read_author_script(rebase_path_author_script(),
948 &name
, &email
, &date
, 0))
951 strvec_pushf(env
, "GIT_AUTHOR_NAME=%s", name
);
952 strvec_pushf(env
, "GIT_AUTHOR_EMAIL=%s", email
);
953 strvec_pushf(env
, "GIT_AUTHOR_DATE=%s", date
);
961 static char *get_author(const char *message
)
966 a
= find_commit_header(message
, "author", &len
);
968 return xmemdupz(a
, len
);
973 static const char *author_date_from_env(const struct strvec
*env
)
978 for (i
= 0; i
< env
->nr
; i
++)
979 if (skip_prefix(env
->v
[i
],
980 "GIT_AUTHOR_DATE=", &date
))
983 * If GIT_AUTHOR_DATE is missing we should have already errored out when
986 BUG("GIT_AUTHOR_DATE missing from author script");
989 static const char staged_changes_advice
[] =
990 N_("you have staged changes in your working tree\n"
991 "If these changes are meant to be squashed into the previous commit, run:\n"
993 " git commit --amend %s\n"
995 "If they are meant to go into a new commit, run:\n"
999 "In both cases, once you're done, continue with:\n"
1001 " git rebase --continue\n");
1003 #define ALLOW_EMPTY (1<<0)
1004 #define EDIT_MSG (1<<1)
1005 #define AMEND_MSG (1<<2)
1006 #define CLEANUP_MSG (1<<3)
1007 #define VERIFY_MSG (1<<4)
1008 #define CREATE_ROOT_COMMIT (1<<5)
1009 #define VERBATIM_MSG (1<<6)
1011 static int run_command_silent_on_success(struct child_process
*cmd
)
1013 struct strbuf buf
= STRBUF_INIT
;
1016 cmd
->stdout_to_stderr
= 1;
1017 rc
= pipe_command(cmd
,
1023 fputs(buf
.buf
, stderr
);
1024 strbuf_release(&buf
);
1029 * If we are cherry-pick, and if the merge did not result in
1030 * hand-editing, we will hit this commit and inherit the original
1031 * author date and name.
1033 * If we are revert, or if our cherry-pick results in a hand merge,
1034 * we had better say that the current user is responsible for that.
1036 * An exception is when run_git_commit() is called during an
1037 * interactive rebase: in that case, we will want to retain the
1040 static int run_git_commit(const char *defmsg
,
1041 struct replay_opts
*opts
,
1044 struct child_process cmd
= CHILD_PROCESS_INIT
;
1046 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1047 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1051 if (is_rebase_i(opts
) &&
1052 ((opts
->committer_date_is_author_date
&& !opts
->ignore_date
) ||
1053 !(!defmsg
&& (flags
& AMEND_MSG
))) &&
1054 read_env_script(&cmd
.env
)) {
1055 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
1057 return error(_(staged_changes_advice
),
1061 strvec_pushf(&cmd
.env
, GIT_REFLOG_ACTION
"=%s", opts
->reflog_message
);
1063 if (opts
->committer_date_is_author_date
)
1064 strvec_pushf(&cmd
.env
, "GIT_COMMITTER_DATE=%s",
1067 author_date_from_env(&cmd
.env
));
1068 if (opts
->ignore_date
)
1069 strvec_push(&cmd
.env
, "GIT_AUTHOR_DATE=");
1071 strvec_push(&cmd
.args
, "commit");
1073 if (!(flags
& VERIFY_MSG
))
1074 strvec_push(&cmd
.args
, "-n");
1075 if ((flags
& AMEND_MSG
))
1076 strvec_push(&cmd
.args
, "--amend");
1078 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
1080 strvec_push(&cmd
.args
, "--no-gpg-sign");
1082 strvec_pushl(&cmd
.args
, "-F", defmsg
, NULL
);
1083 else if (!(flags
& EDIT_MSG
))
1084 strvec_pushl(&cmd
.args
, "-C", "HEAD", NULL
);
1085 if ((flags
& CLEANUP_MSG
))
1086 strvec_push(&cmd
.args
, "--cleanup=strip");
1087 if ((flags
& VERBATIM_MSG
))
1088 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1089 if ((flags
& EDIT_MSG
))
1090 strvec_push(&cmd
.args
, "-e");
1091 else if (!(flags
& CLEANUP_MSG
) &&
1092 !opts
->signoff
&& !opts
->record_origin
&&
1093 !opts
->explicit_cleanup
)
1094 strvec_push(&cmd
.args
, "--cleanup=verbatim");
1096 if ((flags
& ALLOW_EMPTY
))
1097 strvec_push(&cmd
.args
, "--allow-empty");
1099 if (!(flags
& EDIT_MSG
))
1100 strvec_push(&cmd
.args
, "--allow-empty-message");
1102 if (is_rebase_i(opts
) && !(flags
& EDIT_MSG
))
1103 return run_command_silent_on_success(&cmd
);
1105 return run_command(&cmd
);
1108 static int rest_is_empty(const struct strbuf
*sb
, int start
)
1113 /* Check if the rest is just whitespace and Signed-off-by's. */
1114 for (i
= start
; i
< sb
->len
; i
++) {
1115 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
1121 if (strlen(sign_off_header
) <= eol
- i
&&
1122 starts_with(sb
->buf
+ i
, sign_off_header
)) {
1127 if (!isspace(sb
->buf
[i
++]))
1134 void cleanup_message(struct strbuf
*msgbuf
,
1135 enum commit_msg_cleanup_mode cleanup_mode
, int verbose
)
1137 if (verbose
|| /* Truncate the message just before the diff, if any. */
1138 cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
)
1139 strbuf_setlen(msgbuf
, wt_status_locate_end(msgbuf
->buf
, msgbuf
->len
));
1140 if (cleanup_mode
!= COMMIT_MSG_CLEANUP_NONE
)
1141 strbuf_stripspace(msgbuf
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1145 * Find out if the message in the strbuf contains only whitespace and
1146 * Signed-off-by lines.
1148 int message_is_empty(const struct strbuf
*sb
,
1149 enum commit_msg_cleanup_mode cleanup_mode
)
1151 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1153 return rest_is_empty(sb
, 0);
1157 * See if the user edited the message in the editor or left what
1158 * was in the template intact
1160 int template_untouched(const struct strbuf
*sb
, const char *template_file
,
1161 enum commit_msg_cleanup_mode cleanup_mode
)
1163 struct strbuf tmpl
= STRBUF_INIT
;
1166 if (cleanup_mode
== COMMIT_MSG_CLEANUP_NONE
&& sb
->len
)
1169 if (!template_file
|| strbuf_read_file(&tmpl
, template_file
, 0) <= 0)
1172 strbuf_stripspace(&tmpl
, cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
);
1173 if (!skip_prefix(sb
->buf
, tmpl
.buf
, &start
))
1175 strbuf_release(&tmpl
);
1176 return rest_is_empty(sb
, start
- sb
->buf
);
1179 int update_head_with_reflog(const struct commit
*old_head
,
1180 const struct object_id
*new_head
,
1181 const char *action
, const struct strbuf
*msg
,
1184 struct ref_transaction
*transaction
;
1185 struct strbuf sb
= STRBUF_INIT
;
1190 strbuf_addstr(&sb
, action
);
1191 strbuf_addstr(&sb
, ": ");
1194 nl
= strchr(msg
->buf
, '\n');
1196 strbuf_add(&sb
, msg
->buf
, nl
+ 1 - msg
->buf
);
1198 strbuf_addbuf(&sb
, msg
);
1199 strbuf_addch(&sb
, '\n');
1202 transaction
= ref_transaction_begin(err
);
1204 ref_transaction_update(transaction
, "HEAD", new_head
,
1205 old_head
? &old_head
->object
.oid
: null_oid(),
1207 ref_transaction_commit(transaction
, err
)) {
1210 ref_transaction_free(transaction
);
1211 strbuf_release(&sb
);
1216 static int run_rewrite_hook(const struct object_id
*oldoid
,
1217 const struct object_id
*newoid
)
1219 struct child_process proc
= CHILD_PROCESS_INIT
;
1221 struct strbuf sb
= STRBUF_INIT
;
1222 const char *hook_path
= find_hook("post-rewrite");
1227 strvec_pushl(&proc
.args
, hook_path
, "amend", NULL
);
1229 proc
.stdout_to_stderr
= 1;
1230 proc
.trace2_hook_name
= "post-rewrite";
1232 code
= start_command(&proc
);
1235 strbuf_addf(&sb
, "%s %s\n", oid_to_hex(oldoid
), oid_to_hex(newoid
));
1236 sigchain_push(SIGPIPE
, SIG_IGN
);
1237 write_in_full(proc
.in
, sb
.buf
, sb
.len
);
1239 strbuf_release(&sb
);
1240 sigchain_pop(SIGPIPE
);
1241 return finish_command(&proc
);
1244 void commit_post_rewrite(struct repository
*r
,
1245 const struct commit
*old_head
,
1246 const struct object_id
*new_head
)
1248 struct notes_rewrite_cfg
*cfg
;
1250 cfg
= init_copy_notes_for_rewrite("amend");
1252 /* we are amending, so old_head is not NULL */
1253 copy_note_for_rewrite(cfg
, &old_head
->object
.oid
, new_head
);
1254 finish_copy_notes_for_rewrite(r
, cfg
, "Notes added by 'git commit --amend'");
1256 run_rewrite_hook(&old_head
->object
.oid
, new_head
);
1259 static int run_prepare_commit_msg_hook(struct repository
*r
,
1264 const char *name
, *arg1
= NULL
, *arg2
= NULL
;
1266 name
= git_path_commit_editmsg();
1267 if (write_message(msg
->buf
, msg
->len
, name
, 0))
1276 if (run_commit_hook(0, r
->index_file
, NULL
, "prepare-commit-msg", name
,
1278 ret
= error(_("'prepare-commit-msg' hook failed"));
1283 static const char implicit_ident_advice_noconfig
[] =
1284 N_("Your name and email address were configured automatically based\n"
1285 "on your username and hostname. Please check that they are accurate.\n"
1286 "You can suppress this message by setting them explicitly. Run the\n"
1287 "following command and follow the instructions in your editor to edit\n"
1288 "your configuration file:\n"
1290 " git config --global --edit\n"
1292 "After doing this, you may fix the identity used for this commit with:\n"
1294 " git commit --amend --reset-author\n");
1296 static const char implicit_ident_advice_config
[] =
1297 N_("Your name and email address were configured automatically based\n"
1298 "on your username and hostname. Please check that they are accurate.\n"
1299 "You can suppress this message by setting them explicitly:\n"
1301 " git config --global user.name \"Your Name\"\n"
1302 " git config --global user.email you@example.com\n"
1304 "After doing this, you may fix the identity used for this commit with:\n"
1306 " git commit --amend --reset-author\n");
1308 static const char *implicit_ident_advice(void)
1310 char *user_config
= interpolate_path("~/.gitconfig", 0);
1311 char *xdg_config
= xdg_config_home("config");
1312 int config_exists
= file_exists(user_config
) || file_exists(xdg_config
);
1318 return _(implicit_ident_advice_config
);
1320 return _(implicit_ident_advice_noconfig
);
1324 void print_commit_summary(struct repository
*r
,
1326 const struct object_id
*oid
,
1329 struct rev_info rev
;
1330 struct commit
*commit
;
1331 struct strbuf format
= STRBUF_INIT
;
1333 struct pretty_print_context pctx
= {0};
1334 struct strbuf author_ident
= STRBUF_INIT
;
1335 struct strbuf committer_ident
= STRBUF_INIT
;
1336 struct ref_store
*refs
;
1338 commit
= lookup_commit(r
, oid
);
1340 die(_("couldn't look up newly created commit"));
1341 if (parse_commit(commit
))
1342 die(_("could not parse newly created commit"));
1344 strbuf_addstr(&format
, "format:%h] %s");
1346 format_commit_message(commit
, "%an <%ae>", &author_ident
, &pctx
);
1347 format_commit_message(commit
, "%cn <%ce>", &committer_ident
, &pctx
);
1348 if (strbuf_cmp(&author_ident
, &committer_ident
)) {
1349 strbuf_addstr(&format
, "\n Author: ");
1350 strbuf_addbuf_percentquote(&format
, &author_ident
);
1352 if (flags
& SUMMARY_SHOW_AUTHOR_DATE
) {
1353 struct strbuf date
= STRBUF_INIT
;
1355 format_commit_message(commit
, "%ad", &date
, &pctx
);
1356 strbuf_addstr(&format
, "\n Date: ");
1357 strbuf_addbuf_percentquote(&format
, &date
);
1358 strbuf_release(&date
);
1360 if (!committer_ident_sufficiently_given()) {
1361 strbuf_addstr(&format
, "\n Committer: ");
1362 strbuf_addbuf_percentquote(&format
, &committer_ident
);
1363 if (advice_enabled(ADVICE_IMPLICIT_IDENTITY
)) {
1364 strbuf_addch(&format
, '\n');
1365 strbuf_addstr(&format
, implicit_ident_advice());
1368 strbuf_release(&author_ident
);
1369 strbuf_release(&committer_ident
);
1371 repo_init_revisions(r
, &rev
, prefix
);
1372 setup_revisions(0, NULL
, &rev
, NULL
);
1375 rev
.diffopt
.output_format
=
1376 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
1378 rev
.verbose_header
= 1;
1379 rev
.show_root_diff
= 1;
1380 get_commit_format(format
.buf
, &rev
);
1381 rev
.always_show_header
= 0;
1382 rev
.diffopt
.detect_rename
= DIFF_DETECT_RENAME
;
1383 diff_setup_done(&rev
.diffopt
);
1385 refs
= get_main_ref_store(the_repository
);
1386 head
= refs_resolve_ref_unsafe(refs
, "HEAD", 0, NULL
, NULL
);
1388 die(_("unable to resolve HEAD after creating commit"));
1389 if (!strcmp(head
, "HEAD"))
1390 head
= _("detached HEAD");
1392 skip_prefix(head
, "refs/heads/", &head
);
1393 printf("[%s%s ", head
, (flags
& SUMMARY_INITIAL_COMMIT
) ?
1394 _(" (root-commit)") : "");
1396 if (!log_tree_commit(&rev
, commit
)) {
1397 rev
.always_show_header
= 1;
1398 rev
.use_terminator
= 1;
1399 log_tree_commit(&rev
, commit
);
1402 release_revisions(&rev
);
1403 strbuf_release(&format
);
1406 static int parse_head(struct repository
*r
, struct commit
**head
)
1408 struct commit
*current_head
;
1409 struct object_id oid
;
1411 if (get_oid("HEAD", &oid
)) {
1412 current_head
= NULL
;
1414 current_head
= lookup_commit_reference(r
, &oid
);
1416 return error(_("could not parse HEAD"));
1417 if (!oideq(&oid
, ¤t_head
->object
.oid
)) {
1418 warning(_("HEAD %s is not a commit!"),
1421 if (parse_commit(current_head
))
1422 return error(_("could not parse HEAD commit"));
1424 *head
= current_head
;
1430 * Try to commit without forking 'git commit'. In some cases we need
1431 * to run 'git commit' to display an error message
1434 * -1 - error unable to commit
1436 * 1 - run 'git commit'
1438 static int try_to_commit(struct repository
*r
,
1439 struct strbuf
*msg
, const char *author
,
1440 struct replay_opts
*opts
, unsigned int flags
,
1441 struct object_id
*oid
)
1443 struct object_id tree
;
1444 struct commit
*current_head
= NULL
;
1445 struct commit_list
*parents
= NULL
;
1446 struct commit_extra_header
*extra
= NULL
;
1447 struct strbuf err
= STRBUF_INIT
;
1448 struct strbuf commit_msg
= STRBUF_INIT
;
1449 char *amend_author
= NULL
;
1450 const char *committer
= NULL
;
1451 const char *hook_commit
= NULL
;
1452 enum commit_msg_cleanup_mode cleanup
;
1455 if ((flags
& CLEANUP_MSG
) && (flags
& VERBATIM_MSG
))
1456 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1458 if (parse_head(r
, ¤t_head
))
1461 if (flags
& AMEND_MSG
) {
1462 const char *exclude_gpgsig
[] = { "gpgsig", "gpgsig-sha256", NULL
};
1463 const char *out_enc
= get_commit_output_encoding();
1464 const char *message
= logmsg_reencode(current_head
, NULL
,
1468 const char *orig_message
= NULL
;
1470 find_commit_subject(message
, &orig_message
);
1472 strbuf_addstr(msg
, orig_message
);
1473 hook_commit
= "HEAD";
1475 author
= amend_author
= get_author(message
);
1476 unuse_commit_buffer(current_head
, message
);
1478 res
= error(_("unable to parse commit author"));
1481 parents
= copy_commit_list(current_head
->parents
);
1482 extra
= read_commit_extra_headers(current_head
, exclude_gpgsig
);
1483 } else if (current_head
&&
1484 (!(flags
& CREATE_ROOT_COMMIT
) || (flags
& AMEND_MSG
))) {
1485 commit_list_insert(current_head
, &parents
);
1488 if (write_index_as_tree(&tree
, r
->index
, r
->index_file
, 0, NULL
)) {
1489 res
= error(_("git write-tree failed to write a tree"));
1493 if (!(flags
& ALLOW_EMPTY
)) {
1494 struct commit
*first_parent
= current_head
;
1496 if (flags
& AMEND_MSG
) {
1497 if (current_head
->parents
) {
1498 first_parent
= current_head
->parents
->item
;
1499 if (repo_parse_commit(r
, first_parent
)) {
1500 res
= error(_("could not parse HEAD commit"));
1504 first_parent
= NULL
;
1507 if (oideq(first_parent
1508 ? get_commit_tree_oid(first_parent
)
1509 : the_hash_algo
->empty_tree
,
1511 res
= 1; /* run 'git commit' to display error message */
1516 if (hook_exists("prepare-commit-msg")) {
1517 res
= run_prepare_commit_msg_hook(r
, msg
, hook_commit
);
1520 if (strbuf_read_file(&commit_msg
, git_path_commit_editmsg(),
1522 res
= error_errno(_("unable to read commit message "
1524 git_path_commit_editmsg());
1530 if (flags
& CLEANUP_MSG
)
1531 cleanup
= COMMIT_MSG_CLEANUP_ALL
;
1532 else if (flags
& VERBATIM_MSG
)
1533 cleanup
= COMMIT_MSG_CLEANUP_NONE
;
1534 else if ((opts
->signoff
|| opts
->record_origin
) &&
1535 !opts
->explicit_cleanup
)
1536 cleanup
= COMMIT_MSG_CLEANUP_SPACE
;
1538 cleanup
= opts
->default_msg_cleanup
;
1540 if (cleanup
!= COMMIT_MSG_CLEANUP_NONE
)
1541 strbuf_stripspace(msg
, cleanup
== COMMIT_MSG_CLEANUP_ALL
);
1542 if ((flags
& EDIT_MSG
) && message_is_empty(msg
, cleanup
)) {
1543 res
= 1; /* run 'git commit' to display error message */
1547 if (opts
->committer_date_is_author_date
) {
1548 struct ident_split id
;
1549 struct strbuf date
= STRBUF_INIT
;
1551 if (!opts
->ignore_date
) {
1552 if (split_ident_line(&id
, author
, (int)strlen(author
)) < 0) {
1553 res
= error(_("invalid author identity '%s'"),
1557 if (!id
.date_begin
) {
1559 "corrupt author: missing date information"));
1562 strbuf_addf(&date
, "@%.*s %.*s",
1563 (int)(id
.date_end
- id
.date_begin
),
1565 (int)(id
.tz_end
- id
.tz_begin
),
1570 committer
= fmt_ident(getenv("GIT_COMMITTER_NAME"),
1571 getenv("GIT_COMMITTER_EMAIL"),
1572 WANT_COMMITTER_IDENT
,
1573 opts
->ignore_date
? NULL
: date
.buf
,
1575 strbuf_release(&date
);
1580 if (opts
->ignore_date
) {
1581 struct ident_split id
;
1584 if (split_ident_line(&id
, author
, strlen(author
)) < 0) {
1585 error(_("invalid author identity '%s'"), author
);
1588 name
= xmemdupz(id
.name_begin
, id
.name_end
- id
.name_begin
);
1589 email
= xmemdupz(id
.mail_begin
, id
.mail_end
- id
.mail_begin
);
1590 author
= fmt_ident(name
, email
, WANT_AUTHOR_IDENT
, NULL
,
1596 if (commit_tree_extended(msg
->buf
, msg
->len
, &tree
, parents
, oid
,
1597 author
, committer
, opts
->gpg_sign
, extra
)) {
1598 res
= error(_("failed to write commit object"));
1602 if (update_head_with_reflog(current_head
, oid
, opts
->reflog_message
,
1604 res
= error("%s", err
.buf
);
1608 run_commit_hook(0, r
->index_file
, NULL
, "post-commit", NULL
);
1609 if (flags
& AMEND_MSG
)
1610 commit_post_rewrite(r
, current_head
, oid
);
1613 free_commit_extra_headers(extra
);
1614 strbuf_release(&err
);
1615 strbuf_release(&commit_msg
);
1621 static int write_rebase_head(struct object_id
*oid
)
1623 if (update_ref("rebase", "REBASE_HEAD", oid
,
1624 NULL
, REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
1625 return error(_("could not update %s"), "REBASE_HEAD");
1630 static int do_commit(struct repository
*r
,
1631 const char *msg_file
, const char *author
,
1632 struct replay_opts
*opts
, unsigned int flags
,
1633 struct object_id
*oid
)
1637 if (!(flags
& EDIT_MSG
) && !(flags
& VERIFY_MSG
)) {
1638 struct object_id oid
;
1639 struct strbuf sb
= STRBUF_INIT
;
1641 if (msg_file
&& strbuf_read_file(&sb
, msg_file
, 2048) < 0)
1642 return error_errno(_("unable to read commit message "
1646 res
= try_to_commit(r
, msg_file
? &sb
: NULL
,
1647 author
, opts
, flags
, &oid
);
1648 strbuf_release(&sb
);
1650 refs_delete_ref(get_main_ref_store(r
), "",
1651 "CHERRY_PICK_HEAD", NULL
, 0);
1652 unlink(git_path_merge_msg(r
));
1653 if (!is_rebase_i(opts
))
1654 print_commit_summary(r
, NULL
, &oid
,
1655 SUMMARY_SHOW_AUTHOR_DATE
);
1660 if (is_rebase_i(opts
) && oid
)
1661 if (write_rebase_head(oid
))
1663 return run_git_commit(msg_file
, opts
, flags
);
1669 static int is_original_commit_empty(struct commit
*commit
)
1671 const struct object_id
*ptree_oid
;
1673 if (parse_commit(commit
))
1674 return error(_("could not parse commit %s"),
1675 oid_to_hex(&commit
->object
.oid
));
1676 if (commit
->parents
) {
1677 struct commit
*parent
= commit
->parents
->item
;
1678 if (parse_commit(parent
))
1679 return error(_("could not parse parent commit %s"),
1680 oid_to_hex(&parent
->object
.oid
));
1681 ptree_oid
= get_commit_tree_oid(parent
);
1683 ptree_oid
= the_hash_algo
->empty_tree
; /* commit is root */
1686 return oideq(ptree_oid
, get_commit_tree_oid(commit
));
1690 * Should empty commits be allowed? Return status:
1691 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1692 * 0: Halt on empty commit
1693 * 1: Allow empty commit
1694 * 2: Drop empty commit
1696 static int allow_empty(struct repository
*r
,
1697 struct replay_opts
*opts
,
1698 struct commit
*commit
)
1700 int index_unchanged
, originally_empty
;
1705 * (1) we do not allow empty at all and error out.
1707 * (2) we allow ones that were initially empty, and
1708 * just drop the ones that become empty
1710 * (3) we allow ones that were initially empty, but
1711 * halt for the ones that become empty;
1713 * (4) we allow both.
1715 if (!opts
->allow_empty
)
1716 return 0; /* let "git commit" barf as necessary */
1718 index_unchanged
= is_index_unchanged(r
);
1719 if (index_unchanged
< 0)
1720 return index_unchanged
;
1721 if (!index_unchanged
)
1722 return 0; /* we do not have to say --allow-empty */
1724 if (opts
->keep_redundant_commits
)
1727 originally_empty
= is_original_commit_empty(commit
);
1728 if (originally_empty
< 0)
1729 return originally_empty
;
1730 if (originally_empty
)
1732 else if (opts
->drop_redundant_commits
)
1741 } todo_command_info
[] = {
1742 [TODO_PICK
] = { 'p', "pick" },
1743 [TODO_REVERT
] = { 0, "revert" },
1744 [TODO_EDIT
] = { 'e', "edit" },
1745 [TODO_REWORD
] = { 'r', "reword" },
1746 [TODO_FIXUP
] = { 'f', "fixup" },
1747 [TODO_SQUASH
] = { 's', "squash" },
1748 [TODO_EXEC
] = { 'x', "exec" },
1749 [TODO_BREAK
] = { 'b', "break" },
1750 [TODO_LABEL
] = { 'l', "label" },
1751 [TODO_RESET
] = { 't', "reset" },
1752 [TODO_MERGE
] = { 'm', "merge" },
1753 [TODO_UPDATE_REF
] = { 'u', "update-ref" },
1754 [TODO_NOOP
] = { 0, "noop" },
1755 [TODO_DROP
] = { 'd', "drop" },
1756 [TODO_COMMENT
] = { 0, NULL
},
1759 static const char *command_to_string(const enum todo_command command
)
1761 if (command
< TODO_COMMENT
)
1762 return todo_command_info
[command
].str
;
1763 die(_("unknown command: %d"), command
);
1766 static char command_to_char(const enum todo_command command
)
1768 if (command
< TODO_COMMENT
)
1769 return todo_command_info
[command
].c
;
1770 return comment_line_char
;
1773 static int is_noop(const enum todo_command command
)
1775 return TODO_NOOP
<= command
;
1778 static int is_fixup(enum todo_command command
)
1780 return command
== TODO_FIXUP
|| command
== TODO_SQUASH
;
1783 /* Does this command create a (non-merge) commit? */
1784 static int is_pick_or_similar(enum todo_command command
)
1799 enum todo_item_flags
{
1800 TODO_EDIT_MERGE_MSG
= (1 << 0),
1801 TODO_REPLACE_FIXUP_MSG
= (1 << 1),
1802 TODO_EDIT_FIXUP_MSG
= (1 << 2),
1805 static const char first_commit_msg_str
[] = N_("This is the 1st commit message:");
1806 static const char nth_commit_msg_fmt
[] = N_("This is the commit message #%d:");
1807 static const char skip_first_commit_msg_str
[] = N_("The 1st commit message will be skipped:");
1808 static const char skip_nth_commit_msg_fmt
[] = N_("The commit message #%d will be skipped:");
1809 static const char combined_commit_msg_fmt
[] = N_("This is a combination of %d commits.");
1811 static int is_fixup_flag(enum todo_command command
, unsigned flag
)
1813 return command
== TODO_FIXUP
&& ((flag
& TODO_REPLACE_FIXUP_MSG
) ||
1814 (flag
& TODO_EDIT_FIXUP_MSG
));
1818 * Wrapper around strbuf_add_commented_lines() which avoids double
1819 * commenting commit subjects.
1821 static void add_commented_lines(struct strbuf
*buf
, const void *str
, size_t len
)
1823 const char *s
= str
;
1824 while (len
> 0 && s
[0] == comment_line_char
) {
1826 const char *n
= memchr(s
, '\n', len
);
1831 strbuf_add(buf
, s
, count
);
1835 strbuf_add_commented_lines(buf
, s
, len
);
1838 /* Does the current fixup chain contain a squash command? */
1839 static int seen_squash(struct replay_opts
*opts
)
1841 return starts_with(opts
->current_fixups
.buf
, "squash") ||
1842 strstr(opts
->current_fixups
.buf
, "\nsquash");
1845 static void update_comment_bufs(struct strbuf
*buf1
, struct strbuf
*buf2
, int n
)
1847 strbuf_setlen(buf1
, 2);
1848 strbuf_addf(buf1
, _(nth_commit_msg_fmt
), n
);
1849 strbuf_addch(buf1
, '\n');
1850 strbuf_setlen(buf2
, 2);
1851 strbuf_addf(buf2
, _(skip_nth_commit_msg_fmt
), n
);
1852 strbuf_addch(buf2
, '\n');
1856 * Comment out any un-commented commit messages, updating the message comments
1857 * to say they will be skipped but do not comment out the empty lines that
1858 * surround commit messages and their comments.
1860 static void update_squash_message_for_fixup(struct strbuf
*msg
)
1862 void (*copy_lines
)(struct strbuf
*, const void *, size_t) = strbuf_add
;
1863 struct strbuf buf1
= STRBUF_INIT
, buf2
= STRBUF_INIT
;
1864 const char *s
, *start
;
1866 size_t orig_msg_len
;
1869 strbuf_addf(&buf1
, "# %s\n", _(first_commit_msg_str
));
1870 strbuf_addf(&buf2
, "# %s\n", _(skip_first_commit_msg_str
));
1871 s
= start
= orig_msg
= strbuf_detach(msg
, &orig_msg_len
);
1875 if (skip_prefix(s
, buf1
.buf
, &next
)) {
1877 * Copy the last message, preserving the blank line
1878 * preceding the current line
1880 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1881 copy_lines(msg
, start
, s
- start
- off
);
1883 strbuf_addch(msg
, '\n');
1885 * The next message needs to be commented out but the
1886 * message header is already commented out so just copy
1887 * it and the blank line that follows it.
1889 strbuf_addbuf(msg
, &buf2
);
1891 strbuf_addch(msg
, *next
++);
1893 copy_lines
= add_commented_lines
;
1894 update_comment_bufs(&buf1
, &buf2
, ++i
);
1895 } else if (skip_prefix(s
, buf2
.buf
, &next
)) {
1896 off
= (s
> start
+ 1 && s
[-2] == '\n') ? 1 : 0;
1897 copy_lines(msg
, start
, s
- start
- off
);
1900 copy_lines
= strbuf_add
;
1901 update_comment_bufs(&buf1
, &buf2
, ++i
);
1903 s
= strchr(s
, '\n');
1908 copy_lines(msg
, start
, orig_msg_len
- (start
- orig_msg
));
1910 strbuf_release(&buf1
);
1911 strbuf_release(&buf2
);
1914 static int append_squash_message(struct strbuf
*buf
, const char *body
,
1915 enum todo_command command
, struct replay_opts
*opts
,
1918 const char *fixup_msg
;
1919 size_t commented_len
= 0, fixup_off
;
1921 * amend is non-interactive and not normally used with fixup!
1922 * or squash! commits, so only comment out those subjects when
1923 * squashing commit messages.
1925 if (starts_with(body
, "amend!") ||
1926 ((command
== TODO_SQUASH
|| seen_squash(opts
)) &&
1927 (starts_with(body
, "squash!") || starts_with(body
, "fixup!"))))
1928 commented_len
= commit_subject_length(body
);
1930 strbuf_addf(buf
, "\n%c ", comment_line_char
);
1931 strbuf_addf(buf
, _(nth_commit_msg_fmt
),
1932 ++opts
->current_fixup_count
+ 1);
1933 strbuf_addstr(buf
, "\n\n");
1934 strbuf_add_commented_lines(buf
, body
, commented_len
);
1935 /* buf->buf may be reallocated so store an offset into the buffer */
1936 fixup_off
= buf
->len
;
1937 strbuf_addstr(buf
, body
+ commented_len
);
1939 /* fixup -C after squash behaves like squash */
1940 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
)) {
1942 * We're replacing the commit message so we need to
1943 * append the Signed-off-by: trailer if the user
1944 * requested '--signoff'.
1947 append_signoff(buf
, 0, 0);
1949 if ((command
== TODO_FIXUP
) &&
1950 (flag
& TODO_REPLACE_FIXUP_MSG
) &&
1951 (file_exists(rebase_path_fixup_msg()) ||
1952 !file_exists(rebase_path_squash_msg()))) {
1953 fixup_msg
= skip_blank_lines(buf
->buf
+ fixup_off
);
1954 if (write_message(fixup_msg
, strlen(fixup_msg
),
1955 rebase_path_fixup_msg(), 0) < 0)
1956 return error(_("cannot write '%s'"),
1957 rebase_path_fixup_msg());
1959 unlink(rebase_path_fixup_msg());
1962 unlink(rebase_path_fixup_msg());
1968 static int update_squash_messages(struct repository
*r
,
1969 enum todo_command command
,
1970 struct commit
*commit
,
1971 struct replay_opts
*opts
,
1974 struct strbuf buf
= STRBUF_INIT
;
1976 const char *message
, *body
;
1977 const char *encoding
= get_commit_output_encoding();
1979 if (opts
->current_fixup_count
> 0) {
1980 struct strbuf header
= STRBUF_INIT
;
1983 if (strbuf_read_file(&buf
, rebase_path_squash_msg(), 9) <= 0)
1984 return error(_("could not read '%s'"),
1985 rebase_path_squash_msg());
1987 eol
= buf
.buf
[0] != comment_line_char
?
1988 buf
.buf
: strchrnul(buf
.buf
, '\n');
1990 strbuf_addf(&header
, "%c ", comment_line_char
);
1991 strbuf_addf(&header
, _(combined_commit_msg_fmt
),
1992 opts
->current_fixup_count
+ 2);
1993 strbuf_splice(&buf
, 0, eol
- buf
.buf
, header
.buf
, header
.len
);
1994 strbuf_release(&header
);
1995 if (is_fixup_flag(command
, flag
) && !seen_squash(opts
))
1996 update_squash_message_for_fixup(&buf
);
1998 struct object_id head
;
1999 struct commit
*head_commit
;
2000 const char *head_message
, *body
;
2002 if (get_oid("HEAD", &head
))
2003 return error(_("need a HEAD to fixup"));
2004 if (!(head_commit
= lookup_commit_reference(r
, &head
)))
2005 return error(_("could not read HEAD"));
2006 if (!(head_message
= logmsg_reencode(head_commit
, NULL
, encoding
)))
2007 return error(_("could not read HEAD's commit message"));
2009 find_commit_subject(head_message
, &body
);
2010 if (command
== TODO_FIXUP
&& !flag
&& write_message(body
, strlen(body
),
2011 rebase_path_fixup_msg(), 0) < 0) {
2012 unuse_commit_buffer(head_commit
, head_message
);
2013 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
2015 strbuf_addf(&buf
, "%c ", comment_line_char
);
2016 strbuf_addf(&buf
, _(combined_commit_msg_fmt
), 2);
2017 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
2018 strbuf_addstr(&buf
, is_fixup_flag(command
, flag
) ?
2019 _(skip_first_commit_msg_str
) :
2020 _(first_commit_msg_str
));
2021 strbuf_addstr(&buf
, "\n\n");
2022 if (is_fixup_flag(command
, flag
))
2023 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
2025 strbuf_addstr(&buf
, body
);
2027 unuse_commit_buffer(head_commit
, head_message
);
2030 if (!(message
= logmsg_reencode(commit
, NULL
, encoding
)))
2031 return error(_("could not read commit message of %s"),
2032 oid_to_hex(&commit
->object
.oid
));
2033 find_commit_subject(message
, &body
);
2035 if (command
== TODO_SQUASH
|| is_fixup_flag(command
, flag
)) {
2036 res
= append_squash_message(&buf
, body
, command
, opts
, flag
);
2037 } else if (command
== TODO_FIXUP
) {
2038 strbuf_addf(&buf
, "\n%c ", comment_line_char
);
2039 strbuf_addf(&buf
, _(skip_nth_commit_msg_fmt
),
2040 ++opts
->current_fixup_count
+ 1);
2041 strbuf_addstr(&buf
, "\n\n");
2042 strbuf_add_commented_lines(&buf
, body
, strlen(body
));
2044 return error(_("unknown command: %d"), command
);
2045 unuse_commit_buffer(commit
, message
);
2048 res
= write_message(buf
.buf
, buf
.len
, rebase_path_squash_msg(),
2050 strbuf_release(&buf
);
2053 strbuf_addf(&opts
->current_fixups
, "%s%s %s",
2054 opts
->current_fixups
.len
? "\n" : "",
2055 command_to_string(command
),
2056 oid_to_hex(&commit
->object
.oid
));
2057 res
= write_message(opts
->current_fixups
.buf
,
2058 opts
->current_fixups
.len
,
2059 rebase_path_current_fixups(), 0);
2065 static void flush_rewritten_pending(void)
2067 struct strbuf buf
= STRBUF_INIT
;
2068 struct object_id newoid
;
2071 if (strbuf_read_file(&buf
, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ
+ 1) * 2) > 0 &&
2072 !get_oid("HEAD", &newoid
) &&
2073 (out
= fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
2074 char *bol
= buf
.buf
, *eol
;
2077 eol
= strchrnul(bol
, '\n');
2078 fprintf(out
, "%.*s %s\n", (int)(eol
- bol
),
2079 bol
, oid_to_hex(&newoid
));
2085 unlink(rebase_path_rewritten_pending());
2087 strbuf_release(&buf
);
2090 static void record_in_rewritten(struct object_id
*oid
,
2091 enum todo_command next_command
)
2093 FILE *out
= fopen_or_warn(rebase_path_rewritten_pending(), "a");
2098 fprintf(out
, "%s\n", oid_to_hex(oid
));
2101 if (!is_fixup(next_command
))
2102 flush_rewritten_pending();
2105 static int should_edit(struct replay_opts
*opts
) {
2108 * Note that we only handle the case of non-conflicted
2109 * commits; continue_single_pick() handles the conflicted
2110 * commits itself instead of calling this function.
2112 return (opts
->action
== REPLAY_REVERT
&& isatty(0)) ? 1 : 0;
2116 static void refer_to_commit(struct replay_opts
*opts
,
2117 struct strbuf
*msgbuf
, struct commit
*commit
)
2119 if (opts
->commit_use_reference
) {
2120 struct pretty_print_context ctx
= {
2121 .abbrev
= DEFAULT_ABBREV
,
2122 .date_mode
.type
= DATE_SHORT
,
2124 format_commit_message(commit
, "%h (%s, %ad)", msgbuf
, &ctx
);
2126 strbuf_addstr(msgbuf
, oid_to_hex(&commit
->object
.oid
));
2130 static int do_pick_commit(struct repository
*r
,
2131 struct todo_item
*item
,
2132 struct replay_opts
*opts
,
2133 int final_fixup
, int *check_todo
)
2135 unsigned int flags
= should_edit(opts
) ? EDIT_MSG
: 0;
2136 const char *msg_file
= should_edit(opts
) ? NULL
: git_path_merge_msg(r
);
2137 struct object_id head
;
2138 struct commit
*base
, *next
, *parent
;
2139 const char *base_label
, *next_label
;
2140 char *author
= NULL
;
2141 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
2142 struct strbuf msgbuf
= STRBUF_INIT
;
2143 int res
, unborn
= 0, reword
= 0, allow
, drop_commit
;
2144 enum todo_command command
= item
->command
;
2145 struct commit
*commit
= item
->commit
;
2147 if (opts
->no_commit
) {
2149 * We do not intend to commit immediately. We just want to
2150 * merge the differences in, so let's compute the tree
2151 * that represents the "current" state for the merge machinery
2154 if (write_index_as_tree(&head
, r
->index
, r
->index_file
, 0, NULL
))
2155 return error(_("your index file is unmerged."));
2157 unborn
= get_oid("HEAD", &head
);
2158 /* Do we want to generate a root commit? */
2159 if (is_pick_or_similar(command
) && opts
->have_squash_onto
&&
2160 oideq(&head
, &opts
->squash_onto
)) {
2161 if (is_fixup(command
))
2162 return error(_("cannot fixup root commit"));
2163 flags
|= CREATE_ROOT_COMMIT
;
2166 oidcpy(&head
, the_hash_algo
->empty_tree
);
2167 if (index_differs_from(r
, unborn
? empty_tree_oid_hex() : "HEAD",
2169 return error_dirty_index(r
, opts
);
2171 discard_index(r
->index
);
2173 if (!commit
->parents
)
2175 else if (commit
->parents
->next
) {
2176 /* Reverting or cherry-picking a merge commit */
2178 struct commit_list
*p
;
2180 if (!opts
->mainline
)
2181 return error(_("commit %s is a merge but no -m option was given."),
2182 oid_to_hex(&commit
->object
.oid
));
2184 for (cnt
= 1, p
= commit
->parents
;
2185 cnt
!= opts
->mainline
&& p
;
2188 if (cnt
!= opts
->mainline
|| !p
)
2189 return error(_("commit %s does not have parent %d"),
2190 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2192 } else if (1 < opts
->mainline
)
2194 * Non-first parent explicitly specified as mainline for
2197 return error(_("commit %s does not have parent %d"),
2198 oid_to_hex(&commit
->object
.oid
), opts
->mainline
);
2200 parent
= commit
->parents
->item
;
2202 if (get_message(commit
, &msg
) != 0)
2203 return error(_("cannot get commit message for %s"),
2204 oid_to_hex(&commit
->object
.oid
));
2206 if (opts
->allow_ff
&& !is_fixup(command
) &&
2207 ((parent
&& oideq(&parent
->object
.oid
, &head
)) ||
2208 (!parent
&& unborn
))) {
2209 if (is_rebase_i(opts
))
2210 write_author_script(msg
.message
);
2211 res
= fast_forward_to(r
, &commit
->object
.oid
, &head
, unborn
,
2213 if (res
|| command
!= TODO_REWORD
)
2217 goto fast_forward_edit
;
2219 if (parent
&& parse_commit(parent
) < 0)
2220 /* TRANSLATORS: The first %s will be a "todo" command like
2221 "revert" or "pick", the second %s a SHA1. */
2222 return error(_("%s: cannot parse parent commit %s"),
2223 command_to_string(command
),
2224 oid_to_hex(&parent
->object
.oid
));
2227 * "commit" is an existing commit. We would want to apply
2228 * the difference it introduces since its first parent "prev"
2229 * on top of the current HEAD if we are cherry-pick. Or the
2230 * reverse of it if we are revert.
2233 if (command
== TODO_REVERT
) {
2235 base_label
= msg
.label
;
2237 next_label
= msg
.parent_label
;
2238 if (opts
->commit_use_reference
) {
2239 strbuf_addstr(&msgbuf
,
2240 "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***");
2242 strbuf_addstr(&msgbuf
, "Revert \"");
2243 strbuf_addstr(&msgbuf
, msg
.subject
);
2244 strbuf_addstr(&msgbuf
, "\"");
2246 strbuf_addstr(&msgbuf
, "\n\nThis reverts commit ");
2247 refer_to_commit(opts
, &msgbuf
, commit
);
2249 if (commit
->parents
&& commit
->parents
->next
) {
2250 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
2251 refer_to_commit(opts
, &msgbuf
, parent
);
2253 strbuf_addstr(&msgbuf
, ".\n");
2258 base_label
= msg
.parent_label
;
2260 next_label
= msg
.label
;
2262 /* Append the commit log message to msgbuf. */
2263 if (find_commit_subject(msg
.message
, &p
))
2264 strbuf_addstr(&msgbuf
, p
);
2266 if (opts
->record_origin
) {
2267 strbuf_complete_line(&msgbuf
);
2268 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
2269 strbuf_addch(&msgbuf
, '\n');
2270 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
2271 strbuf_addstr(&msgbuf
, oid_to_hex(&commit
->object
.oid
));
2272 strbuf_addstr(&msgbuf
, ")\n");
2274 if (!is_fixup(command
))
2275 author
= get_author(msg
.message
);
2278 if (command
== TODO_REWORD
)
2280 else if (is_fixup(command
)) {
2281 if (update_squash_messages(r
, command
, commit
,
2282 opts
, item
->flags
)) {
2288 msg_file
= rebase_path_squash_msg();
2289 else if (file_exists(rebase_path_fixup_msg())) {
2290 flags
|= VERBATIM_MSG
;
2291 msg_file
= rebase_path_fixup_msg();
2293 const char *dest
= git_path_squash_msg(r
);
2295 if (copy_file(dest
, rebase_path_squash_msg(), 0666)) {
2296 res
= error(_("could not rename '%s' to '%s'"),
2297 rebase_path_squash_msg(), dest
);
2300 unlink(git_path_merge_msg(r
));
2306 if (opts
->signoff
&& !is_fixup(command
))
2307 append_signoff(&msgbuf
, 0, 0);
2309 if (is_rebase_i(opts
) && write_author_script(msg
.message
) < 0)
2311 else if (!opts
->strategy
||
2312 !strcmp(opts
->strategy
, "recursive") ||
2313 !strcmp(opts
->strategy
, "ort") ||
2314 command
== TODO_REVERT
) {
2315 res
= do_recursive_merge(r
, base
, next
, base_label
, next_label
,
2316 &head
, &msgbuf
, opts
);
2320 res
|= write_message(msgbuf
.buf
, msgbuf
.len
,
2321 git_path_merge_msg(r
), 0);
2323 struct commit_list
*common
= NULL
;
2324 struct commit_list
*remotes
= NULL
;
2326 res
= write_message(msgbuf
.buf
, msgbuf
.len
,
2327 git_path_merge_msg(r
), 0);
2329 commit_list_insert(base
, &common
);
2330 commit_list_insert(next
, &remotes
);
2331 res
|= try_merge_command(r
, opts
->strategy
,
2332 opts
->xopts_nr
, (const char **)opts
->xopts
,
2333 common
, oid_to_hex(&head
), remotes
);
2334 free_commit_list(common
);
2335 free_commit_list(remotes
);
2339 * If the merge was clean or if it failed due to conflict, we write
2340 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2341 * However, if the merge did not even start, then we don't want to
2344 if ((command
== TODO_PICK
|| command
== TODO_REWORD
||
2345 command
== TODO_EDIT
) && !opts
->no_commit
&&
2346 (res
== 0 || res
== 1) &&
2347 update_ref(NULL
, "CHERRY_PICK_HEAD", &commit
->object
.oid
, NULL
,
2348 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2350 if (command
== TODO_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1) &&
2351 update_ref(NULL
, "REVERT_HEAD", &commit
->object
.oid
, NULL
,
2352 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
))
2356 error(command
== TODO_REVERT
2357 ? _("could not revert %s... %s")
2358 : _("could not apply %s... %s"),
2359 short_commit_name(commit
), msg
.subject
);
2360 print_advice(r
, res
== 1, opts
);
2361 repo_rerere(r
, opts
->allow_rerere_auto
);
2366 allow
= allow_empty(r
, opts
, commit
);
2370 } else if (allow
== 1) {
2371 flags
|= ALLOW_EMPTY
;
2372 } else if (allow
== 2) {
2374 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
2376 unlink(git_path_merge_msg(r
));
2377 unlink(git_path_auto_merge(r
));
2379 _("dropping %s %s -- patch contents already upstream\n"),
2380 oid_to_hex(&commit
->object
.oid
), msg
.subject
);
2381 } /* else allow == 0 and there's nothing special to do */
2382 if (!opts
->no_commit
&& !drop_commit
) {
2383 if (author
|| command
== TODO_REVERT
|| (flags
& AMEND_MSG
))
2384 res
= do_commit(r
, msg_file
, author
, opts
, flags
,
2385 commit
? &commit
->object
.oid
: NULL
);
2387 res
= error(_("unable to parse commit author"));
2388 *check_todo
= !!(flags
& EDIT_MSG
);
2389 if (!res
&& reword
) {
2391 res
= run_git_commit(NULL
, opts
, EDIT_MSG
|
2392 VERIFY_MSG
| AMEND_MSG
|
2393 (flags
& ALLOW_EMPTY
));
2399 if (!res
&& final_fixup
) {
2400 unlink(rebase_path_fixup_msg());
2401 unlink(rebase_path_squash_msg());
2402 unlink(rebase_path_current_fixups());
2403 strbuf_reset(&opts
->current_fixups
);
2404 opts
->current_fixup_count
= 0;
2408 free_message(commit
, &msg
);
2410 strbuf_release(&msgbuf
);
2411 update_abort_safety_file();
2416 static int prepare_revs(struct replay_opts
*opts
)
2419 * picking (but not reverting) ranges (but not individual revisions)
2420 * should be done in reverse
2422 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
2423 opts
->revs
->reverse
^= 1;
2425 if (prepare_revision_walk(opts
->revs
))
2426 return error(_("revision walk setup failed"));
2431 static int read_and_refresh_cache(struct repository
*r
,
2432 struct replay_opts
*opts
)
2434 struct lock_file index_lock
= LOCK_INIT
;
2435 int index_fd
= repo_hold_locked_index(r
, &index_lock
, 0);
2436 if (repo_read_index(r
) < 0) {
2437 rollback_lock_file(&index_lock
);
2438 return error(_("git %s: failed to read the index"),
2441 refresh_index(r
->index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
2443 if (index_fd
>= 0) {
2444 if (write_locked_index(r
->index
, &index_lock
,
2445 COMMIT_LOCK
| SKIP_IF_UNCHANGED
)) {
2446 return error(_("git %s: failed to refresh the index"),
2452 * If we are resolving merges in any way other than "ort", then
2453 * expand the sparse index.
2455 if (opts
->strategy
&& strcmp(opts
->strategy
, "ort"))
2456 ensure_full_index(r
->index
);
2460 void todo_list_release(struct todo_list
*todo_list
)
2462 strbuf_release(&todo_list
->buf
);
2463 FREE_AND_NULL(todo_list
->items
);
2464 todo_list
->nr
= todo_list
->alloc
= 0;
2467 static struct todo_item
*append_new_todo(struct todo_list
*todo_list
)
2469 ALLOC_GROW(todo_list
->items
, todo_list
->nr
+ 1, todo_list
->alloc
);
2470 todo_list
->total_nr
++;
2471 return todo_list
->items
+ todo_list
->nr
++;
2474 const char *todo_item_get_arg(struct todo_list
*todo_list
,
2475 struct todo_item
*item
)
2477 return todo_list
->buf
.buf
+ item
->arg_offset
;
2480 static int is_command(enum todo_command command
, const char **bol
)
2482 const char *str
= todo_command_info
[command
].str
;
2483 const char nick
= todo_command_info
[command
].c
;
2484 const char *p
= *bol
;
2486 return (skip_prefix(p
, str
, &p
) || (nick
&& *p
++ == nick
)) &&
2487 (*p
== ' ' || *p
== '\t' || *p
== '\n' || *p
== '\r' || !*p
) &&
2491 static int check_label_or_ref_arg(enum todo_command command
, const char *arg
)
2496 * '#' is not a valid label as the merge command uses it to
2497 * separate merge parents from the commit subject.
2499 if (!strcmp(arg
, "#") ||
2500 check_refname_format(arg
, REFNAME_ALLOW_ONELEVEL
))
2501 return error(_("'%s' is not a valid label"), arg
);
2504 case TODO_UPDATE_REF
:
2505 if (check_refname_format(arg
, REFNAME_ALLOW_ONELEVEL
))
2506 return error(_("'%s' is not a valid refname"), arg
);
2507 if (check_refname_format(arg
, 0))
2508 return error(_("update-ref requires a fully qualified "
2509 "refname e.g. refs/heads/%s"), arg
);
2513 BUG("unexpected todo_command");
2519 static int parse_insn_line(struct repository
*r
, struct todo_item
*item
,
2520 const char *buf
, const char *bol
, char *eol
)
2522 struct object_id commit_oid
;
2523 char *end_of_object_name
;
2524 int i
, saved
, status
, padding
;
2529 bol
+= strspn(bol
, " \t");
2531 if (bol
== eol
|| *bol
== '\r' || *bol
== comment_line_char
) {
2532 item
->command
= TODO_COMMENT
;
2533 item
->commit
= NULL
;
2534 item
->arg_offset
= bol
- buf
;
2535 item
->arg_len
= eol
- bol
;
2539 for (i
= 0; i
< TODO_COMMENT
; i
++)
2540 if (is_command(i
, &bol
)) {
2544 if (i
>= TODO_COMMENT
)
2545 return error(_("invalid command '%.*s'"),
2546 (int)strcspn(bol
, " \t\r\n"), bol
);
2548 /* Eat up extra spaces/ tabs before object name */
2549 padding
= strspn(bol
, " \t");
2552 if (item
->command
== TODO_NOOP
|| item
->command
== TODO_BREAK
) {
2554 return error(_("%s does not accept arguments: '%s'"),
2555 command_to_string(item
->command
), bol
);
2556 item
->commit
= NULL
;
2557 item
->arg_offset
= bol
- buf
;
2558 item
->arg_len
= eol
- bol
;
2563 return error(_("missing arguments for %s"),
2564 command_to_string(item
->command
));
2566 if (item
->command
== TODO_EXEC
|| item
->command
== TODO_LABEL
||
2567 item
->command
== TODO_RESET
|| item
->command
== TODO_UPDATE_REF
) {
2570 item
->commit
= NULL
;
2571 item
->arg_offset
= bol
- buf
;
2572 item
->arg_len
= (int)(eol
- bol
);
2573 if (item
->command
== TODO_LABEL
||
2574 item
->command
== TODO_UPDATE_REF
) {
2577 ret
= check_label_or_ref_arg(item
->command
, bol
);
2583 if (item
->command
== TODO_FIXUP
) {
2584 if (skip_prefix(bol
, "-C", &bol
)) {
2585 bol
+= strspn(bol
, " \t");
2586 item
->flags
|= TODO_REPLACE_FIXUP_MSG
;
2587 } else if (skip_prefix(bol
, "-c", &bol
)) {
2588 bol
+= strspn(bol
, " \t");
2589 item
->flags
|= TODO_EDIT_FIXUP_MSG
;
2593 if (item
->command
== TODO_MERGE
) {
2594 if (skip_prefix(bol
, "-C", &bol
))
2595 bol
+= strspn(bol
, " \t");
2596 else if (skip_prefix(bol
, "-c", &bol
)) {
2597 bol
+= strspn(bol
, " \t");
2598 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2600 item
->flags
|= TODO_EDIT_MERGE_MSG
;
2601 item
->commit
= NULL
;
2602 item
->arg_offset
= bol
- buf
;
2603 item
->arg_len
= (int)(eol
- bol
);
2608 end_of_object_name
= (char *) bol
+ strcspn(bol
, " \t\n");
2609 saved
= *end_of_object_name
;
2610 *end_of_object_name
= '\0';
2611 status
= get_oid(bol
, &commit_oid
);
2613 error(_("could not parse '%s'"), bol
); /* return later */
2614 *end_of_object_name
= saved
;
2616 bol
= end_of_object_name
+ strspn(end_of_object_name
, " \t");
2617 item
->arg_offset
= bol
- buf
;
2618 item
->arg_len
= (int)(eol
- bol
);
2623 item
->commit
= lookup_commit_reference(r
, &commit_oid
);
2624 return item
->commit
? 0 : -1;
2627 int sequencer_get_last_command(struct repository
*r
, enum replay_action
*action
)
2629 const char *todo_file
, *bol
;
2630 struct strbuf buf
= STRBUF_INIT
;
2633 todo_file
= git_path_todo_file();
2634 if (strbuf_read_file(&buf
, todo_file
, 0) < 0) {
2635 if (errno
== ENOENT
|| errno
== ENOTDIR
)
2638 return error_errno("unable to open '%s'", todo_file
);
2640 bol
= buf
.buf
+ strspn(buf
.buf
, " \t\r\n");
2641 if (is_command(TODO_PICK
, &bol
) && (*bol
== ' ' || *bol
== '\t'))
2642 *action
= REPLAY_PICK
;
2643 else if (is_command(TODO_REVERT
, &bol
) &&
2644 (*bol
== ' ' || *bol
== '\t'))
2645 *action
= REPLAY_REVERT
;
2649 strbuf_release(&buf
);
2654 int todo_list_parse_insn_buffer(struct repository
*r
, char *buf
,
2655 struct todo_list
*todo_list
)
2657 struct todo_item
*item
;
2658 char *p
= buf
, *next_p
;
2659 int i
, res
= 0, fixup_okay
= file_exists(rebase_path_done());
2661 todo_list
->current
= todo_list
->nr
= 0;
2663 for (i
= 1; *p
; i
++, p
= next_p
) {
2664 char *eol
= strchrnul(p
, '\n');
2666 next_p
= *eol
? eol
+ 1 /* skip LF */ : eol
;
2668 if (p
!= eol
&& eol
[-1] == '\r')
2669 eol
--; /* strip Carriage Return */
2671 item
= append_new_todo(todo_list
);
2672 item
->offset_in_buf
= p
- todo_list
->buf
.buf
;
2673 if (parse_insn_line(r
, item
, buf
, p
, eol
)) {
2674 res
= error(_("invalid line %d: %.*s"),
2675 i
, (int)(eol
- p
), p
);
2676 item
->command
= TODO_COMMENT
+ 1;
2677 item
->arg_offset
= p
- buf
;
2678 item
->arg_len
= (int)(eol
- p
);
2679 item
->commit
= NULL
;
2684 else if (is_fixup(item
->command
))
2685 return error(_("cannot '%s' without a previous commit"),
2686 command_to_string(item
->command
));
2687 else if (!is_noop(item
->command
))
2694 static int count_commands(struct todo_list
*todo_list
)
2698 for (i
= 0; i
< todo_list
->nr
; i
++)
2699 if (todo_list
->items
[i
].command
!= TODO_COMMENT
)
2705 static int get_item_line_offset(struct todo_list
*todo_list
, int index
)
2707 return index
< todo_list
->nr
?
2708 todo_list
->items
[index
].offset_in_buf
: todo_list
->buf
.len
;
2711 static const char *get_item_line(struct todo_list
*todo_list
, int index
)
2713 return todo_list
->buf
.buf
+ get_item_line_offset(todo_list
, index
);
2716 static int get_item_line_length(struct todo_list
*todo_list
, int index
)
2718 return get_item_line_offset(todo_list
, index
+ 1)
2719 - get_item_line_offset(todo_list
, index
);
2722 static ssize_t
strbuf_read_file_or_whine(struct strbuf
*sb
, const char *path
)
2727 fd
= open(path
, O_RDONLY
);
2729 return error_errno(_("could not open '%s'"), path
);
2730 len
= strbuf_read(sb
, fd
, 0);
2733 return error(_("could not read '%s'."), path
);
2737 static int have_finished_the_last_pick(void)
2739 struct strbuf buf
= STRBUF_INIT
;
2741 const char *todo_path
= git_path_todo_file();
2744 if (strbuf_read_file(&buf
, todo_path
, 0) < 0) {
2745 if (errno
== ENOENT
) {
2748 error_errno("unable to open '%s'", todo_path
);
2752 /* If there is only one line then we are done */
2753 eol
= strchr(buf
.buf
, '\n');
2754 if (!eol
|| !eol
[1])
2757 strbuf_release(&buf
);
2762 void sequencer_post_commit_cleanup(struct repository
*r
, int verbose
)
2764 struct replay_opts opts
= REPLAY_OPTS_INIT
;
2765 int need_cleanup
= 0;
2767 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
2768 if (!refs_delete_ref(get_main_ref_store(r
), "",
2769 "CHERRY_PICK_HEAD", NULL
, 0) &&
2771 warning(_("cancelling a cherry picking in progress"));
2772 opts
.action
= REPLAY_PICK
;
2776 if (refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
2777 if (!refs_delete_ref(get_main_ref_store(r
), "", "REVERT_HEAD",
2780 warning(_("cancelling a revert in progress"));
2781 opts
.action
= REPLAY_REVERT
;
2785 unlink(git_path_auto_merge(r
));
2790 if (!have_finished_the_last_pick())
2793 sequencer_remove_state(&opts
);
2796 static void todo_list_write_total_nr(struct todo_list
*todo_list
)
2798 FILE *f
= fopen_or_warn(rebase_path_msgtotal(), "w");
2801 fprintf(f
, "%d\n", todo_list
->total_nr
);
2806 static int read_populate_todo(struct repository
*r
,
2807 struct todo_list
*todo_list
,
2808 struct replay_opts
*opts
)
2810 const char *todo_file
= get_todo_path(opts
);
2813 strbuf_reset(&todo_list
->buf
);
2814 if (strbuf_read_file_or_whine(&todo_list
->buf
, todo_file
) < 0)
2817 res
= todo_list_parse_insn_buffer(r
, todo_list
->buf
.buf
, todo_list
);
2819 if (is_rebase_i(opts
))
2820 return error(_("please fix this using "
2821 "'git rebase --edit-todo'."));
2822 return error(_("unusable instruction sheet: '%s'"), todo_file
);
2825 if (!todo_list
->nr
&&
2826 (!is_rebase_i(opts
) || !file_exists(rebase_path_done())))
2827 return error(_("no commits parsed."));
2829 if (!is_rebase_i(opts
)) {
2830 enum todo_command valid
=
2831 opts
->action
== REPLAY_PICK
? TODO_PICK
: TODO_REVERT
;
2834 for (i
= 0; i
< todo_list
->nr
; i
++)
2835 if (valid
== todo_list
->items
[i
].command
)
2837 else if (valid
== TODO_PICK
)
2838 return error(_("cannot cherry-pick during a revert."));
2840 return error(_("cannot revert during a cherry-pick."));
2843 if (is_rebase_i(opts
)) {
2844 struct todo_list done
= TODO_LIST_INIT
;
2846 if (strbuf_read_file(&done
.buf
, rebase_path_done(), 0) > 0 &&
2847 !todo_list_parse_insn_buffer(r
, done
.buf
.buf
, &done
))
2848 todo_list
->done_nr
= count_commands(&done
);
2850 todo_list
->done_nr
= 0;
2852 todo_list
->total_nr
= todo_list
->done_nr
2853 + count_commands(todo_list
);
2854 todo_list_release(&done
);
2856 todo_list_write_total_nr(todo_list
);
2862 static int git_config_string_dup(char **dest
,
2863 const char *var
, const char *value
)
2866 return config_error_nonbool(var
);
2868 *dest
= xstrdup(value
);
2872 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
2874 struct replay_opts
*opts
= data
;
2879 else if (!strcmp(key
, "options.no-commit"))
2880 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
2881 else if (!strcmp(key
, "options.edit"))
2882 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
2883 else if (!strcmp(key
, "options.allow-empty"))
2885 git_config_bool_or_int(key
, value
, &error_flag
);
2886 else if (!strcmp(key
, "options.allow-empty-message"))
2887 opts
->allow_empty_message
=
2888 git_config_bool_or_int(key
, value
, &error_flag
);
2889 else if (!strcmp(key
, "options.keep-redundant-commits"))
2890 opts
->keep_redundant_commits
=
2891 git_config_bool_or_int(key
, value
, &error_flag
);
2892 else if (!strcmp(key
, "options.signoff"))
2893 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
2894 else if (!strcmp(key
, "options.record-origin"))
2895 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
2896 else if (!strcmp(key
, "options.allow-ff"))
2897 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
2898 else if (!strcmp(key
, "options.mainline"))
2899 opts
->mainline
= git_config_int(key
, value
);
2900 else if (!strcmp(key
, "options.strategy"))
2901 git_config_string_dup(&opts
->strategy
, key
, value
);
2902 else if (!strcmp(key
, "options.gpg-sign"))
2903 git_config_string_dup(&opts
->gpg_sign
, key
, value
);
2904 else if (!strcmp(key
, "options.strategy-option")) {
2905 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
2906 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
2907 } else if (!strcmp(key
, "options.allow-rerere-auto"))
2908 opts
->allow_rerere_auto
=
2909 git_config_bool_or_int(key
, value
, &error_flag
) ?
2910 RERERE_AUTOUPDATE
: RERERE_NOAUTOUPDATE
;
2911 else if (!strcmp(key
, "options.default-msg-cleanup")) {
2912 opts
->explicit_cleanup
= 1;
2913 opts
->default_msg_cleanup
= get_cleanup_mode(value
, 1);
2915 return error(_("invalid key: %s"), key
);
2918 return error(_("invalid value for '%s': '%s'"), key
, value
);
2923 void parse_strategy_opts(struct replay_opts
*opts
, char *raw_opts
)
2927 char *strategy_opts_string
= raw_opts
;
2929 if (*strategy_opts_string
== ' ')
2930 strategy_opts_string
++;
2932 count
= split_cmdline(strategy_opts_string
,
2933 (const char ***)&opts
->xopts
);
2935 die(_("could not split '%s': %s"), strategy_opts_string
,
2936 split_cmdline_strerror(count
));
2937 opts
->xopts_nr
= count
;
2938 for (i
= 0; i
< opts
->xopts_nr
; i
++) {
2939 const char *arg
= opts
->xopts
[i
];
2941 skip_prefix(arg
, "--", &arg
);
2942 opts
->xopts
[i
] = xstrdup(arg
);
2946 static void read_strategy_opts(struct replay_opts
*opts
, struct strbuf
*buf
)
2949 if (!read_oneliner(buf
, rebase_path_strategy(), 0))
2951 free(opts
->strategy
);
2952 opts
->strategy
= strbuf_detach(buf
, NULL
);
2953 if (!read_oneliner(buf
, rebase_path_strategy_opts(), 0))
2956 parse_strategy_opts(opts
, buf
->buf
);
2959 static int read_populate_opts(struct replay_opts
*opts
)
2961 if (is_rebase_i(opts
)) {
2962 struct strbuf buf
= STRBUF_INIT
;
2965 if (read_oneliner(&buf
, rebase_path_gpg_sign_opt(),
2966 READ_ONELINER_SKIP_IF_EMPTY
)) {
2967 if (!starts_with(buf
.buf
, "-S"))
2970 free(opts
->gpg_sign
);
2971 opts
->gpg_sign
= xstrdup(buf
.buf
+ 2);
2976 if (read_oneliner(&buf
, rebase_path_allow_rerere_autoupdate(),
2977 READ_ONELINER_SKIP_IF_EMPTY
)) {
2978 if (!strcmp(buf
.buf
, "--rerere-autoupdate"))
2979 opts
->allow_rerere_auto
= RERERE_AUTOUPDATE
;
2980 else if (!strcmp(buf
.buf
, "--no-rerere-autoupdate"))
2981 opts
->allow_rerere_auto
= RERERE_NOAUTOUPDATE
;
2985 if (file_exists(rebase_path_verbose()))
2988 if (file_exists(rebase_path_quiet()))
2991 if (file_exists(rebase_path_signoff())) {
2996 if (file_exists(rebase_path_cdate_is_adate())) {
2998 opts
->committer_date_is_author_date
= 1;
3001 if (file_exists(rebase_path_ignore_date())) {
3003 opts
->ignore_date
= 1;
3006 if (file_exists(rebase_path_reschedule_failed_exec()))
3007 opts
->reschedule_failed_exec
= 1;
3008 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
3009 opts
->reschedule_failed_exec
= 0;
3011 if (file_exists(rebase_path_drop_redundant_commits()))
3012 opts
->drop_redundant_commits
= 1;
3014 if (file_exists(rebase_path_keep_redundant_commits()))
3015 opts
->keep_redundant_commits
= 1;
3017 read_strategy_opts(opts
, &buf
);
3020 if (read_oneliner(&opts
->current_fixups
,
3021 rebase_path_current_fixups(),
3022 READ_ONELINER_SKIP_IF_EMPTY
)) {
3023 const char *p
= opts
->current_fixups
.buf
;
3024 opts
->current_fixup_count
= 1;
3025 while ((p
= strchr(p
, '\n'))) {
3026 opts
->current_fixup_count
++;
3031 if (read_oneliner(&buf
, rebase_path_squash_onto(), 0)) {
3032 if (get_oid_committish(buf
.buf
, &opts
->squash_onto
) < 0) {
3033 ret
= error(_("unusable squash-onto"));
3036 opts
->have_squash_onto
= 1;
3040 strbuf_release(&buf
);
3044 if (!file_exists(git_path_opts_file()))
3047 * The function git_parse_source(), called from git_config_from_file(),
3048 * may die() in case of a syntactically incorrect file. We do not care
3049 * about this case, though, because we wrote that file ourselves, so we
3050 * are pretty certain that it is syntactically correct.
3052 if (git_config_from_file(populate_opts_cb
, git_path_opts_file(), opts
) < 0)
3053 return error(_("malformed options sheet: '%s'"),
3054 git_path_opts_file());
3058 static void write_strategy_opts(struct replay_opts
*opts
)
3061 struct strbuf buf
= STRBUF_INIT
;
3063 for (i
= 0; i
< opts
->xopts_nr
; ++i
)
3064 strbuf_addf(&buf
, " --%s", opts
->xopts
[i
]);
3066 write_file(rebase_path_strategy_opts(), "%s\n", buf
.buf
);
3067 strbuf_release(&buf
);
3070 int write_basic_state(struct replay_opts
*opts
, const char *head_name
,
3071 struct commit
*onto
, const struct object_id
*orig_head
)
3074 write_file(rebase_path_head_name(), "%s\n", head_name
);
3076 write_file(rebase_path_onto(), "%s\n",
3077 oid_to_hex(&onto
->object
.oid
));
3079 write_file(rebase_path_orig_head(), "%s\n",
3080 oid_to_hex(orig_head
));
3083 write_file(rebase_path_quiet(), "%s", "");
3085 write_file(rebase_path_verbose(), "%s", "");
3087 write_file(rebase_path_strategy(), "%s\n", opts
->strategy
);
3088 if (opts
->xopts_nr
> 0)
3089 write_strategy_opts(opts
);
3091 if (opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
)
3092 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
3093 else if (opts
->allow_rerere_auto
== RERERE_NOAUTOUPDATE
)
3094 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
3097 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts
->gpg_sign
);
3099 write_file(rebase_path_signoff(), "--signoff\n");
3100 if (opts
->drop_redundant_commits
)
3101 write_file(rebase_path_drop_redundant_commits(), "%s", "");
3102 if (opts
->keep_redundant_commits
)
3103 write_file(rebase_path_keep_redundant_commits(), "%s", "");
3104 if (opts
->committer_date_is_author_date
)
3105 write_file(rebase_path_cdate_is_adate(), "%s", "");
3106 if (opts
->ignore_date
)
3107 write_file(rebase_path_ignore_date(), "%s", "");
3108 if (opts
->reschedule_failed_exec
)
3109 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
3111 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
3116 static int walk_revs_populate_todo(struct todo_list
*todo_list
,
3117 struct replay_opts
*opts
)
3119 enum todo_command command
= opts
->action
== REPLAY_PICK
?
3120 TODO_PICK
: TODO_REVERT
;
3121 const char *command_string
= todo_command_info
[command
].str
;
3122 const char *encoding
;
3123 struct commit
*commit
;
3125 if (prepare_revs(opts
))
3128 encoding
= get_log_output_encoding();
3130 while ((commit
= get_revision(opts
->revs
))) {
3131 struct todo_item
*item
= append_new_todo(todo_list
);
3132 const char *commit_buffer
= logmsg_reencode(commit
, NULL
, encoding
);
3133 const char *subject
;
3136 item
->command
= command
;
3137 item
->commit
= commit
;
3138 item
->arg_offset
= 0;
3140 item
->offset_in_buf
= todo_list
->buf
.len
;
3141 subject_len
= find_commit_subject(commit_buffer
, &subject
);
3142 strbuf_addf(&todo_list
->buf
, "%s %s %.*s\n", command_string
,
3143 short_commit_name(commit
), subject_len
, subject
);
3144 unuse_commit_buffer(commit
, commit_buffer
);
3148 return error(_("empty commit set passed"));
3153 static int create_seq_dir(struct repository
*r
)
3155 enum replay_action action
;
3156 const char *in_progress_error
= NULL
;
3157 const char *in_progress_advice
= NULL
;
3158 unsigned int advise_skip
=
3159 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD") ||
3160 refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD");
3162 if (!sequencer_get_last_command(r
, &action
)) {
3165 in_progress_error
= _("revert is already in progress");
3166 in_progress_advice
=
3167 _("try \"git revert (--continue | %s--abort | --quit)\"");
3170 in_progress_error
= _("cherry-pick is already in progress");
3171 in_progress_advice
=
3172 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
3175 BUG("unexpected action in create_seq_dir");
3178 if (in_progress_error
) {
3179 error("%s", in_progress_error
);
3180 if (advice_enabled(ADVICE_SEQUENCER_IN_USE
))
3181 advise(in_progress_advice
,
3182 advise_skip
? "--skip | " : "");
3185 if (mkdir(git_path_seq_dir(), 0777) < 0)
3186 return error_errno(_("could not create sequencer directory '%s'"),
3187 git_path_seq_dir());
3192 static int save_head(const char *head
)
3194 struct lock_file head_lock
= LOCK_INIT
;
3195 struct strbuf buf
= STRBUF_INIT
;
3199 fd
= hold_lock_file_for_update(&head_lock
, git_path_head_file(), 0);
3201 return error_errno(_("could not lock HEAD"));
3202 strbuf_addf(&buf
, "%s\n", head
);
3203 written
= write_in_full(fd
, buf
.buf
, buf
.len
);
3204 strbuf_release(&buf
);
3206 error_errno(_("could not write to '%s'"), git_path_head_file());
3207 rollback_lock_file(&head_lock
);
3210 if (commit_lock_file(&head_lock
) < 0)
3211 return error(_("failed to finalize '%s'"), git_path_head_file());
3215 static int rollback_is_safe(void)
3217 struct strbuf sb
= STRBUF_INIT
;
3218 struct object_id expected_head
, actual_head
;
3220 if (strbuf_read_file(&sb
, git_path_abort_safety_file(), 0) >= 0) {
3222 if (get_oid_hex(sb
.buf
, &expected_head
)) {
3223 strbuf_release(&sb
);
3224 die(_("could not parse %s"), git_path_abort_safety_file());
3226 strbuf_release(&sb
);
3228 else if (errno
== ENOENT
)
3229 oidclr(&expected_head
);
3231 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3233 if (get_oid("HEAD", &actual_head
))
3234 oidclr(&actual_head
);
3236 return oideq(&actual_head
, &expected_head
);
3239 static int reset_merge(const struct object_id
*oid
)
3241 struct child_process cmd
= CHILD_PROCESS_INIT
;
3244 strvec_pushl(&cmd
.args
, "reset", "--merge", NULL
);
3246 if (!is_null_oid(oid
))
3247 strvec_push(&cmd
.args
, oid_to_hex(oid
));
3249 return run_command(&cmd
);
3252 static int rollback_single_pick(struct repository
*r
)
3254 struct object_id head_oid
;
3256 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
3257 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
3258 return error(_("no cherry-pick or revert in progress"));
3259 if (read_ref_full("HEAD", 0, &head_oid
, NULL
))
3260 return error(_("cannot resolve HEAD"));
3261 if (is_null_oid(&head_oid
))
3262 return error(_("cannot abort from a branch yet to be born"));
3263 return reset_merge(&head_oid
);
3266 static int skip_single_pick(void)
3268 struct object_id head
;
3270 if (read_ref_full("HEAD", 0, &head
, NULL
))
3271 return error(_("cannot resolve HEAD"));
3272 return reset_merge(&head
);
3275 int sequencer_rollback(struct repository
*r
, struct replay_opts
*opts
)
3278 struct object_id oid
;
3279 struct strbuf buf
= STRBUF_INIT
;
3282 f
= fopen(git_path_head_file(), "r");
3283 if (!f
&& errno
== ENOENT
) {
3285 * There is no multiple-cherry-pick in progress.
3286 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3287 * a single-cherry-pick in progress, abort that.
3289 return rollback_single_pick(r
);
3292 return error_errno(_("cannot open '%s'"), git_path_head_file());
3293 if (strbuf_getline_lf(&buf
, f
)) {
3294 error(_("cannot read '%s': %s"), git_path_head_file(),
3295 ferror(f
) ? strerror(errno
) : _("unexpected end of file"));
3300 if (parse_oid_hex(buf
.buf
, &oid
, &p
) || *p
!= '\0') {
3301 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
3302 git_path_head_file());
3305 if (is_null_oid(&oid
)) {
3306 error(_("cannot abort from a branch yet to be born"));
3310 if (!rollback_is_safe()) {
3311 /* Do not error, just do not rollback */
3312 warning(_("You seem to have moved HEAD. "
3313 "Not rewinding, check your HEAD!"));
3315 if (reset_merge(&oid
))
3317 strbuf_release(&buf
);
3318 return sequencer_remove_state(opts
);
3320 strbuf_release(&buf
);
3324 int sequencer_skip(struct repository
*r
, struct replay_opts
*opts
)
3326 enum replay_action action
= -1;
3327 sequencer_get_last_command(r
, &action
);
3330 * Check whether the subcommand requested to skip the commit is actually
3331 * in progress and that it's safe to skip the commit.
3333 * opts->action tells us which subcommand requested to skip the commit.
3334 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3335 * action is in progress and we can skip the commit.
3337 * Otherwise we check that the last instruction was related to the
3338 * particular subcommand we're trying to execute and barf if that's not
3341 * Finally we check that the rollback is "safe", i.e., has the HEAD
3342 * moved? In this case, it doesn't make sense to "reset the merge" and
3343 * "skip the commit" as the user already handled this by committing. But
3344 * we'd not want to barf here, instead give advice on how to proceed. We
3345 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3346 * it gets removed when the user commits, so if it still exists we're
3347 * sure the user can't have committed before.
3349 switch (opts
->action
) {
3351 if (!refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
3352 if (action
!= REPLAY_REVERT
)
3353 return error(_("no revert in progress"));
3354 if (!rollback_is_safe())
3359 if (!refs_ref_exists(get_main_ref_store(r
),
3360 "CHERRY_PICK_HEAD")) {
3361 if (action
!= REPLAY_PICK
)
3362 return error(_("no cherry-pick in progress"));
3363 if (!rollback_is_safe())
3368 BUG("unexpected action in sequencer_skip");
3371 if (skip_single_pick())
3372 return error(_("failed to skip the commit"));
3373 if (!is_directory(git_path_seq_dir()))
3376 return sequencer_continue(r
, opts
);
3379 error(_("there is nothing to skip"));
3381 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
)) {
3382 advise(_("have you committed already?\n"
3383 "try \"git %s --continue\""),
3384 action
== REPLAY_REVERT
? "revert" : "cherry-pick");
3389 static int save_todo(struct todo_list
*todo_list
, struct replay_opts
*opts
)
3391 struct lock_file todo_lock
= LOCK_INIT
;
3392 const char *todo_path
= get_todo_path(opts
);
3393 int next
= todo_list
->current
, offset
, fd
;
3396 * rebase -i writes "git-rebase-todo" without the currently executing
3397 * command, appending it to "done" instead.
3399 if (is_rebase_i(opts
))
3402 fd
= hold_lock_file_for_update(&todo_lock
, todo_path
, 0);
3404 return error_errno(_("could not lock '%s'"), todo_path
);
3405 offset
= get_item_line_offset(todo_list
, next
);
3406 if (write_in_full(fd
, todo_list
->buf
.buf
+ offset
,
3407 todo_list
->buf
.len
- offset
) < 0)
3408 return error_errno(_("could not write to '%s'"), todo_path
);
3409 if (commit_lock_file(&todo_lock
) < 0)
3410 return error(_("failed to finalize '%s'"), todo_path
);
3412 if (is_rebase_i(opts
) && next
> 0) {
3413 const char *done
= rebase_path_done();
3414 int fd
= open(done
, O_CREAT
| O_WRONLY
| O_APPEND
, 0666);
3419 if (write_in_full(fd
, get_item_line(todo_list
, next
- 1),
3420 get_item_line_length(todo_list
, next
- 1))
3422 ret
= error_errno(_("could not write to '%s'"), done
);
3424 ret
= error_errno(_("failed to finalize '%s'"), done
);
3430 static int save_opts(struct replay_opts
*opts
)
3432 const char *opts_file
= git_path_opts_file();
3435 if (opts
->no_commit
)
3436 res
|= git_config_set_in_file_gently(opts_file
,
3437 "options.no-commit", "true");
3438 if (opts
->edit
>= 0)
3439 res
|= git_config_set_in_file_gently(opts_file
, "options.edit",
3440 opts
->edit
? "true" : "false");
3441 if (opts
->allow_empty
)
3442 res
|= git_config_set_in_file_gently(opts_file
,
3443 "options.allow-empty", "true");
3444 if (opts
->allow_empty_message
)
3445 res
|= git_config_set_in_file_gently(opts_file
,
3446 "options.allow-empty-message", "true");
3447 if (opts
->keep_redundant_commits
)
3448 res
|= git_config_set_in_file_gently(opts_file
,
3449 "options.keep-redundant-commits", "true");
3451 res
|= git_config_set_in_file_gently(opts_file
,
3452 "options.signoff", "true");
3453 if (opts
->record_origin
)
3454 res
|= git_config_set_in_file_gently(opts_file
,
3455 "options.record-origin", "true");
3457 res
|= git_config_set_in_file_gently(opts_file
,
3458 "options.allow-ff", "true");
3459 if (opts
->mainline
) {
3460 struct strbuf buf
= STRBUF_INIT
;
3461 strbuf_addf(&buf
, "%d", opts
->mainline
);
3462 res
|= git_config_set_in_file_gently(opts_file
,
3463 "options.mainline", buf
.buf
);
3464 strbuf_release(&buf
);
3467 res
|= git_config_set_in_file_gently(opts_file
,
3468 "options.strategy", opts
->strategy
);
3470 res
|= git_config_set_in_file_gently(opts_file
,
3471 "options.gpg-sign", opts
->gpg_sign
);
3474 for (i
= 0; i
< opts
->xopts_nr
; i
++)
3475 res
|= git_config_set_multivar_in_file_gently(opts_file
,
3476 "options.strategy-option",
3477 opts
->xopts
[i
], "^$", 0);
3479 if (opts
->allow_rerere_auto
)
3480 res
|= git_config_set_in_file_gently(opts_file
,
3481 "options.allow-rerere-auto",
3482 opts
->allow_rerere_auto
== RERERE_AUTOUPDATE
?
3485 if (opts
->explicit_cleanup
)
3486 res
|= git_config_set_in_file_gently(opts_file
,
3487 "options.default-msg-cleanup",
3488 describe_cleanup_mode(opts
->default_msg_cleanup
));
3492 static int make_patch(struct repository
*r
,
3493 struct commit
*commit
,
3494 struct replay_opts
*opts
)
3496 struct strbuf buf
= STRBUF_INIT
;
3497 struct rev_info log_tree_opt
;
3498 const char *subject
;
3499 char hex
[GIT_MAX_HEXSZ
+ 1];
3502 oid_to_hex_r(hex
, &commit
->object
.oid
);
3503 if (write_message(hex
, strlen(hex
), rebase_path_stopped_sha(), 1) < 0)
3505 res
|= write_rebase_head(&commit
->object
.oid
);
3507 strbuf_addf(&buf
, "%s/patch", get_dir(opts
));
3508 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
3509 repo_init_revisions(r
, &log_tree_opt
, NULL
);
3510 log_tree_opt
.abbrev
= 0;
3511 log_tree_opt
.diff
= 1;
3512 log_tree_opt
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
3513 log_tree_opt
.disable_stdin
= 1;
3514 log_tree_opt
.no_commit_id
= 1;
3515 log_tree_opt
.diffopt
.file
= fopen(buf
.buf
, "w");
3516 log_tree_opt
.diffopt
.use_color
= GIT_COLOR_NEVER
;
3517 if (!log_tree_opt
.diffopt
.file
)
3518 res
|= error_errno(_("could not open '%s'"), buf
.buf
);
3520 res
|= log_tree_commit(&log_tree_opt
, commit
);
3521 fclose(log_tree_opt
.diffopt
.file
);
3525 strbuf_addf(&buf
, "%s/message", get_dir(opts
));
3526 if (!file_exists(buf
.buf
)) {
3527 const char *encoding
= get_commit_output_encoding();
3528 const char *commit_buffer
= logmsg_reencode(commit
, NULL
, encoding
);
3529 find_commit_subject(commit_buffer
, &subject
);
3530 res
|= write_message(subject
, strlen(subject
), buf
.buf
, 1);
3531 unuse_commit_buffer(commit
, commit_buffer
);
3533 strbuf_release(&buf
);
3534 release_revisions(&log_tree_opt
);
3539 static int intend_to_amend(void)
3541 struct object_id head
;
3544 if (get_oid("HEAD", &head
))
3545 return error(_("cannot read HEAD"));
3547 p
= oid_to_hex(&head
);
3548 return write_message(p
, strlen(p
), rebase_path_amend(), 1);
3551 static int error_with_patch(struct repository
*r
,
3552 struct commit
*commit
,
3553 const char *subject
, int subject_len
,
3554 struct replay_opts
*opts
,
3555 int exit_code
, int to_amend
)
3558 if (make_patch(r
, commit
, opts
))
3560 } else if (copy_file(rebase_path_message(),
3561 git_path_merge_msg(r
), 0666))
3562 return error(_("unable to copy '%s' to '%s'"),
3563 git_path_merge_msg(r
), rebase_path_message());
3566 if (intend_to_amend())
3570 _("You can amend the commit now, with\n"
3572 " git commit --amend %s\n"
3574 "Once you are satisfied with your changes, run\n"
3576 " git rebase --continue\n"),
3577 gpg_sign_opt_quoted(opts
));
3578 } else if (exit_code
) {
3580 fprintf_ln(stderr
, _("Could not apply %s... %.*s"),
3581 short_commit_name(commit
), subject_len
, subject
);
3584 * We don't have the hash of the parent so
3585 * just print the line from the todo file.
3587 fprintf_ln(stderr
, _("Could not merge %.*s"),
3588 subject_len
, subject
);
3594 static int error_failed_squash(struct repository
*r
,
3595 struct commit
*commit
,
3596 struct replay_opts
*opts
,
3598 const char *subject
)
3600 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3601 return error(_("could not copy '%s' to '%s'"),
3602 rebase_path_squash_msg(), rebase_path_message());
3603 unlink(git_path_merge_msg(r
));
3604 if (copy_file(git_path_merge_msg(r
), rebase_path_message(), 0666))
3605 return error(_("could not copy '%s' to '%s'"),
3606 rebase_path_message(),
3607 git_path_merge_msg(r
));
3608 return error_with_patch(r
, commit
, subject
, subject_len
, opts
, 1, 0);
3611 static int do_exec(struct repository
*r
, const char *command_line
)
3613 struct child_process cmd
= CHILD_PROCESS_INIT
;
3616 fprintf(stderr
, _("Executing: %s\n"), command_line
);
3618 strvec_push(&cmd
.args
, command_line
);
3619 status
= run_command(&cmd
);
3621 /* force re-reading of the cache */
3622 discard_index(r
->index
);
3623 if (repo_read_index(r
) < 0)
3624 return error(_("could not read index"));
3626 dirty
= require_clean_work_tree(r
, "rebase", NULL
, 1, 1);
3629 warning(_("execution failed: %s\n%s"
3630 "You can fix the problem, and then run\n"
3632 " git rebase --continue\n"
3635 dirty
? N_("and made changes to the index and/or the "
3636 "working tree\n") : "");
3638 /* command not found */
3641 warning(_("execution succeeded: %s\nbut "
3642 "left changes to the index and/or the working tree\n"
3643 "Commit or stash your changes, and then run\n"
3645 " git rebase --continue\n"
3646 "\n"), command_line
);
3653 __attribute__((format (printf
, 2, 3)))
3654 static int safe_append(const char *filename
, const char *fmt
, ...)
3657 struct lock_file lock
= LOCK_INIT
;
3658 int fd
= hold_lock_file_for_update(&lock
, filename
,
3659 LOCK_REPORT_ON_ERROR
);
3660 struct strbuf buf
= STRBUF_INIT
;
3665 if (strbuf_read_file(&buf
, filename
, 0) < 0 && errno
!= ENOENT
) {
3666 error_errno(_("could not read '%s'"), filename
);
3667 rollback_lock_file(&lock
);
3670 strbuf_complete(&buf
, '\n');
3672 strbuf_vaddf(&buf
, fmt
, ap
);
3675 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
3676 error_errno(_("could not write to '%s'"), filename
);
3677 strbuf_release(&buf
);
3678 rollback_lock_file(&lock
);
3681 if (commit_lock_file(&lock
) < 0) {
3682 strbuf_release(&buf
);
3683 rollback_lock_file(&lock
);
3684 return error(_("failed to finalize '%s'"), filename
);
3687 strbuf_release(&buf
);
3691 static int do_label(struct repository
*r
, const char *name
, int len
)
3693 struct ref_store
*refs
= get_main_ref_store(r
);
3694 struct ref_transaction
*transaction
;
3695 struct strbuf ref_name
= STRBUF_INIT
, err
= STRBUF_INIT
;
3696 struct strbuf msg
= STRBUF_INIT
;
3698 struct object_id head_oid
;
3700 if (len
== 1 && *name
== '#')
3701 return error(_("illegal label name: '%.*s'"), len
, name
);
3703 strbuf_addf(&ref_name
, "refs/rewritten/%.*s", len
, name
);
3704 strbuf_addf(&msg
, "rebase (label) '%.*s'", len
, name
);
3706 transaction
= ref_store_transaction_begin(refs
, &err
);
3708 error("%s", err
.buf
);
3710 } else if (get_oid("HEAD", &head_oid
)) {
3711 error(_("could not read HEAD"));
3713 } else if (ref_transaction_update(transaction
, ref_name
.buf
, &head_oid
,
3714 NULL
, 0, msg
.buf
, &err
) < 0 ||
3715 ref_transaction_commit(transaction
, &err
)) {
3716 error("%s", err
.buf
);
3719 ref_transaction_free(transaction
);
3720 strbuf_release(&err
);
3721 strbuf_release(&msg
);
3724 ret
= safe_append(rebase_path_refs_to_delete(),
3725 "%s\n", ref_name
.buf
);
3726 strbuf_release(&ref_name
);
3731 static const char *sequencer_reflog_action(struct replay_opts
*opts
)
3733 if (!opts
->reflog_action
) {
3734 opts
->reflog_action
= getenv(GIT_REFLOG_ACTION
);
3735 opts
->reflog_action
=
3736 xstrdup(opts
->reflog_action
? opts
->reflog_action
3737 : action_name(opts
));
3740 return opts
->reflog_action
;
3743 __attribute__((format (printf
, 3, 4)))
3744 static const char *reflog_message(struct replay_opts
*opts
,
3745 const char *sub_action
, const char *fmt
, ...)
3748 static struct strbuf buf
= STRBUF_INIT
;
3752 strbuf_addstr(&buf
, sequencer_reflog_action(opts
));
3754 strbuf_addf(&buf
, " (%s)", sub_action
);
3756 strbuf_addstr(&buf
, ": ");
3757 strbuf_vaddf(&buf
, fmt
, ap
);
3764 static struct commit
*lookup_label(struct repository
*r
, const char *label
,
3765 int len
, struct strbuf
*buf
)
3767 struct commit
*commit
;
3768 struct object_id oid
;
3771 strbuf_addf(buf
, "refs/rewritten/%.*s", len
, label
);
3772 if (!read_ref(buf
->buf
, &oid
)) {
3773 commit
= lookup_commit_object(r
, &oid
);
3775 /* fall back to non-rewritten ref or commit */
3776 strbuf_splice(buf
, 0, strlen("refs/rewritten/"), "", 0);
3777 commit
= lookup_commit_reference_by_name(buf
->buf
);
3781 error(_("could not resolve '%s'"), buf
->buf
);
3786 static int do_reset(struct repository
*r
,
3787 const char *name
, int len
,
3788 struct replay_opts
*opts
)
3790 struct strbuf ref_name
= STRBUF_INIT
;
3791 struct object_id oid
;
3792 struct lock_file lock
= LOCK_INIT
;
3793 struct tree_desc desc
= { 0 };
3795 struct unpack_trees_options unpack_tree_opts
= { 0 };
3798 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0)
3801 if (len
== 10 && !strncmp("[new root]", name
, len
)) {
3802 if (!opts
->have_squash_onto
) {
3804 if (commit_tree("", 0, the_hash_algo
->empty_tree
,
3805 NULL
, &opts
->squash_onto
,
3807 return error(_("writing fake root commit"));
3808 opts
->have_squash_onto
= 1;
3809 hex
= oid_to_hex(&opts
->squash_onto
);
3810 if (write_message(hex
, strlen(hex
),
3811 rebase_path_squash_onto(), 0))
3812 return error(_("writing squash-onto"));
3814 oidcpy(&oid
, &opts
->squash_onto
);
3817 struct commit
*commit
;
3819 /* Determine the length of the label */
3820 for (i
= 0; i
< len
; i
++)
3821 if (isspace(name
[i
]))
3825 commit
= lookup_label(r
, name
, len
, &ref_name
);
3830 oid
= commit
->object
.oid
;
3833 setup_unpack_trees_porcelain(&unpack_tree_opts
, "reset");
3834 unpack_tree_opts
.head_idx
= 1;
3835 unpack_tree_opts
.src_index
= r
->index
;
3836 unpack_tree_opts
.dst_index
= r
->index
;
3837 unpack_tree_opts
.fn
= oneway_merge
;
3838 unpack_tree_opts
.merge
= 1;
3839 unpack_tree_opts
.update
= 1;
3840 unpack_tree_opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
3841 unpack_tree_opts
.skip_cache_tree_update
= 1;
3842 init_checkout_metadata(&unpack_tree_opts
.meta
, name
, &oid
, NULL
);
3844 if (repo_read_index_unmerged(r
)) {
3845 ret
= error_resolve_conflict(action_name(opts
));
3849 if (!fill_tree_descriptor(r
, &desc
, &oid
)) {
3850 ret
= error(_("failed to find tree of %s"), oid_to_hex(&oid
));
3854 if (unpack_trees(1, &desc
, &unpack_tree_opts
)) {
3859 tree
= parse_tree_indirect(&oid
);
3860 prime_cache_tree(r
, r
->index
, tree
);
3862 if (write_locked_index(r
->index
, &lock
, COMMIT_LOCK
) < 0)
3863 ret
= error(_("could not write index"));
3866 ret
= update_ref(reflog_message(opts
, "reset", "'%.*s'",
3867 len
, name
), "HEAD", &oid
,
3868 NULL
, 0, UPDATE_REFS_MSG_ON_ERR
);
3870 free((void *)desc
.buffer
);
3872 rollback_lock_file(&lock
);
3873 strbuf_release(&ref_name
);
3874 clear_unpack_trees_porcelain(&unpack_tree_opts
);
3878 static int do_merge(struct repository
*r
,
3879 struct commit
*commit
,
3880 const char *arg
, int arg_len
,
3881 int flags
, int *check_todo
, struct replay_opts
*opts
)
3883 int run_commit_flags
= 0;
3884 struct strbuf ref_name
= STRBUF_INIT
;
3885 struct commit
*head_commit
, *merge_commit
, *i
;
3886 struct commit_list
*bases
, *j
;
3887 struct commit_list
*to_merge
= NULL
, **tail
= &to_merge
;
3888 const char *strategy
= !opts
->xopts_nr
&&
3890 !strcmp(opts
->strategy
, "recursive") ||
3891 !strcmp(opts
->strategy
, "ort")) ?
3892 NULL
: opts
->strategy
;
3893 struct merge_options o
;
3894 int merge_arg_len
, oneline_offset
, can_fast_forward
, ret
, k
;
3895 static struct lock_file lock
;
3898 if (repo_hold_locked_index(r
, &lock
, LOCK_REPORT_ON_ERROR
) < 0) {
3903 head_commit
= lookup_commit_reference_by_name("HEAD");
3905 ret
= error(_("cannot merge without a current revision"));
3910 * For octopus merges, the arg starts with the list of revisions to be
3911 * merged. The list is optionally followed by '#' and the oneline.
3913 merge_arg_len
= oneline_offset
= arg_len
;
3914 for (p
= arg
; p
- arg
< arg_len
; p
+= strspn(p
, " \t\n")) {
3917 if (*p
== '#' && (!p
[1] || isspace(p
[1]))) {
3918 p
+= 1 + strspn(p
+ 1, " \t\n");
3919 oneline_offset
= p
- arg
;
3922 k
= strcspn(p
, " \t\n");
3925 merge_commit
= lookup_label(r
, p
, k
, &ref_name
);
3926 if (!merge_commit
) {
3927 ret
= error(_("unable to parse '%.*s'"), k
, p
);
3930 tail
= &commit_list_insert(merge_commit
, tail
)->next
;
3932 merge_arg_len
= p
- arg
;
3936 ret
= error(_("nothing to merge: '%.*s'"), arg_len
, arg
);
3940 if (opts
->have_squash_onto
&&
3941 oideq(&head_commit
->object
.oid
, &opts
->squash_onto
)) {
3943 * When the user tells us to "merge" something into a
3944 * "[new root]", let's simply fast-forward to the merge head.
3946 rollback_lock_file(&lock
);
3948 ret
= error(_("octopus merge cannot be executed on "
3949 "top of a [new root]"));
3951 ret
= fast_forward_to(r
, &to_merge
->item
->object
.oid
,
3952 &head_commit
->object
.oid
, 0,
3958 * If HEAD is not identical to the first parent of the original merge
3959 * commit, we cannot fast-forward.
3961 can_fast_forward
= opts
->allow_ff
&& commit
&& commit
->parents
&&
3962 oideq(&commit
->parents
->item
->object
.oid
,
3963 &head_commit
->object
.oid
);
3966 * If any merge head is different from the original one, we cannot
3969 if (can_fast_forward
) {
3970 struct commit_list
*p
= commit
->parents
->next
;
3972 for (j
= to_merge
; j
&& p
; j
= j
->next
, p
= p
->next
)
3973 if (!oideq(&j
->item
->object
.oid
,
3974 &p
->item
->object
.oid
)) {
3975 can_fast_forward
= 0;
3979 * If the number of merge heads differs from the original merge
3980 * commit, we cannot fast-forward.
3983 can_fast_forward
= 0;
3986 if (can_fast_forward
) {
3987 rollback_lock_file(&lock
);
3988 ret
= fast_forward_to(r
, &commit
->object
.oid
,
3989 &head_commit
->object
.oid
, 0, opts
);
3990 if (flags
& TODO_EDIT_MERGE_MSG
)
3991 goto fast_forward_edit
;
3997 const char *encoding
= get_commit_output_encoding();
3998 const char *message
= logmsg_reencode(commit
, NULL
, encoding
);
4003 ret
= error(_("could not get commit message of '%s'"),
4004 oid_to_hex(&commit
->object
.oid
));
4007 write_author_script(message
);
4008 find_commit_subject(message
, &body
);
4010 ret
= write_message(body
, len
, git_path_merge_msg(r
), 0);
4011 unuse_commit_buffer(commit
, message
);
4013 error_errno(_("could not write '%s'"),
4014 git_path_merge_msg(r
));
4018 struct strbuf buf
= STRBUF_INIT
;
4021 strbuf_addf(&buf
, "author %s", git_author_info(0));
4022 write_author_script(buf
.buf
);
4025 if (oneline_offset
< arg_len
) {
4026 p
= arg
+ oneline_offset
;
4027 len
= arg_len
- oneline_offset
;
4029 strbuf_addf(&buf
, "Merge %s '%.*s'",
4030 to_merge
->next
? "branches" : "branch",
4031 merge_arg_len
, arg
);
4036 ret
= write_message(p
, len
, git_path_merge_msg(r
), 0);
4037 strbuf_release(&buf
);
4039 error_errno(_("could not write '%s'"),
4040 git_path_merge_msg(r
));
4045 if (strategy
|| to_merge
->next
) {
4047 struct child_process cmd
= CHILD_PROCESS_INIT
;
4049 if (read_env_script(&cmd
.env
)) {
4050 const char *gpg_opt
= gpg_sign_opt_quoted(opts
);
4052 ret
= error(_(staged_changes_advice
), gpg_opt
, gpg_opt
);
4056 if (opts
->committer_date_is_author_date
)
4057 strvec_pushf(&cmd
.env
, "GIT_COMMITTER_DATE=%s",
4060 author_date_from_env(&cmd
.env
));
4061 if (opts
->ignore_date
)
4062 strvec_push(&cmd
.env
, "GIT_AUTHOR_DATE=");
4065 strvec_push(&cmd
.args
, "merge");
4066 strvec_push(&cmd
.args
, "-s");
4068 strvec_push(&cmd
.args
, "octopus");
4070 strvec_push(&cmd
.args
, strategy
);
4071 for (k
= 0; k
< opts
->xopts_nr
; k
++)
4072 strvec_pushf(&cmd
.args
,
4073 "-X%s", opts
->xopts
[k
]);
4075 if (!(flags
& TODO_EDIT_MERGE_MSG
))
4076 strvec_push(&cmd
.args
, "--no-edit");
4078 strvec_push(&cmd
.args
, "--edit");
4079 strvec_push(&cmd
.args
, "--no-ff");
4080 strvec_push(&cmd
.args
, "--no-log");
4081 strvec_push(&cmd
.args
, "--no-stat");
4082 strvec_push(&cmd
.args
, "-F");
4083 strvec_push(&cmd
.args
, git_path_merge_msg(r
));
4085 strvec_pushf(&cmd
.args
, "-S%s", opts
->gpg_sign
);
4087 strvec_push(&cmd
.args
, "--no-gpg-sign");
4089 /* Add the tips to be merged */
4090 for (j
= to_merge
; j
; j
= j
->next
)
4091 strvec_push(&cmd
.args
,
4092 oid_to_hex(&j
->item
->object
.oid
));
4094 strbuf_release(&ref_name
);
4095 refs_delete_ref(get_main_ref_store(r
), "", "CHERRY_PICK_HEAD",
4097 rollback_lock_file(&lock
);
4099 ret
= run_command(&cmd
);
4101 /* force re-reading of the cache */
4103 discard_index(r
->index
);
4104 if (repo_read_index(r
) < 0)
4105 ret
= error(_("could not read index"));
4110 merge_commit
= to_merge
->item
;
4111 bases
= get_merge_bases(head_commit
, merge_commit
);
4112 if (bases
&& oideq(&merge_commit
->object
.oid
,
4113 &bases
->item
->object
.oid
)) {
4115 /* skip merging an ancestor of HEAD */
4119 write_message(oid_to_hex(&merge_commit
->object
.oid
), the_hash_algo
->hexsz
,
4120 git_path_merge_head(r
), 0);
4121 write_message("no-ff", 5, git_path_merge_mode(r
), 0);
4123 bases
= reverse_commit_list(bases
);
4126 init_merge_options(&o
, r
);
4128 o
.branch2
= ref_name
.buf
;
4129 o
.buffer_output
= 2;
4131 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "ort")) {
4133 * TODO: Should use merge_incore_recursive() and
4134 * merge_switch_to_result(), skipping the call to
4135 * merge_switch_to_result() when we don't actually need to
4136 * update the index and working copy immediately.
4138 ret
= merge_ort_recursive(&o
,
4139 head_commit
, merge_commit
, bases
,
4142 ret
= merge_recursive(&o
, head_commit
, merge_commit
, bases
,
4146 fputs(o
.obuf
.buf
, stdout
);
4147 strbuf_release(&o
.obuf
);
4149 error(_("could not even attempt to merge '%.*s'"),
4150 merge_arg_len
, arg
);
4154 * The return value of merge_recursive() is 1 on clean, and 0 on
4157 * Let's reverse that, so that do_merge() returns 0 upon success and
4158 * 1 upon failed merge (keeping the return value -1 for the cases where
4159 * we will want to reschedule the `merge` command).
4163 if (r
->index
->cache_changed
&&
4164 write_locked_index(r
->index
, &lock
, COMMIT_LOCK
)) {
4165 ret
= error(_("merge: Unable to write new index file"));
4169 rollback_lock_file(&lock
);
4171 repo_rerere(r
, opts
->allow_rerere_auto
);
4174 * In case of problems, we now want to return a positive
4175 * value (a negative one would indicate that the `merge`
4176 * command needs to be rescheduled).
4178 ret
= !!run_git_commit(git_path_merge_msg(r
), opts
,
4181 if (!ret
&& flags
& TODO_EDIT_MERGE_MSG
) {
4184 run_commit_flags
|= AMEND_MSG
| EDIT_MSG
| VERIFY_MSG
;
4185 ret
= !!run_git_commit(NULL
, opts
, run_commit_flags
);
4190 strbuf_release(&ref_name
);
4191 rollback_lock_file(&lock
);
4192 free_commit_list(to_merge
);
4196 static int write_update_refs_state(struct string_list
*refs_to_oids
)
4199 struct lock_file lock
= LOCK_INIT
;
4201 struct string_list_item
*item
;
4204 path
= rebase_path_update_refs(the_repository
->gitdir
);
4206 if (!refs_to_oids
->nr
) {
4207 if (unlink(path
) && errno
!= ENOENT
)
4208 result
= error_errno(_("could not unlink: %s"), path
);
4212 if (safe_create_leading_directories(path
)) {
4213 result
= error(_("unable to create leading directories of %s"),
4218 if (hold_lock_file_for_update(&lock
, path
, 0) < 0) {
4219 result
= error(_("another 'rebase' process appears to be running; "
4220 "'%s.lock' already exists"),
4225 fp
= fdopen_lock_file(&lock
, "w");
4227 result
= error_errno(_("could not open '%s' for writing"), path
);
4228 rollback_lock_file(&lock
);
4232 for_each_string_list_item(item
, refs_to_oids
) {
4233 struct update_ref_record
*rec
= item
->util
;
4234 fprintf(fp
, "%s\n%s\n%s\n", item
->string
,
4235 oid_to_hex(&rec
->before
), oid_to_hex(&rec
->after
));
4238 result
= commit_lock_file(&lock
);
4246 * Parse the update-refs file for the current rebase, then remove the
4247 * refs that do not appear in the todo_list (and have not had updated
4248 * values stored) and add refs that are in the todo_list but not
4249 * represented in the update-refs file.
4251 * If there are changes to the update-refs list, then write the new state
4254 void todo_list_filter_update_refs(struct repository
*r
,
4255 struct todo_list
*todo_list
)
4259 struct string_list update_refs
= STRING_LIST_INIT_DUP
;
4261 sequencer_get_update_refs_state(r
->gitdir
, &update_refs
);
4264 * For each item in the update_refs list, if it has no updated
4265 * value and does not appear in the todo_list, then remove it
4266 * from the update_refs list.
4268 for (i
= 0; i
< update_refs
.nr
; i
++) {
4271 const char *ref
= update_refs
.items
[i
].string
;
4272 size_t reflen
= strlen(ref
);
4273 struct update_ref_record
*rec
= update_refs
.items
[i
].util
;
4275 /* OID already stored as updated. */
4276 if (!is_null_oid(&rec
->after
))
4279 for (j
= 0; !found
&& j
< todo_list
->total_nr
; j
++) {
4280 struct todo_item
*item
= &todo_list
->items
[j
];
4281 const char *arg
= todo_list
->buf
.buf
+ item
->arg_offset
;
4283 if (item
->command
!= TODO_UPDATE_REF
)
4286 if (item
->arg_len
!= reflen
||
4287 strncmp(arg
, ref
, reflen
))
4294 free(update_refs
.items
[i
].string
);
4295 free(update_refs
.items
[i
].util
);
4298 MOVE_ARRAY(update_refs
.items
+ i
, update_refs
.items
+ i
+ 1, update_refs
.nr
- i
);
4306 * For each todo_item, check if its ref is in the update_refs list.
4307 * If not, then add it as an un-updated ref.
4309 for (i
= 0; i
< todo_list
->total_nr
; i
++) {
4310 struct todo_item
*item
= &todo_list
->items
[i
];
4311 const char *arg
= todo_list
->buf
.buf
+ item
->arg_offset
;
4314 if (item
->command
!= TODO_UPDATE_REF
)
4317 for (j
= 0; !found
&& j
< update_refs
.nr
; j
++) {
4318 const char *ref
= update_refs
.items
[j
].string
;
4320 found
= strlen(ref
) == item
->arg_len
&&
4321 !strncmp(ref
, arg
, item
->arg_len
);
4325 struct string_list_item
*inserted
;
4326 struct strbuf argref
= STRBUF_INIT
;
4328 strbuf_add(&argref
, arg
, item
->arg_len
);
4329 inserted
= string_list_insert(&update_refs
, argref
.buf
);
4330 inserted
->util
= init_update_ref_record(argref
.buf
);
4331 strbuf_release(&argref
);
4337 write_update_refs_state(&update_refs
);
4338 string_list_clear(&update_refs
, 1);
4341 static int do_update_ref(struct repository
*r
, const char *refname
)
4343 struct string_list_item
*item
;
4344 struct string_list list
= STRING_LIST_INIT_DUP
;
4346 if (sequencer_get_update_refs_state(r
->gitdir
, &list
))
4349 for_each_string_list_item(item
, &list
) {
4350 if (!strcmp(item
->string
, refname
)) {
4351 struct update_ref_record
*rec
= item
->util
;
4352 if (read_ref("HEAD", &rec
->after
))
4358 write_update_refs_state(&list
);
4359 string_list_clear(&list
, 1);
4363 static int do_update_refs(struct repository
*r
, int quiet
)
4366 struct string_list_item
*item
;
4367 struct string_list refs_to_oids
= STRING_LIST_INIT_DUP
;
4368 struct ref_store
*refs
= get_main_ref_store(r
);
4369 struct strbuf update_msg
= STRBUF_INIT
;
4370 struct strbuf error_msg
= STRBUF_INIT
;
4372 if ((res
= sequencer_get_update_refs_state(r
->gitdir
, &refs_to_oids
)))
4375 for_each_string_list_item(item
, &refs_to_oids
) {
4376 struct update_ref_record
*rec
= item
->util
;
4379 loop_res
= refs_update_ref(refs
, "rewritten during rebase",
4381 &rec
->after
, &rec
->before
,
4382 0, UPDATE_REFS_MSG_ON_ERR
);
4389 strbuf_addf(&error_msg
, "\t%s\n", item
->string
);
4391 strbuf_addf(&update_msg
, "\t%s\n", item
->string
);
4395 (update_msg
.len
|| error_msg
.len
)) {
4397 _("Updated the following refs with %s:\n%s"),
4403 _("Failed to update the following refs with %s:\n%s"),
4408 string_list_clear(&refs_to_oids
, 1);
4409 strbuf_release(&update_msg
);
4410 strbuf_release(&error_msg
);
4414 static int is_final_fixup(struct todo_list
*todo_list
)
4416 int i
= todo_list
->current
;
4418 if (!is_fixup(todo_list
->items
[i
].command
))
4421 while (++i
< todo_list
->nr
)
4422 if (is_fixup(todo_list
->items
[i
].command
))
4424 else if (!is_noop(todo_list
->items
[i
].command
))
4429 static enum todo_command
peek_command(struct todo_list
*todo_list
, int offset
)
4433 for (i
= todo_list
->current
+ offset
; i
< todo_list
->nr
; i
++)
4434 if (!is_noop(todo_list
->items
[i
].command
))
4435 return todo_list
->items
[i
].command
;
4440 void create_autostash(struct repository
*r
, const char *path
)
4442 struct strbuf buf
= STRBUF_INIT
;
4443 struct lock_file lock_file
= LOCK_INIT
;
4446 fd
= repo_hold_locked_index(r
, &lock_file
, 0);
4447 refresh_index(r
->index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
4449 repo_update_index_if_able(r
, &lock_file
);
4450 rollback_lock_file(&lock_file
);
4452 if (has_unstaged_changes(r
, 1) ||
4453 has_uncommitted_changes(r
, 1)) {
4454 struct child_process stash
= CHILD_PROCESS_INIT
;
4455 struct reset_head_opts ropts
= { .flags
= RESET_HEAD_HARD
};
4456 struct object_id oid
;
4458 strvec_pushl(&stash
.args
,
4459 "stash", "create", "autostash", NULL
);
4463 if (capture_command(&stash
, &buf
, GIT_MAX_HEXSZ
))
4464 die(_("Cannot autostash"));
4465 strbuf_trim_trailing_newline(&buf
);
4466 if (get_oid(buf
.buf
, &oid
))
4467 die(_("Unexpected stash response: '%s'"),
4470 strbuf_add_unique_abbrev(&buf
, &oid
, DEFAULT_ABBREV
);
4472 if (safe_create_leading_directories_const(path
))
4473 die(_("Could not create directory for '%s'"),
4475 write_file(path
, "%s", oid_to_hex(&oid
));
4476 printf(_("Created autostash: %s\n"), buf
.buf
);
4477 if (reset_head(r
, &ropts
) < 0)
4478 die(_("could not reset --hard"));
4479 discard_index(r
->index
);
4480 if (repo_read_index(r
) < 0)
4481 die(_("could not read index"));
4483 strbuf_release(&buf
);
4486 static int apply_save_autostash_oid(const char *stash_oid
, int attempt_apply
)
4488 struct child_process child
= CHILD_PROCESS_INIT
;
4491 if (attempt_apply
) {
4493 child
.no_stdout
= 1;
4494 child
.no_stderr
= 1;
4495 strvec_push(&child
.args
, "stash");
4496 strvec_push(&child
.args
, "apply");
4497 strvec_push(&child
.args
, stash_oid
);
4498 ret
= run_command(&child
);
4501 if (attempt_apply
&& !ret
)
4502 fprintf(stderr
, _("Applied autostash.\n"));
4504 struct child_process store
= CHILD_PROCESS_INIT
;
4507 strvec_push(&store
.args
, "stash");
4508 strvec_push(&store
.args
, "store");
4509 strvec_push(&store
.args
, "-m");
4510 strvec_push(&store
.args
, "autostash");
4511 strvec_push(&store
.args
, "-q");
4512 strvec_push(&store
.args
, stash_oid
);
4513 if (run_command(&store
))
4514 ret
= error(_("cannot store %s"), stash_oid
);
4518 "Your changes are safe in the stash.\n"
4519 "You can run \"git stash pop\" or"
4520 " \"git stash drop\" at any time.\n"),
4522 _("Applying autostash resulted in conflicts.") :
4523 _("Autostash exists; creating a new stash entry."));
4529 static int apply_save_autostash(const char *path
, int attempt_apply
)
4531 struct strbuf stash_oid
= STRBUF_INIT
;
4534 if (!read_oneliner(&stash_oid
, path
,
4535 READ_ONELINER_SKIP_IF_EMPTY
)) {
4536 strbuf_release(&stash_oid
);
4539 strbuf_trim(&stash_oid
);
4541 ret
= apply_save_autostash_oid(stash_oid
.buf
, attempt_apply
);
4544 strbuf_release(&stash_oid
);
4548 int save_autostash(const char *path
)
4550 return apply_save_autostash(path
, 0);
4553 int apply_autostash(const char *path
)
4555 return apply_save_autostash(path
, 1);
4558 int apply_autostash_oid(const char *stash_oid
)
4560 return apply_save_autostash_oid(stash_oid
, 1);
4563 static int checkout_onto(struct repository
*r
, struct replay_opts
*opts
,
4564 const char *onto_name
, const struct object_id
*onto
,
4565 const struct object_id
*orig_head
)
4567 struct reset_head_opts ropts
= {
4569 .orig_head
= orig_head
,
4570 .flags
= RESET_HEAD_DETACH
| RESET_ORIG_HEAD
|
4571 RESET_HEAD_RUN_POST_CHECKOUT_HOOK
,
4572 .head_msg
= reflog_message(opts
, "start", "checkout %s",
4574 .default_reflog_action
= sequencer_reflog_action(opts
)
4576 if (reset_head(r
, &ropts
)) {
4577 apply_autostash(rebase_path_autostash());
4578 sequencer_remove_state(opts
);
4579 return error(_("could not detach HEAD"));
4585 static int stopped_at_head(struct repository
*r
)
4587 struct object_id head
;
4588 struct commit
*commit
;
4589 struct commit_message message
;
4591 if (get_oid("HEAD", &head
) ||
4592 !(commit
= lookup_commit(r
, &head
)) ||
4593 parse_commit(commit
) || get_message(commit
, &message
))
4594 fprintf(stderr
, _("Stopped at HEAD\n"));
4596 fprintf(stderr
, _("Stopped at %s\n"), message
.label
);
4597 free_message(commit
, &message
);
4603 static int reread_todo_if_changed(struct repository
*r
,
4604 struct todo_list
*todo_list
,
4605 struct replay_opts
*opts
)
4608 struct strbuf buf
= STRBUF_INIT
;
4610 if (strbuf_read_file_or_whine(&buf
, get_todo_path(opts
)) < 0)
4612 offset
= get_item_line_offset(todo_list
, todo_list
->current
+ 1);
4613 if (buf
.len
!= todo_list
->buf
.len
- offset
||
4614 memcmp(buf
.buf
, todo_list
->buf
.buf
+ offset
, buf
.len
)) {
4615 /* Reread the todo file if it has changed. */
4616 todo_list_release(todo_list
);
4617 if (read_populate_todo(r
, todo_list
, opts
))
4618 return -1; /* message was printed */
4619 /* `current` will be incremented on return */
4620 todo_list
->current
= -1;
4622 strbuf_release(&buf
);
4627 static const char rescheduled_advice
[] =
4628 N_("Could not execute the todo command\n"
4632 "It has been rescheduled; To edit the command before continuing, please\n"
4633 "edit the todo list first:\n"
4635 " git rebase --edit-todo\n"
4636 " git rebase --continue\n");
4638 static int pick_commits(struct repository
*r
,
4639 struct todo_list
*todo_list
,
4640 struct replay_opts
*opts
)
4642 int res
= 0, reschedule
= 0;
4644 opts
->reflog_message
= sequencer_reflog_action(opts
);
4646 assert(!(opts
->signoff
|| opts
->no_commit
||
4647 opts
->record_origin
|| should_edit(opts
) ||
4648 opts
->committer_date_is_author_date
||
4649 opts
->ignore_date
));
4650 if (read_and_refresh_cache(r
, opts
))
4653 while (todo_list
->current
< todo_list
->nr
) {
4654 struct todo_item
*item
= todo_list
->items
+ todo_list
->current
;
4655 const char *arg
= todo_item_get_arg(todo_list
, item
);
4658 if (save_todo(todo_list
, opts
))
4660 if (is_rebase_i(opts
)) {
4661 if (item
->command
!= TODO_COMMENT
) {
4662 FILE *f
= fopen(rebase_path_msgnum(), "w");
4664 todo_list
->done_nr
++;
4667 fprintf(f
, "%d\n", todo_list
->done_nr
);
4671 fprintf(stderr
, _("Rebasing (%d/%d)%s"),
4673 todo_list
->total_nr
,
4674 opts
->verbose
? "\n" : "\r");
4676 unlink(rebase_path_message());
4677 unlink(rebase_path_author_script());
4678 unlink(rebase_path_stopped_sha());
4679 unlink(rebase_path_amend());
4680 unlink(git_path_merge_head(r
));
4681 unlink(git_path_auto_merge(r
));
4682 delete_ref(NULL
, "REBASE_HEAD", NULL
, REF_NO_DEREF
);
4684 if (item
->command
== TODO_BREAK
) {
4687 return stopped_at_head(r
);
4690 if (item
->command
<= TODO_SQUASH
) {
4691 if (is_rebase_i(opts
))
4692 opts
->reflog_message
= reflog_message(opts
,
4693 command_to_string(item
->command
), NULL
);
4695 res
= do_pick_commit(r
, item
, opts
,
4696 is_final_fixup(todo_list
),
4698 if (is_rebase_i(opts
) && res
< 0) {
4700 advise(_(rescheduled_advice
),
4701 get_item_line_length(todo_list
,
4702 todo_list
->current
),
4703 get_item_line(todo_list
,
4704 todo_list
->current
));
4705 todo_list
->current
--;
4706 if (save_todo(todo_list
, opts
))
4709 if (item
->command
== TODO_EDIT
) {
4710 struct commit
*commit
= item
->commit
;
4715 _("Stopped at %s... %.*s\n"),
4716 short_commit_name(commit
),
4717 item
->arg_len
, arg
);
4719 return error_with_patch(r
, commit
,
4720 arg
, item
->arg_len
, opts
, res
, !res
);
4722 if (is_rebase_i(opts
) && !res
)
4723 record_in_rewritten(&item
->commit
->object
.oid
,
4724 peek_command(todo_list
, 1));
4725 if (res
&& is_fixup(item
->command
)) {
4728 return error_failed_squash(r
, item
->commit
, opts
,
4729 item
->arg_len
, arg
);
4730 } else if (res
&& is_rebase_i(opts
) && item
->commit
) {
4732 struct object_id oid
;
4735 * If we are rewording and have either
4736 * fast-forwarded already, or are about to
4737 * create a new root commit, we want to amend,
4738 * otherwise we do not.
4740 if (item
->command
== TODO_REWORD
&&
4741 !get_oid("HEAD", &oid
) &&
4742 (oideq(&item
->commit
->object
.oid
, &oid
) ||
4743 (opts
->have_squash_onto
&&
4744 oideq(&opts
->squash_onto
, &oid
))))
4747 return res
| error_with_patch(r
, item
->commit
,
4748 arg
, item
->arg_len
, opts
,
4751 } else if (item
->command
== TODO_EXEC
) {
4752 char *end_of_arg
= (char *)(arg
+ item
->arg_len
);
4753 int saved
= *end_of_arg
;
4758 res
= do_exec(r
, arg
);
4759 *end_of_arg
= saved
;
4762 if (opts
->reschedule_failed_exec
)
4766 } else if (item
->command
== TODO_LABEL
) {
4767 if ((res
= do_label(r
, arg
, item
->arg_len
)))
4769 } else if (item
->command
== TODO_RESET
) {
4770 if ((res
= do_reset(r
, arg
, item
->arg_len
, opts
)))
4772 } else if (item
->command
== TODO_MERGE
) {
4773 if ((res
= do_merge(r
, item
->commit
, arg
, item
->arg_len
,
4774 item
->flags
, &check_todo
, opts
)) < 0)
4776 else if (item
->commit
)
4777 record_in_rewritten(&item
->commit
->object
.oid
,
4778 peek_command(todo_list
, 1));
4780 /* failed with merge conflicts */
4781 return error_with_patch(r
, item
->commit
,
4784 } else if (item
->command
== TODO_UPDATE_REF
) {
4785 struct strbuf ref
= STRBUF_INIT
;
4786 strbuf_add(&ref
, arg
, item
->arg_len
);
4787 if ((res
= do_update_ref(r
, ref
.buf
)))
4789 strbuf_release(&ref
);
4790 } else if (!is_noop(item
->command
))
4791 return error(_("unknown command %d"), item
->command
);
4794 advise(_(rescheduled_advice
),
4795 get_item_line_length(todo_list
,
4796 todo_list
->current
),
4797 get_item_line(todo_list
, todo_list
->current
));
4798 todo_list
->current
--;
4799 if (save_todo(todo_list
, opts
))
4802 return error_with_patch(r
,
4806 } else if (is_rebase_i(opts
) && check_todo
&& !res
&&
4807 reread_todo_if_changed(r
, todo_list
, opts
)) {
4811 todo_list
->current
++;
4816 if (is_rebase_i(opts
)) {
4817 struct strbuf head_ref
= STRBUF_INIT
, buf
= STRBUF_INIT
;
4820 /* Stopped in the middle, as planned? */
4821 if (todo_list
->current
< todo_list
->nr
)
4824 if (read_oneliner(&head_ref
, rebase_path_head_name(), 0) &&
4825 starts_with(head_ref
.buf
, "refs/")) {
4827 struct object_id head
, orig
;
4830 if (get_oid("HEAD", &head
)) {
4831 res
= error(_("cannot read HEAD"));
4833 strbuf_release(&head_ref
);
4834 strbuf_release(&buf
);
4837 if (!read_oneliner(&buf
, rebase_path_orig_head(), 0) ||
4838 get_oid_hex(buf
.buf
, &orig
)) {
4839 res
= error(_("could not read orig-head"));
4840 goto cleanup_head_ref
;
4843 if (!read_oneliner(&buf
, rebase_path_onto(), 0)) {
4844 res
= error(_("could not read 'onto'"));
4845 goto cleanup_head_ref
;
4847 msg
= reflog_message(opts
, "finish", "%s onto %s",
4848 head_ref
.buf
, buf
.buf
);
4849 if (update_ref(msg
, head_ref
.buf
, &head
, &orig
,
4850 REF_NO_DEREF
, UPDATE_REFS_MSG_ON_ERR
)) {
4851 res
= error(_("could not update %s"),
4853 goto cleanup_head_ref
;
4855 msg
= reflog_message(opts
, "finish", "returning to %s",
4857 if (create_symref("HEAD", head_ref
.buf
, msg
)) {
4858 res
= error(_("could not update HEAD to %s"),
4860 goto cleanup_head_ref
;
4865 if (opts
->verbose
) {
4866 struct rev_info log_tree_opt
;
4867 struct object_id orig
, head
;
4869 memset(&log_tree_opt
, 0, sizeof(log_tree_opt
));
4870 repo_init_revisions(r
, &log_tree_opt
, NULL
);
4871 log_tree_opt
.diff
= 1;
4872 log_tree_opt
.diffopt
.output_format
=
4873 DIFF_FORMAT_DIFFSTAT
;
4874 log_tree_opt
.disable_stdin
= 1;
4876 if (read_oneliner(&buf
, rebase_path_orig_head(), 0) &&
4877 !get_oid(buf
.buf
, &orig
) &&
4878 !get_oid("HEAD", &head
)) {
4879 diff_tree_oid(&orig
, &head
, "",
4880 &log_tree_opt
.diffopt
);
4881 log_tree_diff_flush(&log_tree_opt
);
4883 release_revisions(&log_tree_opt
);
4885 flush_rewritten_pending();
4886 if (!stat(rebase_path_rewritten_list(), &st
) &&
4888 struct child_process child
= CHILD_PROCESS_INIT
;
4889 struct run_hooks_opt hook_opt
= RUN_HOOKS_OPT_INIT
;
4891 child
.in
= open(rebase_path_rewritten_list(), O_RDONLY
);
4893 strvec_push(&child
.args
, "notes");
4894 strvec_push(&child
.args
, "copy");
4895 strvec_push(&child
.args
, "--for-rewrite=rebase");
4896 /* we don't care if this copying failed */
4897 run_command(&child
);
4899 hook_opt
.path_to_stdin
= rebase_path_rewritten_list();
4900 strvec_push(&hook_opt
.args
, "rebase");
4901 run_hooks_opt("post-rewrite", &hook_opt
);
4903 apply_autostash(rebase_path_autostash());
4909 _("Successfully rebased and updated %s.\n"),
4913 strbuf_release(&buf
);
4914 strbuf_release(&head_ref
);
4916 if (do_update_refs(r
, opts
->quiet
))
4921 * Sequence of picks finished successfully; cleanup by
4922 * removing the .git/sequencer directory
4924 return sequencer_remove_state(opts
);
4927 static int continue_single_pick(struct repository
*r
, struct replay_opts
*opts
)
4929 struct child_process cmd
= CHILD_PROCESS_INIT
;
4931 if (!refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD") &&
4932 !refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD"))
4933 return error(_("no cherry-pick or revert in progress"));
4936 strvec_push(&cmd
.args
, "commit");
4939 * continue_single_pick() handles the case of recovering from a
4940 * conflict. should_edit() doesn't handle that case; for a conflict,
4941 * we want to edit if the user asked for it, or if they didn't specify
4942 * and stdin is a tty.
4944 if (!opts
->edit
|| (opts
->edit
< 0 && !isatty(0)))
4946 * Include --cleanup=strip as well because we don't want the
4947 * "# Conflicts:" messages.
4949 strvec_pushl(&cmd
.args
, "--no-edit", "--cleanup=strip", NULL
);
4951 return run_command(&cmd
);
4954 static int commit_staged_changes(struct repository
*r
,
4955 struct replay_opts
*opts
,
4956 struct todo_list
*todo_list
)
4958 unsigned int flags
= ALLOW_EMPTY
| EDIT_MSG
;
4959 unsigned int final_fixup
= 0, is_clean
;
4961 if (has_unstaged_changes(r
, 1))
4962 return error(_("cannot rebase: You have unstaged changes."));
4964 is_clean
= !has_uncommitted_changes(r
, 0);
4966 if (file_exists(rebase_path_amend())) {
4967 struct strbuf rev
= STRBUF_INIT
;
4968 struct object_id head
, to_amend
;
4970 if (get_oid("HEAD", &head
))
4971 return error(_("cannot amend non-existing commit"));
4972 if (!read_oneliner(&rev
, rebase_path_amend(), 0))
4973 return error(_("invalid file: '%s'"), rebase_path_amend());
4974 if (get_oid_hex(rev
.buf
, &to_amend
))
4975 return error(_("invalid contents: '%s'"),
4976 rebase_path_amend());
4977 if (!is_clean
&& !oideq(&head
, &to_amend
))
4978 return error(_("\nYou have uncommitted changes in your "
4979 "working tree. Please, commit them\n"
4980 "first and then run 'git rebase "
4981 "--continue' again."));
4983 * When skipping a failed fixup/squash, we need to edit the
4984 * commit message, the current fixup list and count, and if it
4985 * was the last fixup/squash in the chain, we need to clean up
4986 * the commit message and if there was a squash, let the user
4989 if (!is_clean
|| !opts
->current_fixup_count
)
4990 ; /* this is not the final fixup */
4991 else if (!oideq(&head
, &to_amend
) ||
4992 !file_exists(rebase_path_stopped_sha())) {
4993 /* was a final fixup or squash done manually? */
4994 if (!is_fixup(peek_command(todo_list
, 0))) {
4995 unlink(rebase_path_fixup_msg());
4996 unlink(rebase_path_squash_msg());
4997 unlink(rebase_path_current_fixups());
4998 strbuf_reset(&opts
->current_fixups
);
4999 opts
->current_fixup_count
= 0;
5002 /* we are in a fixup/squash chain */
5003 const char *p
= opts
->current_fixups
.buf
;
5004 int len
= opts
->current_fixups
.len
;
5006 opts
->current_fixup_count
--;
5008 BUG("Incorrect current_fixups:\n%s", p
);
5009 while (len
&& p
[len
- 1] != '\n')
5011 strbuf_setlen(&opts
->current_fixups
, len
);
5012 if (write_message(p
, len
, rebase_path_current_fixups(),
5014 return error(_("could not write file: '%s'"),
5015 rebase_path_current_fixups());
5018 * If a fixup/squash in a fixup/squash chain failed, the
5019 * commit message is already correct, no need to commit
5022 * Only if it is the final command in the fixup/squash
5023 * chain, and only if the chain is longer than a single
5024 * fixup/squash command (which was just skipped), do we
5025 * actually need to re-commit with a cleaned up commit
5028 if (opts
->current_fixup_count
> 0 &&
5029 !is_fixup(peek_command(todo_list
, 0))) {
5032 * If there was not a single "squash" in the
5033 * chain, we only need to clean up the commit
5034 * message, no need to bother the user with
5035 * opening the commit message in the editor.
5037 if (!starts_with(p
, "squash ") &&
5038 !strstr(p
, "\nsquash "))
5039 flags
= (flags
& ~EDIT_MSG
) | CLEANUP_MSG
;
5040 } else if (is_fixup(peek_command(todo_list
, 0))) {
5042 * We need to update the squash message to skip
5043 * the latest commit message.
5045 struct commit
*commit
;
5046 const char *path
= rebase_path_squash_msg();
5047 const char *encoding
= get_commit_output_encoding();
5049 if (parse_head(r
, &commit
) ||
5050 !(p
= logmsg_reencode(commit
, NULL
, encoding
)) ||
5051 write_message(p
, strlen(p
), path
, 0)) {
5052 unuse_commit_buffer(commit
, p
);
5053 return error(_("could not write file: "
5056 unuse_commit_buffer(commit
, p
);
5060 strbuf_release(&rev
);
5065 if (refs_ref_exists(get_main_ref_store(r
),
5066 "CHERRY_PICK_HEAD") &&
5067 refs_delete_ref(get_main_ref_store(r
), "",
5068 "CHERRY_PICK_HEAD", NULL
, 0))
5069 return error(_("could not remove CHERRY_PICK_HEAD"));
5070 if (unlink(git_path_merge_msg(r
)) && errno
!= ENOENT
)
5071 return error_errno(_("could not remove '%s'"),
5072 git_path_merge_msg(r
));
5077 if (run_git_commit(final_fixup
? NULL
: rebase_path_message(),
5079 return error(_("could not commit staged changes."));
5080 unlink(rebase_path_amend());
5081 unlink(git_path_merge_head(r
));
5082 unlink(git_path_auto_merge(r
));
5084 unlink(rebase_path_fixup_msg());
5085 unlink(rebase_path_squash_msg());
5087 if (opts
->current_fixup_count
> 0) {
5089 * Whether final fixup or not, we just cleaned up the commit
5092 unlink(rebase_path_current_fixups());
5093 strbuf_reset(&opts
->current_fixups
);
5094 opts
->current_fixup_count
= 0;
5099 int sequencer_continue(struct repository
*r
, struct replay_opts
*opts
)
5101 struct todo_list todo_list
= TODO_LIST_INIT
;
5104 if (read_and_refresh_cache(r
, opts
))
5107 if (read_populate_opts(opts
))
5109 if (is_rebase_i(opts
)) {
5110 if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
5111 goto release_todo_list
;
5113 if (file_exists(rebase_path_dropped())) {
5114 if ((res
= todo_list_check_against_backup(r
, &todo_list
)))
5115 goto release_todo_list
;
5117 unlink(rebase_path_dropped());
5120 opts
->reflog_message
= reflog_message(opts
, "continue", NULL
);
5121 if (commit_staged_changes(r
, opts
, &todo_list
)) {
5123 goto release_todo_list
;
5125 } else if (!file_exists(get_todo_path(opts
)))
5126 return continue_single_pick(r
, opts
);
5127 else if ((res
= read_populate_todo(r
, &todo_list
, opts
)))
5128 goto release_todo_list
;
5130 if (!is_rebase_i(opts
)) {
5131 /* Verify that the conflict has been resolved */
5132 if (refs_ref_exists(get_main_ref_store(r
),
5133 "CHERRY_PICK_HEAD") ||
5134 refs_ref_exists(get_main_ref_store(r
), "REVERT_HEAD")) {
5135 res
= continue_single_pick(r
, opts
);
5137 goto release_todo_list
;
5139 if (index_differs_from(r
, "HEAD", NULL
, 0)) {
5140 res
= error_dirty_index(r
, opts
);
5141 goto release_todo_list
;
5143 todo_list
.current
++;
5144 } else if (file_exists(rebase_path_stopped_sha())) {
5145 struct strbuf buf
= STRBUF_INIT
;
5146 struct object_id oid
;
5148 if (read_oneliner(&buf
, rebase_path_stopped_sha(),
5149 READ_ONELINER_SKIP_IF_EMPTY
) &&
5150 !get_oid_hex(buf
.buf
, &oid
))
5151 record_in_rewritten(&oid
, peek_command(&todo_list
, 0));
5152 strbuf_release(&buf
);
5155 res
= pick_commits(r
, &todo_list
, opts
);
5157 todo_list_release(&todo_list
);
5161 static int single_pick(struct repository
*r
,
5162 struct commit
*cmit
,
5163 struct replay_opts
*opts
)
5166 struct todo_item item
;
5168 item
.command
= opts
->action
== REPLAY_PICK
?
5169 TODO_PICK
: TODO_REVERT
;
5172 opts
->reflog_message
= sequencer_reflog_action(opts
);
5173 return do_pick_commit(r
, &item
, opts
, 0, &check_todo
);
5176 int sequencer_pick_revisions(struct repository
*r
,
5177 struct replay_opts
*opts
)
5179 struct todo_list todo_list
= TODO_LIST_INIT
;
5180 struct object_id oid
;
5184 if (read_and_refresh_cache(r
, opts
))
5187 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
5188 struct object_id oid
;
5189 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
5191 /* This happens when using --stdin. */
5195 if (!get_oid(name
, &oid
)) {
5196 if (!lookup_commit_reference_gently(r
, &oid
, 1)) {
5197 enum object_type type
= oid_object_info(r
,
5200 return error(_("%s: can't cherry-pick a %s"),
5201 name
, type_name(type
));
5204 return error(_("%s: bad revision"), name
);
5208 * If we were called as "git cherry-pick <commit>", just
5209 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
5210 * REVERT_HEAD, and don't touch the sequencer state.
5211 * This means it is possible to cherry-pick in the middle
5212 * of a cherry-pick sequence.
5214 if (opts
->revs
->cmdline
.nr
== 1 &&
5215 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
5216 opts
->revs
->no_walk
&&
5217 !opts
->revs
->cmdline
.rev
->flags
) {
5218 struct commit
*cmit
;
5219 if (prepare_revision_walk(opts
->revs
))
5220 return error(_("revision walk setup failed"));
5221 cmit
= get_revision(opts
->revs
);
5223 return error(_("empty commit set passed"));
5224 if (get_revision(opts
->revs
))
5225 BUG("unexpected extra commit from walk");
5226 return single_pick(r
, cmit
, opts
);
5230 * Start a new cherry-pick/ revert sequence; but
5231 * first, make sure that an existing one isn't in
5235 if (walk_revs_populate_todo(&todo_list
, opts
) ||
5236 create_seq_dir(r
) < 0)
5238 if (get_oid("HEAD", &oid
) && (opts
->action
== REPLAY_REVERT
))
5239 return error(_("can't revert as initial commit"));
5240 if (save_head(oid_to_hex(&oid
)))
5242 if (save_opts(opts
))
5244 update_abort_safety_file();
5245 res
= pick_commits(r
, &todo_list
, opts
);
5246 todo_list_release(&todo_list
);
5250 void append_signoff(struct strbuf
*msgbuf
, size_t ignore_footer
, unsigned flag
)
5252 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
5253 struct strbuf sob
= STRBUF_INIT
;
5256 strbuf_addstr(&sob
, sign_off_header
);
5257 strbuf_addstr(&sob
, fmt_name(WANT_COMMITTER_IDENT
));
5258 strbuf_addch(&sob
, '\n');
5261 strbuf_complete_line(msgbuf
);
5264 * If the whole message buffer is equal to the sob, pretend that we
5265 * found a conforming footer with a matching sob
5267 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
5268 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
5271 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
5274 const char *append_newlines
= NULL
;
5275 size_t len
= msgbuf
->len
- ignore_footer
;
5279 * The buffer is completely empty. Leave foom for
5280 * the title and body to be filled in by the user.
5282 append_newlines
= "\n\n";
5283 } else if (len
== 1) {
5285 * Buffer contains a single newline. Add another
5286 * so that we leave room for the title and body.
5288 append_newlines
= "\n";
5289 } else if (msgbuf
->buf
[len
- 2] != '\n') {
5291 * Buffer ends with a single newline. Add another
5292 * so that there is an empty line between the message
5295 append_newlines
= "\n";
5296 } /* else, the buffer already ends with two newlines. */
5298 if (append_newlines
)
5299 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
5300 append_newlines
, strlen(append_newlines
));
5303 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
5304 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
5307 strbuf_release(&sob
);
5310 struct labels_entry
{
5311 struct hashmap_entry entry
;
5312 char label
[FLEX_ARRAY
];
5315 static int labels_cmp(const void *fndata UNUSED
,
5316 const struct hashmap_entry
*eptr
,
5317 const struct hashmap_entry
*entry_or_key
, const void *key
)
5319 const struct labels_entry
*a
, *b
;
5321 a
= container_of(eptr
, const struct labels_entry
, entry
);
5322 b
= container_of(entry_or_key
, const struct labels_entry
, entry
);
5324 return key
? strcmp(a
->label
, key
) : strcmp(a
->label
, b
->label
);
5327 struct string_entry
{
5328 struct oidmap_entry entry
;
5329 char string
[FLEX_ARRAY
];
5332 struct label_state
{
5333 struct oidmap commit2label
;
5334 struct hashmap labels
;
5338 static const char *label_oid(struct object_id
*oid
, const char *label
,
5339 struct label_state
*state
)
5341 struct labels_entry
*labels_entry
;
5342 struct string_entry
*string_entry
;
5343 struct object_id dummy
;
5346 string_entry
= oidmap_get(&state
->commit2label
, oid
);
5348 return string_entry
->string
;
5351 * For "uninteresting" commits, i.e. commits that are not to be
5352 * rebased, and which can therefore not be labeled, we use a unique
5353 * abbreviation of the commit name. This is slightly more complicated
5354 * than calling find_unique_abbrev() because we also need to make
5355 * sure that the abbreviation does not conflict with any other
5358 * We disallow "interesting" commits to be labeled by a string that
5359 * is a valid full-length hash, to ensure that we always can find an
5360 * abbreviation for any uninteresting commit's names that does not
5361 * clash with any other label.
5363 strbuf_reset(&state
->buf
);
5367 strbuf_grow(&state
->buf
, GIT_MAX_HEXSZ
);
5368 label
= p
= state
->buf
.buf
;
5370 find_unique_abbrev_r(p
, oid
, default_abbrev
);
5373 * We may need to extend the abbreviated hash so that there is
5374 * no conflicting label.
5376 if (hashmap_get_from_hash(&state
->labels
, strihash(p
), p
)) {
5377 size_t i
= strlen(p
) + 1;
5379 oid_to_hex_r(p
, oid
);
5380 for (; i
< the_hash_algo
->hexsz
; i
++) {
5383 if (!hashmap_get_from_hash(&state
->labels
,
5390 struct strbuf
*buf
= &state
->buf
;
5393 * Sanitize labels by replacing non-alpha-numeric characters
5394 * (including white-space ones) by dashes, as they might be
5395 * illegal in file names (and hence in ref names).
5397 * Note that we retain non-ASCII UTF-8 characters (identified
5398 * via the most significant bit). They should be all acceptable
5399 * in file names. We do not validate the UTF-8 here, that's not
5400 * the job of this function.
5402 for (; *label
; label
++)
5403 if ((*label
& 0x80) || isalnum(*label
))
5404 strbuf_addch(buf
, *label
);
5405 /* avoid leading dash and double-dashes */
5406 else if (buf
->len
&& buf
->buf
[buf
->len
- 1] != '-')
5407 strbuf_addch(buf
, '-');
5409 strbuf_addstr(buf
, "rev-");
5410 strbuf_add_unique_abbrev(buf
, oid
, default_abbrev
);
5414 if ((buf
->len
== the_hash_algo
->hexsz
&&
5415 !get_oid_hex(label
, &dummy
)) ||
5416 (buf
->len
== 1 && *label
== '#') ||
5417 hashmap_get_from_hash(&state
->labels
,
5418 strihash(label
), label
)) {
5420 * If the label already exists, or if the label is a
5421 * valid full OID, or the label is a '#' (which we use
5422 * as a separator between merge heads and oneline), we
5423 * append a dash and a number to make it unique.
5425 size_t len
= buf
->len
;
5427 for (i
= 2; ; i
++) {
5428 strbuf_setlen(buf
, len
);
5429 strbuf_addf(buf
, "-%d", i
);
5430 if (!hashmap_get_from_hash(&state
->labels
,
5440 FLEX_ALLOC_STR(labels_entry
, label
, label
);
5441 hashmap_entry_init(&labels_entry
->entry
, strihash(label
));
5442 hashmap_add(&state
->labels
, &labels_entry
->entry
);
5444 FLEX_ALLOC_STR(string_entry
, string
, label
);
5445 oidcpy(&string_entry
->entry
.oid
, oid
);
5446 oidmap_put(&state
->commit2label
, string_entry
);
5448 return string_entry
->string
;
5451 static int make_script_with_merges(struct pretty_print_context
*pp
,
5452 struct rev_info
*revs
, struct strbuf
*out
,
5455 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5456 int rebase_cousins
= flags
& TODO_LIST_REBASE_COUSINS
;
5457 int root_with_onto
= flags
& TODO_LIST_ROOT_WITH_ONTO
;
5458 int skipped_commit
= 0;
5459 struct strbuf buf
= STRBUF_INIT
, oneline
= STRBUF_INIT
;
5460 struct strbuf label
= STRBUF_INIT
;
5461 struct commit_list
*commits
= NULL
, **tail
= &commits
, *iter
;
5462 struct commit_list
*tips
= NULL
, **tips_tail
= &tips
;
5463 struct commit
*commit
;
5464 struct oidmap commit2todo
= OIDMAP_INIT
;
5465 struct string_entry
*entry
;
5466 struct oidset interesting
= OIDSET_INIT
, child_seen
= OIDSET_INIT
,
5467 shown
= OIDSET_INIT
;
5468 struct label_state state
= { OIDMAP_INIT
, { NULL
}, STRBUF_INIT
};
5470 int abbr
= flags
& TODO_LIST_ABBREVIATE_CMDS
;
5471 const char *cmd_pick
= abbr
? "p" : "pick",
5472 *cmd_label
= abbr
? "l" : "label",
5473 *cmd_reset
= abbr
? "t" : "reset",
5474 *cmd_merge
= abbr
? "m" : "merge";
5476 oidmap_init(&commit2todo
, 0);
5477 oidmap_init(&state
.commit2label
, 0);
5478 hashmap_init(&state
.labels
, labels_cmp
, NULL
, 0);
5479 strbuf_init(&state
.buf
, 32);
5481 if (revs
->cmdline
.nr
&& (revs
->cmdline
.rev
[0].flags
& BOTTOM
)) {
5482 struct labels_entry
*onto_label_entry
;
5483 struct object_id
*oid
= &revs
->cmdline
.rev
[0].item
->oid
;
5484 FLEX_ALLOC_STR(entry
, string
, "onto");
5485 oidcpy(&entry
->entry
.oid
, oid
);
5486 oidmap_put(&state
.commit2label
, entry
);
5488 FLEX_ALLOC_STR(onto_label_entry
, label
, "onto");
5489 hashmap_entry_init(&onto_label_entry
->entry
, strihash("onto"));
5490 hashmap_add(&state
.labels
, &onto_label_entry
->entry
);
5495 * - get onelines for all commits
5496 * - gather all branch tips (i.e. 2nd or later parents of merges)
5497 * - label all branch tips
5499 while ((commit
= get_revision(revs
))) {
5500 struct commit_list
*to_merge
;
5501 const char *p1
, *p2
;
5502 struct object_id
*oid
;
5505 tail
= &commit_list_insert(commit
, tail
)->next
;
5506 oidset_insert(&interesting
, &commit
->object
.oid
);
5508 is_empty
= is_original_commit_empty(commit
);
5509 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
)) {
5510 if (flags
& TODO_LIST_WARN_SKIPPED_CHERRY_PICKS
)
5511 warning(_("skipped previously applied commit %s"),
5512 short_commit_name(commit
));
5516 if (is_empty
&& !keep_empty
)
5519 strbuf_reset(&oneline
);
5520 pretty_print_commit(pp
, commit
, &oneline
);
5522 to_merge
= commit
->parents
? commit
->parents
->next
: NULL
;
5524 /* non-merge commit: easy case */
5526 strbuf_addf(&buf
, "%s %s %s", cmd_pick
,
5527 oid_to_hex(&commit
->object
.oid
),
5530 strbuf_addf(&buf
, " %c empty",
5533 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5534 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5535 oidmap_put(&commit2todo
, entry
);
5540 /* Create a label */
5541 strbuf_reset(&label
);
5542 if (skip_prefix(oneline
.buf
, "Merge ", &p1
) &&
5543 (p1
= strchr(p1
, '\'')) &&
5544 (p2
= strchr(++p1
, '\'')))
5545 strbuf_add(&label
, p1
, p2
- p1
);
5546 else if (skip_prefix(oneline
.buf
, "Merge pull request ",
5548 (p1
= strstr(p1
, " from ")))
5549 strbuf_addstr(&label
, p1
+ strlen(" from "));
5551 strbuf_addbuf(&label
, &oneline
);
5554 strbuf_addf(&buf
, "%s -C %s",
5555 cmd_merge
, oid_to_hex(&commit
->object
.oid
));
5557 /* label the tips of merged branches */
5558 for (; to_merge
; to_merge
= to_merge
->next
) {
5559 oid
= &to_merge
->item
->object
.oid
;
5560 strbuf_addch(&buf
, ' ');
5562 if (!oidset_contains(&interesting
, oid
)) {
5563 strbuf_addstr(&buf
, label_oid(oid
, NULL
,
5568 tips_tail
= &commit_list_insert(to_merge
->item
,
5571 strbuf_addstr(&buf
, label_oid(oid
, label
.buf
, &state
));
5573 strbuf_addf(&buf
, " # %s", oneline
.buf
);
5575 FLEX_ALLOC_STR(entry
, string
, buf
.buf
);
5576 oidcpy(&entry
->entry
.oid
, &commit
->object
.oid
);
5577 oidmap_put(&commit2todo
, entry
);
5580 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS
,
5581 _("use --reapply-cherry-picks to include skipped commits"));
5585 * - label branch points
5586 * - add HEAD to the branch tips
5588 for (iter
= commits
; iter
; iter
= iter
->next
) {
5589 struct commit_list
*parent
= iter
->item
->parents
;
5590 for (; parent
; parent
= parent
->next
) {
5591 struct object_id
*oid
= &parent
->item
->object
.oid
;
5592 if (!oidset_contains(&interesting
, oid
))
5594 if (oidset_insert(&child_seen
, oid
))
5595 label_oid(oid
, "branch-point", &state
);
5598 /* Add HEAD as implicit "tip of branch" */
5600 tips_tail
= &commit_list_insert(iter
->item
,
5605 * Third phase: output the todo list. This is a bit tricky, as we
5606 * want to avoid jumping back and forth between revisions. To
5607 * accomplish that goal, we walk backwards from the branch tips,
5608 * gathering commits not yet shown, reversing the list on the fly,
5609 * then outputting that list (labeling revisions as needed).
5611 strbuf_addf(out
, "%s onto\n", cmd_label
);
5612 for (iter
= tips
; iter
; iter
= iter
->next
) {
5613 struct commit_list
*list
= NULL
, *iter2
;
5615 commit
= iter
->item
;
5616 if (oidset_contains(&shown
, &commit
->object
.oid
))
5618 entry
= oidmap_get(&state
.commit2label
, &commit
->object
.oid
);
5621 strbuf_addf(out
, "\n%c Branch %s\n", comment_line_char
, entry
->string
);
5623 strbuf_addch(out
, '\n');
5625 while (oidset_contains(&interesting
, &commit
->object
.oid
) &&
5626 !oidset_contains(&shown
, &commit
->object
.oid
)) {
5627 commit_list_insert(commit
, &list
);
5628 if (!commit
->parents
) {
5632 commit
= commit
->parents
->item
;
5636 strbuf_addf(out
, "%s %s\n", cmd_reset
,
5637 rebase_cousins
|| root_with_onto
?
5638 "onto" : "[new root]");
5640 const char *to
= NULL
;
5642 entry
= oidmap_get(&state
.commit2label
,
5643 &commit
->object
.oid
);
5646 else if (!rebase_cousins
)
5647 to
= label_oid(&commit
->object
.oid
, NULL
,
5650 if (!to
|| !strcmp(to
, "onto"))
5651 strbuf_addf(out
, "%s onto\n", cmd_reset
);
5653 strbuf_reset(&oneline
);
5654 pretty_print_commit(pp
, commit
, &oneline
);
5655 strbuf_addf(out
, "%s %s # %s\n",
5656 cmd_reset
, to
, oneline
.buf
);
5660 for (iter2
= list
; iter2
; iter2
= iter2
->next
) {
5661 struct object_id
*oid
= &iter2
->item
->object
.oid
;
5662 entry
= oidmap_get(&commit2todo
, oid
);
5663 /* only show if not already upstream */
5665 strbuf_addf(out
, "%s\n", entry
->string
);
5666 entry
= oidmap_get(&state
.commit2label
, oid
);
5668 strbuf_addf(out
, "%s %s\n",
5669 cmd_label
, entry
->string
);
5670 oidset_insert(&shown
, oid
);
5673 free_commit_list(list
);
5676 free_commit_list(commits
);
5677 free_commit_list(tips
);
5679 strbuf_release(&label
);
5680 strbuf_release(&oneline
);
5681 strbuf_release(&buf
);
5683 oidmap_free(&commit2todo
, 1);
5684 oidmap_free(&state
.commit2label
, 1);
5685 hashmap_clear_and_free(&state
.labels
, struct labels_entry
, entry
);
5686 strbuf_release(&state
.buf
);
5691 int sequencer_make_script(struct repository
*r
, struct strbuf
*out
, int argc
,
5692 const char **argv
, unsigned flags
)
5694 char *format
= NULL
;
5695 struct pretty_print_context pp
= {0};
5696 struct rev_info revs
;
5697 struct commit
*commit
;
5698 int keep_empty
= flags
& TODO_LIST_KEEP_EMPTY
;
5699 const char *insn
= flags
& TODO_LIST_ABBREVIATE_CMDS
? "p" : "pick";
5700 int rebase_merges
= flags
& TODO_LIST_REBASE_MERGES
;
5701 int reapply_cherry_picks
= flags
& TODO_LIST_REAPPLY_CHERRY_PICKS
;
5702 int skipped_commit
= 0;
5705 repo_init_revisions(r
, &revs
, NULL
);
5706 revs
.verbose_header
= 1;
5708 revs
.max_parents
= 1;
5709 revs
.cherry_mark
= !reapply_cherry_picks
;
5712 revs
.right_only
= 1;
5713 revs
.sort_order
= REV_SORT_IN_GRAPH_ORDER
;
5714 revs
.topo_order
= 1;
5716 revs
.pretty_given
= 1;
5717 git_config_get_string("rebase.instructionFormat", &format
);
5718 if (!format
|| !*format
) {
5720 format
= xstrdup("%s");
5722 get_commit_format(format
, &revs
);
5724 pp
.fmt
= revs
.commit_format
;
5725 pp
.output_encoding
= get_log_output_encoding();
5727 if (setup_revisions(argc
, argv
, &revs
, NULL
) > 1) {
5728 ret
= error(_("make_script: unhandled options"));
5732 if (prepare_revision_walk(&revs
) < 0) {
5733 ret
= error(_("make_script: error preparing revisions"));
5737 if (rebase_merges
) {
5738 ret
= make_script_with_merges(&pp
, &revs
, out
, flags
);
5742 while ((commit
= get_revision(&revs
))) {
5743 int is_empty
= is_original_commit_empty(commit
);
5745 if (!is_empty
&& (commit
->object
.flags
& PATCHSAME
)) {
5746 if (flags
& TODO_LIST_WARN_SKIPPED_CHERRY_PICKS
)
5747 warning(_("skipped previously applied commit %s"),
5748 short_commit_name(commit
));
5752 if (is_empty
&& !keep_empty
)
5754 strbuf_addf(out
, "%s %s ", insn
,
5755 oid_to_hex(&commit
->object
.oid
));
5756 pretty_print_commit(&pp
, commit
, out
);
5758 strbuf_addf(out
, " %c empty", comment_line_char
);
5759 strbuf_addch(out
, '\n');
5762 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS
,
5763 _("use --reapply-cherry-picks to include skipped commits"));
5765 release_revisions(&revs
);
5770 * Add commands after pick and (series of) squash/fixup commands
5773 static void todo_list_add_exec_commands(struct todo_list
*todo_list
,
5774 struct string_list
*commands
)
5776 struct strbuf
*buf
= &todo_list
->buf
;
5777 size_t base_offset
= buf
->len
;
5778 int i
, insert
, nr
= 0, alloc
= 0;
5779 struct todo_item
*items
= NULL
, *base_items
= NULL
;
5781 CALLOC_ARRAY(base_items
, commands
->nr
);
5782 for (i
= 0; i
< commands
->nr
; i
++) {
5783 size_t command_len
= strlen(commands
->items
[i
].string
);
5785 strbuf_addstr(buf
, commands
->items
[i
].string
);
5786 strbuf_addch(buf
, '\n');
5788 base_items
[i
].command
= TODO_EXEC
;
5789 base_items
[i
].offset_in_buf
= base_offset
;
5790 base_items
[i
].arg_offset
= base_offset
;
5791 base_items
[i
].arg_len
= command_len
;
5793 base_offset
+= command_len
+ 1;
5797 * Insert <commands> after every pick. Here, fixup/squash chains
5798 * are considered part of the pick, so we insert the commands *after*
5799 * those chains if there are any.
5801 * As we insert the exec commands immediately after rearranging
5802 * any fixups and before the user edits the list, a fixup chain
5803 * can never contain comments (any comments are empty picks that
5804 * have been commented out because the user did not specify
5805 * --keep-empty). So, it is safe to insert an exec command
5806 * without looking at the command following a comment.
5809 for (i
= 0; i
< todo_list
->nr
; i
++) {
5810 enum todo_command command
= todo_list
->items
[i
].command
;
5811 if (insert
&& !is_fixup(command
)) {
5812 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5813 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5819 ALLOC_GROW(items
, nr
+ 1, alloc
);
5820 items
[nr
++] = todo_list
->items
[i
];
5822 if (command
== TODO_PICK
|| command
== TODO_MERGE
)
5826 /* insert or append final <commands> */
5828 ALLOC_GROW(items
, nr
+ commands
->nr
, alloc
);
5829 COPY_ARRAY(items
+ nr
, base_items
, commands
->nr
);
5834 FREE_AND_NULL(todo_list
->items
);
5835 todo_list
->items
= items
;
5837 todo_list
->alloc
= alloc
;
5840 static void todo_list_to_strbuf(struct repository
*r
, struct todo_list
*todo_list
,
5841 struct strbuf
*buf
, int num
, unsigned flags
)
5843 struct todo_item
*item
;
5844 int i
, max
= todo_list
->nr
;
5846 if (num
> 0 && num
< max
)
5849 for (item
= todo_list
->items
, i
= 0; i
< max
; i
++, item
++) {
5852 /* if the item is not a command write it and continue */
5853 if (item
->command
>= TODO_COMMENT
) {
5854 strbuf_addf(buf
, "%.*s\n", item
->arg_len
,
5855 todo_item_get_arg(todo_list
, item
));
5859 /* add command to the buffer */
5860 cmd
= command_to_char(item
->command
);
5861 if ((flags
& TODO_LIST_ABBREVIATE_CMDS
) && cmd
)
5862 strbuf_addch(buf
, cmd
);
5864 strbuf_addstr(buf
, command_to_string(item
->command
));
5868 const char *oid
= flags
& TODO_LIST_SHORTEN_IDS
?
5869 short_commit_name(item
->commit
) :
5870 oid_to_hex(&item
->commit
->object
.oid
);
5872 if (item
->command
== TODO_FIXUP
) {
5873 if (item
->flags
& TODO_EDIT_FIXUP_MSG
)
5874 strbuf_addstr(buf
, " -c");
5875 else if (item
->flags
& TODO_REPLACE_FIXUP_MSG
) {
5876 strbuf_addstr(buf
, " -C");
5880 if (item
->command
== TODO_MERGE
) {
5881 if (item
->flags
& TODO_EDIT_MERGE_MSG
)
5882 strbuf_addstr(buf
, " -c");
5884 strbuf_addstr(buf
, " -C");
5887 strbuf_addf(buf
, " %s", oid
);
5890 /* add all the rest */
5892 strbuf_addch(buf
, '\n');
5894 strbuf_addf(buf
, " %.*s\n", item
->arg_len
,
5895 todo_item_get_arg(todo_list
, item
));
5899 int todo_list_write_to_file(struct repository
*r
, struct todo_list
*todo_list
,
5900 const char *file
, const char *shortrevisions
,
5901 const char *shortonto
, int num
, unsigned flags
)
5904 struct strbuf buf
= STRBUF_INIT
;
5906 todo_list_to_strbuf(r
, todo_list
, &buf
, num
, flags
);
5907 if (flags
& TODO_LIST_APPEND_TODO_HELP
)
5908 append_todo_help(count_commands(todo_list
),
5909 shortrevisions
, shortonto
, &buf
);
5911 res
= write_message(buf
.buf
, buf
.len
, file
, 0);
5912 strbuf_release(&buf
);
5917 /* skip picking commits whose parents are unchanged */
5918 static int skip_unnecessary_picks(struct repository
*r
,
5919 struct todo_list
*todo_list
,
5920 struct object_id
*base_oid
)
5922 struct object_id
*parent_oid
;
5925 for (i
= 0; i
< todo_list
->nr
; i
++) {
5926 struct todo_item
*item
= todo_list
->items
+ i
;
5928 if (item
->command
>= TODO_NOOP
)
5930 if (item
->command
!= TODO_PICK
)
5932 if (parse_commit(item
->commit
)) {
5933 return error(_("could not parse commit '%s'"),
5934 oid_to_hex(&item
->commit
->object
.oid
));
5936 if (!item
->commit
->parents
)
5937 break; /* root commit */
5938 if (item
->commit
->parents
->next
)
5939 break; /* merge commit */
5940 parent_oid
= &item
->commit
->parents
->item
->object
.oid
;
5941 if (!oideq(parent_oid
, base_oid
))
5943 oidcpy(base_oid
, &item
->commit
->object
.oid
);
5946 const char *done_path
= rebase_path_done();
5948 if (todo_list_write_to_file(r
, todo_list
, done_path
, NULL
, NULL
, i
, 0)) {
5949 error_errno(_("could not write to '%s'"), done_path
);
5953 MOVE_ARRAY(todo_list
->items
, todo_list
->items
+ i
, todo_list
->nr
- i
);
5955 todo_list
->current
= 0;
5956 todo_list
->done_nr
+= i
;
5958 if (is_fixup(peek_command(todo_list
, 0)))
5959 record_in_rewritten(base_oid
, peek_command(todo_list
, 0));
5965 struct todo_add_branch_context
{
5966 struct todo_item
*items
;
5970 struct commit
*commit
;
5971 struct string_list refs_to_oids
;
5974 static int add_decorations_to_list(const struct commit
*commit
,
5975 struct todo_add_branch_context
*ctx
)
5977 const struct name_decoration
*decoration
= get_name_decoration(&commit
->object
);
5978 const char *head_ref
= resolve_ref_unsafe("HEAD",
5979 RESOLVE_REF_READING
,
5983 while (decoration
) {
5984 struct todo_item
*item
;
5986 size_t base_offset
= ctx
->buf
->len
;
5989 * If the branch is the current HEAD, then it will be
5990 * updated by the default rebase behavior.
5992 if (head_ref
&& !strcmp(head_ref
, decoration
->name
)) {
5993 decoration
= decoration
->next
;
5997 ALLOC_GROW(ctx
->items
,
6000 item
= &ctx
->items
[ctx
->items_nr
];
6001 memset(item
, 0, sizeof(*item
));
6003 /* If the branch is checked out, then leave a comment instead. */
6004 if ((path
= branch_checked_out(decoration
->name
))) {
6005 item
->command
= TODO_COMMENT
;
6006 strbuf_addf(ctx
->buf
, "# Ref %s checked out at '%s'\n",
6007 decoration
->name
, path
);
6009 struct string_list_item
*sti
;
6010 item
->command
= TODO_UPDATE_REF
;
6011 strbuf_addf(ctx
->buf
, "%s\n", decoration
->name
);
6013 sti
= string_list_insert(&ctx
->refs_to_oids
,
6015 sti
->util
= init_update_ref_record(decoration
->name
);
6018 item
->offset_in_buf
= base_offset
;
6019 item
->arg_offset
= base_offset
;
6020 item
->arg_len
= ctx
->buf
->len
- base_offset
;
6023 decoration
= decoration
->next
;
6030 * For each 'pick' command, find out if the commit has a decoration in
6031 * refs/heads/. If so, then add a 'label for-update-refs/' command.
6033 static int todo_list_add_update_ref_commands(struct todo_list
*todo_list
)
6036 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
6037 static struct string_list decorate_refs_exclude_config
= STRING_LIST_INIT_NODUP
;
6038 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
6039 struct decoration_filter decoration_filter
= {
6040 .include_ref_pattern
= &decorate_refs_include
,
6041 .exclude_ref_pattern
= &decorate_refs_exclude
,
6042 .exclude_ref_config_pattern
= &decorate_refs_exclude_config
,
6044 struct todo_add_branch_context ctx
= {
6045 .buf
= &todo_list
->buf
,
6046 .refs_to_oids
= STRING_LIST_INIT_DUP
,
6049 ctx
.items_alloc
= 2 * todo_list
->nr
+ 1;
6050 ALLOC_ARRAY(ctx
.items
, ctx
.items_alloc
);
6052 string_list_append(&decorate_refs_include
, "refs/heads/");
6053 load_ref_decorations(&decoration_filter
, 0);
6055 for (i
= 0; i
< todo_list
->nr
; ) {
6056 struct todo_item
*item
= &todo_list
->items
[i
];
6058 /* insert ith item into new list */
6059 ALLOC_GROW(ctx
.items
,
6063 ctx
.items
[ctx
.items_nr
++] = todo_list
->items
[i
++];
6066 ctx
.commit
= item
->commit
;
6067 add_decorations_to_list(item
->commit
, &ctx
);
6071 res
= write_update_refs_state(&ctx
.refs_to_oids
);
6073 string_list_clear(&ctx
.refs_to_oids
, 1);
6076 /* we failed, so clean up the new list. */
6081 free(todo_list
->items
);
6082 todo_list
->items
= ctx
.items
;
6083 todo_list
->nr
= ctx
.items_nr
;
6084 todo_list
->alloc
= ctx
.items_alloc
;
6089 int complete_action(struct repository
*r
, struct replay_opts
*opts
, unsigned flags
,
6090 const char *shortrevisions
, const char *onto_name
,
6091 struct commit
*onto
, const struct object_id
*orig_head
,
6092 struct string_list
*commands
, unsigned autosquash
,
6093 unsigned update_refs
,
6094 struct todo_list
*todo_list
)
6096 char shortonto
[GIT_MAX_HEXSZ
+ 1];
6097 const char *todo_file
= rebase_path_todo();
6098 struct todo_list new_todo
= TODO_LIST_INIT
;
6099 struct strbuf
*buf
= &todo_list
->buf
, buf2
= STRBUF_INIT
;
6100 struct object_id oid
= onto
->object
.oid
;
6103 find_unique_abbrev_r(shortonto
, &oid
, DEFAULT_ABBREV
);
6105 if (buf
->len
== 0) {
6106 struct todo_item
*item
= append_new_todo(todo_list
);
6107 item
->command
= TODO_NOOP
;
6108 item
->commit
= NULL
;
6109 item
->arg_len
= item
->arg_offset
= item
->flags
= item
->offset_in_buf
= 0;
6112 if (update_refs
&& todo_list_add_update_ref_commands(todo_list
))
6115 if (autosquash
&& todo_list_rearrange_squash(todo_list
))
6119 todo_list_add_exec_commands(todo_list
, commands
);
6121 if (count_commands(todo_list
) == 0) {
6122 apply_autostash(rebase_path_autostash());
6123 sequencer_remove_state(opts
);
6125 return error(_("nothing to do"));
6128 res
= edit_todo_list(r
, todo_list
, &new_todo
, shortrevisions
,
6132 else if (res
== -2) {
6133 apply_autostash(rebase_path_autostash());
6134 sequencer_remove_state(opts
);
6137 } else if (res
== -3) {
6138 apply_autostash(rebase_path_autostash());
6139 sequencer_remove_state(opts
);
6140 todo_list_release(&new_todo
);
6142 return error(_("nothing to do"));
6143 } else if (res
== -4) {
6144 checkout_onto(r
, opts
, onto_name
, &onto
->object
.oid
, orig_head
);
6145 todo_list_release(&new_todo
);
6150 /* Expand the commit IDs */
6151 todo_list_to_strbuf(r
, &new_todo
, &buf2
, -1, 0);
6152 strbuf_swap(&new_todo
.buf
, &buf2
);
6153 strbuf_release(&buf2
);
6154 new_todo
.total_nr
-= new_todo
.nr
;
6155 if (todo_list_parse_insn_buffer(r
, new_todo
.buf
.buf
, &new_todo
) < 0)
6156 BUG("invalid todo list after expanding IDs:\n%s",
6159 if (opts
->allow_ff
&& skip_unnecessary_picks(r
, &new_todo
, &oid
)) {
6160 todo_list_release(&new_todo
);
6161 return error(_("could not skip unnecessary pick commands"));
6164 if (todo_list_write_to_file(r
, &new_todo
, todo_file
, NULL
, NULL
, -1,
6165 flags
& ~(TODO_LIST_SHORTEN_IDS
))) {
6166 todo_list_release(&new_todo
);
6167 return error_errno(_("could not write '%s'"), todo_file
);
6172 if (checkout_onto(r
, opts
, onto_name
, &oid
, orig_head
))
6175 if (require_clean_work_tree(r
, "rebase", "", 1, 1))
6178 todo_list_write_total_nr(&new_todo
);
6179 res
= pick_commits(r
, &new_todo
, opts
);
6182 todo_list_release(&new_todo
);
6187 struct subject2item_entry
{
6188 struct hashmap_entry entry
;
6190 char subject
[FLEX_ARRAY
];
6193 static int subject2item_cmp(const void *fndata UNUSED
,
6194 const struct hashmap_entry
*eptr
,
6195 const struct hashmap_entry
*entry_or_key
,
6198 const struct subject2item_entry
*a
, *b
;
6200 a
= container_of(eptr
, const struct subject2item_entry
, entry
);
6201 b
= container_of(entry_or_key
, const struct subject2item_entry
, entry
);
6203 return key
? strcmp(a
->subject
, key
) : strcmp(a
->subject
, b
->subject
);
6206 define_commit_slab(commit_todo_item
, struct todo_item
*);
6208 static int skip_fixupish(const char *subject
, const char **p
) {
6209 return skip_prefix(subject
, "fixup! ", p
) ||
6210 skip_prefix(subject
, "amend! ", p
) ||
6211 skip_prefix(subject
, "squash! ", p
);
6215 * Rearrange the todo list that has both "pick commit-id msg" and "pick
6216 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
6217 * after the former, and change "pick" to "fixup"/"squash".
6219 * Note that if the config has specified a custom instruction format, each log
6220 * message will have to be retrieved from the commit (as the oneline in the
6221 * script cannot be trusted) in order to normalize the autosquash arrangement.
6223 int todo_list_rearrange_squash(struct todo_list
*todo_list
)
6225 struct hashmap subject2item
;
6226 int rearranged
= 0, *next
, *tail
, i
, nr
= 0, alloc
= 0;
6228 struct commit_todo_item commit_todo
;
6229 struct todo_item
*items
= NULL
;
6231 init_commit_todo_item(&commit_todo
);
6233 * The hashmap maps onelines to the respective todo list index.
6235 * If any items need to be rearranged, the next[i] value will indicate
6236 * which item was moved directly after the i'th.
6238 * In that case, last[i] will indicate the index of the latest item to
6239 * be moved to appear after the i'th.
6241 hashmap_init(&subject2item
, subject2item_cmp
, NULL
, todo_list
->nr
);
6242 ALLOC_ARRAY(next
, todo_list
->nr
);
6243 ALLOC_ARRAY(tail
, todo_list
->nr
);
6244 ALLOC_ARRAY(subjects
, todo_list
->nr
);
6245 for (i
= 0; i
< todo_list
->nr
; i
++) {
6246 struct strbuf buf
= STRBUF_INIT
;
6247 struct todo_item
*item
= todo_list
->items
+ i
;
6248 const char *commit_buffer
, *subject
, *p
;
6251 struct subject2item_entry
*entry
;
6253 next
[i
] = tail
[i
] = -1;
6254 if (!item
->commit
|| item
->command
== TODO_DROP
) {
6259 if (is_fixup(item
->command
)) {
6260 clear_commit_todo_item(&commit_todo
);
6261 return error(_("the script was already rearranged."));
6264 parse_commit(item
->commit
);
6265 commit_buffer
= logmsg_reencode(item
->commit
, NULL
, "UTF-8");
6266 find_commit_subject(commit_buffer
, &subject
);
6267 format_subject(&buf
, subject
, " ");
6268 subject
= subjects
[i
] = strbuf_detach(&buf
, &subject_len
);
6269 unuse_commit_buffer(item
->commit
, commit_buffer
);
6270 if (skip_fixupish(subject
, &p
)) {
6271 struct commit
*commit2
;
6276 if (!skip_fixupish(p
, &p
))
6280 entry
= hashmap_get_entry_from_hash(&subject2item
,
6282 struct subject2item_entry
,
6285 /* found by title */
6287 else if (!strchr(p
, ' ') &&
6289 lookup_commit_reference_by_name(p
)) &&
6290 *commit_todo_item_at(&commit_todo
, commit2
))
6291 /* found by commit name */
6292 i2
= *commit_todo_item_at(&commit_todo
, commit2
)
6295 /* copy can be a prefix of the commit subject */
6296 for (i2
= 0; i2
< i
; i2
++)
6298 starts_with(subjects
[i2
], p
))
6306 if (starts_with(subject
, "fixup!")) {
6307 todo_list
->items
[i
].command
= TODO_FIXUP
;
6308 } else if (starts_with(subject
, "amend!")) {
6309 todo_list
->items
[i
].command
= TODO_FIXUP
;
6310 todo_list
->items
[i
].flags
= TODO_REPLACE_FIXUP_MSG
;
6312 todo_list
->items
[i
].command
= TODO_SQUASH
;
6318 next
[i
] = next
[tail
[i2
]];
6322 } else if (!hashmap_get_from_hash(&subject2item
,
6323 strhash(subject
), subject
)) {
6324 FLEX_ALLOC_MEM(entry
, subject
, subject
, subject_len
);
6326 hashmap_entry_init(&entry
->entry
,
6327 strhash(entry
->subject
));
6328 hashmap_put(&subject2item
, &entry
->entry
);
6331 *commit_todo_item_at(&commit_todo
, item
->commit
) = item
;
6335 for (i
= 0; i
< todo_list
->nr
; i
++) {
6336 enum todo_command command
= todo_list
->items
[i
].command
;
6340 * Initially, all commands are 'pick's. If it is a
6341 * fixup or a squash now, we have rearranged it.
6343 if (is_fixup(command
))
6347 ALLOC_GROW(items
, nr
+ 1, alloc
);
6348 items
[nr
++] = todo_list
->items
[cur
];
6353 FREE_AND_NULL(todo_list
->items
);
6354 todo_list
->items
= items
;
6356 todo_list
->alloc
= alloc
;
6361 for (i
= 0; i
< todo_list
->nr
; i
++)
6364 hashmap_clear_and_free(&subject2item
, struct subject2item_entry
, entry
);
6366 clear_commit_todo_item(&commit_todo
);
6371 int sequencer_determine_whence(struct repository
*r
, enum commit_whence
*whence
)
6373 if (refs_ref_exists(get_main_ref_store(r
), "CHERRY_PICK_HEAD")) {
6374 struct object_id cherry_pick_head
, rebase_head
;
6376 if (file_exists(git_path_seq_dir()))
6377 *whence
= FROM_CHERRY_PICK_MULTI
;
6378 if (file_exists(rebase_path()) &&
6379 !get_oid("REBASE_HEAD", &rebase_head
) &&
6380 !get_oid("CHERRY_PICK_HEAD", &cherry_pick_head
) &&
6381 oideq(&rebase_head
, &cherry_pick_head
))
6382 *whence
= FROM_REBASE_PICK
;
6384 *whence
= FROM_CHERRY_PICK_SINGLE
;
6392 int sequencer_get_update_refs_state(const char *wt_dir
,
6393 struct string_list
*refs
)
6397 struct strbuf ref
= STRBUF_INIT
;
6398 struct strbuf hash
= STRBUF_INIT
;
6399 struct update_ref_record
*rec
= NULL
;
6401 char *path
= rebase_path_update_refs(wt_dir
);
6403 fp
= fopen(path
, "r");
6407 while (strbuf_getline(&ref
, fp
) != EOF
) {
6408 struct string_list_item
*item
;
6410 CALLOC_ARRAY(rec
, 1);
6412 if (strbuf_getline(&hash
, fp
) == EOF
||
6413 get_oid_hex(hash
.buf
, &rec
->before
)) {
6414 warning(_("update-refs file at '%s' is invalid"),
6420 if (strbuf_getline(&hash
, fp
) == EOF
||
6421 get_oid_hex(hash
.buf
, &rec
->after
)) {
6422 warning(_("update-refs file at '%s' is invalid"),
6428 item
= string_list_insert(refs
, ref
.buf
);
6438 strbuf_release(&ref
);
6439 strbuf_release(&hash
);