]> git.ipfire.org Git - thirdparty/git.git/blame - sequencer.c
treewide: remove cache.h inclusion due to editor.h changes
[thirdparty/git.git] / sequencer.c
CommitLineData
26ae337b 1#include "cache.h"
0b027f6c 2#include "abspath.h"
6c6ddf92 3#include "advice.h"
36bf1958 4#include "alloc.h"
b2141fc1 5#include "config.h"
7ee24e18 6#include "environment.h"
f394e093 7#include "gettext.h"
41771fa4 8#include "hex.h"
697cc8ef 9#include "lockfile.h"
26ae337b 10#include "dir.h"
87bed179 11#include "object-file.h"
dabab1d6 12#include "object-name.h"
cbd53a21 13#include "object-store.h"
043a4492
RR
14#include "object.h"
15#include "commit.h"
0505d604 16#include "sequencer.h"
043a4492
RR
17#include "tag.h"
18#include "run-command.h"
5e3aba33 19#include "hook.h"
d807c4a0 20#include "exec-cmd.h"
043a4492
RR
21#include "utf8.h"
22#include "cache-tree.h"
23#include "diff.h"
24#include "revision.h"
25#include "rerere.h"
14c4586c
EN
26#include "merge-ort.h"
27#include "merge-ort-wrappers.h"
043a4492 28#include "refs.h"
dbbcd44f 29#include "strvec.h"
a1c75762 30#include "quote.h"
967dfd4d 31#include "trailer.h"
56dc3ab0 32#include "log-tree.h"
311af526 33#include "wt-status.h"
c44a4c65 34#include "hashmap.h"
a87a6f3c
PW
35#include "notes-utils.h"
36#include "sigchain.h"
9055e401
JS
37#include "unpack-trees.h"
38#include "worktree.h"
1644c73c
JS
39#include "oidmap.h"
40#include "oidset.h"
8315bd20 41#include "commit-slab.h"
65b5f948 42#include "alias.h"
64043556 43#include "commit-reach.h"
b97e1873 44#include "rebase-interactive.h"
0816f1df 45#include "reset.h"
900b50c2 46#include "branch.h"
d5ebb50d 47#include "wrapper.h"
043a4492
RR
48
49#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
26ae337b 50
5fe81438 51static const char sign_off_header[] = "Signed-off-by: ";
cd650a4e 52static const char cherry_picked_prefix[] = "(cherry picked from commit ";
5ed75e2a 53
66618a50
PW
54GIT_PATH_FUNC(git_path_commit_editmsg, "COMMIT_EDITMSG")
55
901ba7b1 56static GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
8a2a0f53
JS
57
58static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
59static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
60static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
1e41229d 61static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety")
f932729c 62
84583957
JS
63static GIT_PATH_FUNC(rebase_path, "rebase-merge")
64/*
65 * The file containing rebase commands, comments, and empty lines.
66 * This file is created by "git rebase -i" then edited by the user. As
67 * the lines are processed, they are removed from the front of this
68 * file and written to the tail of 'done'.
69 */
44b776c3 70GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo")
a930eb03 71GIT_PATH_FUNC(rebase_path_todo_backup, "rebase-merge/git-rebase-todo.backup")
b97e1873 72
5a5445d8
AG
73GIT_PATH_FUNC(rebase_path_dropped, "rebase-merge/dropped")
74
1df6df0c
JS
75/*
76 * The rebase command lines that have already been processed. A line
77 * is moved here when it is first handled, before any associated user
78 * actions.
79 */
80static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
ef80069a
JS
81/*
82 * The file to keep track of how many commands were already processed (e.g.
83 * for the prompt).
84 */
9ad36356 85static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum")
ef80069a
JS
86/*
87 * The file to keep track of how many commands are to be processed in total
88 * (e.g. for the prompt).
89 */
9ad36356 90static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end")
6e98de72
JS
91/*
92 * The commit message that is planned to be used for any changes that
93 * need to be committed following a user interaction.
94 */
95static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message")
96/*
97 * The file into which is accumulated the suggested commit message for
98 * squash/fixup commands. When the first of a series of squash/fixups
99 * is seen, the file is created and the commit message from the
100 * previous commit and from the first squash/fixup commit are written
101 * to it. The commit message for each subsequent squash/fixup commit
102 * is appended to the file as it is processed.
6e98de72
JS
103 */
104static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash")
105/*
106 * If the current series of squash/fixups has not yet included a squash
107 * command, then this file exists and holds the commit message of the
108 * original "pick" commit. (If the series ends without a "squash"
109 * command, then this can be used as the commit message of the combined
110 * commit without opening the editor.)
111 */
112static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup")
e12a7ef5
JS
113/*
114 * This file contains the list fixup/squash commands that have been
115 * accumulated into message-fixup or message-squash so far.
116 */
117static GIT_PATH_FUNC(rebase_path_current_fixups, "rebase-merge/current-fixups")
b5a67045
JS
118/*
119 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
120 * GIT_AUTHOR_DATE that will be used for the commit that is currently
121 * being rebased.
122 */
123static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script")
56dc3ab0
JS
124/*
125 * When an "edit" rebase command is being processed, the SHA1 of the
126 * commit to be edited is recorded in this file. When "git rebase
127 * --continue" is executed, if there are any staged changes then they
128 * will be amended to the HEAD commit, but only provided the HEAD
129 * commit is still the commit to be edited. When any other rebase
130 * command is processed, this file is deleted.
131 */
132static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend")
133/*
134 * When we stop at a given patch via the "edit" command, this file contains
0512eabd 135 * the commit object name of the corresponding patch.
56dc3ab0
JS
136 */
137static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha")
25cb8df9
JS
138/*
139 * For the post-rewrite hook, we make a list of rewritten commits and
140 * their new sha1s. The rewritten-pending list keeps the sha1s of
141 * commits that have been processed, but not committed yet,
142 * e.g. because they are waiting for a 'squash' command.
143 */
144static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list")
145static GIT_PATH_FUNC(rebase_path_rewritten_pending,
146 "rebase-merge/rewritten-pending")
9055e401 147
d87d48b2 148/*
15beaaa3 149 * The path of the file containing the OID of the "squash onto" commit, i.e.
d87d48b2
JS
150 * the dummy commit used for `reset [new root]`.
151 */
152static GIT_PATH_FUNC(rebase_path_squash_onto, "rebase-merge/squash-onto")
153
9055e401
JS
154/*
155 * The path of the file listing refs that need to be deleted after the rebase
156 * finishes. This is used by the `label` command to record the need for cleanup.
157 */
158static GIT_PATH_FUNC(rebase_path_refs_to_delete, "rebase-merge/refs-to-delete")
159
aa7f2fd1
DS
160/*
161 * The update-refs file stores a list of refs that will be updated at the end
162 * of the rebase sequence. The 'update-ref <ref>' commands in the todo file
163 * update the OIDs for the refs in this file, but the refs are not updated
164 * until the end of the rebase sequence.
165 *
166 * rebase_path_update_refs() returns the path to this file for a given
167 * worktree directory. For the current worktree, pass the_repository->gitdir.
168 */
169static char *rebase_path_update_refs(const char *wt_git_dir)
170{
171 return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir);
172}
173
a1c75762
JS
174/*
175 * The following files are written by git-rebase just after parsing the
65850686 176 * command-line.
a1c75762
JS
177 */
178static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt")
7573cec5 179static GIT_PATH_FUNC(rebase_path_cdate_is_adate, "rebase-merge/cdate_is_adate")
a3894aad 180static GIT_PATH_FUNC(rebase_path_ignore_date, "rebase-merge/ignore_date")
556907f1
JS
181static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head")
182static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose")
899b49c4 183static GIT_PATH_FUNC(rebase_path_quiet, "rebase-merge/quiet")
a852ec7f 184static GIT_PATH_FUNC(rebase_path_signoff, "rebase-merge/signoff")
4b83ce9f
JS
185static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name")
186static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto")
796c7972 187static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash")
ca6c6b45
JS
188static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy")
189static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts")
9b6d7a62 190static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate")
d421afa0 191static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec, "rebase-merge/reschedule-failed-exec")
e5b32bff 192static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec, "rebase-merge/no-reschedule-failed-exec")
e98c4269
EN
193static GIT_PATH_FUNC(rebase_path_drop_redundant_commits, "rebase-merge/drop_redundant_commits")
194static GIT_PATH_FUNC(rebase_path_keep_redundant_commits, "rebase-merge/keep_redundant_commits")
b5a67045 195
aa7f2fd1
DS
196/**
197 * A 'struct update_refs_record' represents a value in the update-refs
198 * list. We use a string_list to map refs to these (before, after) pairs.
199 */
200struct update_ref_record {
201 struct object_id before;
202 struct object_id after;
203};
204
89fc0b53
DS
205static struct update_ref_record *init_update_ref_record(const char *ref)
206{
207 struct update_ref_record *rec;
208
209 CALLOC_ARRAY(rec, 1);
210
211 oidcpy(&rec->before, null_oid());
212 oidcpy(&rec->after, null_oid());
213
214 /* This may fail, but that's fine, we will keep the null OID. */
215 read_ref(ref, &rec->before);
216
217 return rec;
218}
219
28d6daed
PW
220static int git_sequencer_config(const char *k, const char *v, void *cb)
221{
222 struct replay_opts *opts = cb;
223 int status;
224
225 if (!strcmp(k, "commit.cleanup")) {
226 const char *s;
227
228 status = git_config_string(&s, k, v);
229 if (status)
230 return status;
231
d74f3e58 232 if (!strcmp(s, "verbatim")) {
28d6daed 233 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
d74f3e58
PW
234 opts->explicit_cleanup = 1;
235 } else if (!strcmp(s, "whitespace")) {
28d6daed 236 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SPACE;
d74f3e58
PW
237 opts->explicit_cleanup = 1;
238 } else if (!strcmp(s, "strip")) {
28d6daed 239 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_ALL;
d74f3e58
PW
240 opts->explicit_cleanup = 1;
241 } else if (!strcmp(s, "scissors")) {
1a2b985f 242 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SCISSORS;
d74f3e58
PW
243 opts->explicit_cleanup = 1;
244 } else {
28d6daed
PW
245 warning(_("invalid commit message cleanup mode '%s'"),
246 s);
d74f3e58 247 }
28d6daed 248
f40f3c16 249 free((char *)s);
28d6daed
PW
250 return status;
251 }
252
253 if (!strcmp(k, "commit.gpgsign")) {
ed1e5282 254 opts->gpg_sign = git_config_bool(k, v) ? xstrdup("") : NULL;
28d6daed
PW
255 return 0;
256 }
257
14c4586c
EN
258 if (!opts->default_strategy && !strcmp(k, "pull.twohead")) {
259 int ret = git_config_string((const char**)&opts->default_strategy, k, v);
260 if (ret == 0) {
261 /*
262 * pull.twohead is allowed to be multi-valued; we only
263 * care about the first value.
264 */
265 char *tmp = strchr(opts->default_strategy, ' ');
266 if (tmp)
267 *tmp = '\0';
268 }
269 return ret;
270 }
271
191faaf7 272 if (opts->action == REPLAY_REVERT && !strcmp(k, "revert.reference"))
43966ab3
JH
273 opts->commit_use_reference = git_config_bool(k, v);
274
28d6daed
PW
275 return git_diff_basic_config(k, v, NULL);
276}
277
278void sequencer_init_config(struct replay_opts *opts)
279{
280 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
281 git_config(git_sequencer_config, opts);
282}
283
b5a67045
JS
284static inline int is_rebase_i(const struct replay_opts *opts)
285{
84583957 286 return opts->action == REPLAY_INTERACTIVE_REBASE;
b5a67045
JS
287}
288
285abf56
JS
289static const char *get_dir(const struct replay_opts *opts)
290{
84583957
JS
291 if (is_rebase_i(opts))
292 return rebase_path();
285abf56
JS
293 return git_path_seq_dir();
294}
295
c0246501
JS
296static const char *get_todo_path(const struct replay_opts *opts)
297{
84583957
JS
298 if (is_rebase_i(opts))
299 return rebase_path_todo();
c0246501
JS
300 return git_path_todo_file();
301}
302
bab4d109
BC
303/*
304 * Returns 0 for non-conforming footer
305 * Returns 1 for conforming footer
306 * Returns 2 when sob exists within conforming footer
307 * Returns 3 when sob exists within conforming footer as last entry
308 */
309static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
66e83d9b 310 size_t ignore_footer)
b971e04f 311{
00a21f5c 312 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
967dfd4d 313 struct trailer_info info;
a3b636e2 314 size_t i;
967dfd4d 315 int found_sob = 0, found_sob_last = 0;
9dad073d 316 char saved_char;
b971e04f 317
ffce7f59
JK
318 opts.no_divider = 1;
319
9dad073d
JK
320 if (ignore_footer) {
321 saved_char = sb->buf[sb->len - ignore_footer];
322 sb->buf[sb->len - ignore_footer] = '\0';
323 }
324
00a21f5c 325 trailer_info_get(&info, sb->buf, &opts);
b971e04f 326
9dad073d
JK
327 if (ignore_footer)
328 sb->buf[sb->len - ignore_footer] = saved_char;
329
967dfd4d 330 if (info.trailer_start == info.trailer_end)
b971e04f
BC
331 return 0;
332
967dfd4d
JT
333 for (i = 0; i < info.trailer_nr; i++)
334 if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) {
335 found_sob = 1;
336 if (i == info.trailer_nr - 1)
337 found_sob_last = 1;
338 }
b971e04f 339
967dfd4d 340 trailer_info_release(&info);
bab4d109 341
967dfd4d 342 if (found_sob_last)
bab4d109
BC
343 return 3;
344 if (found_sob)
345 return 2;
b971e04f
BC
346 return 1;
347}
5ed75e2a 348
a1c75762
JS
349static const char *gpg_sign_opt_quoted(struct replay_opts *opts)
350{
351 static struct strbuf buf = STRBUF_INIT;
352
353 strbuf_reset(&buf);
354 if (opts->gpg_sign)
355 sq_quotef(&buf, "-S%s", opts->gpg_sign);
356 return buf.buf;
357}
358
9ff2f060 359void replay_opts_release(struct replay_opts *opts)
6a09c3a9
ÆAB
360{
361 free(opts->gpg_sign);
362 free(opts->reflog_action);
363 free(opts->default_strategy);
364 free(opts->strategy);
365 for (size_t i = 0; i < opts->xopts_nr; i++)
366 free(opts->xopts[i]);
367 free(opts->xopts);
368 strbuf_release(&opts->current_fixups);
a6a700a4
ÆAB
369 if (opts->revs)
370 release_revisions(opts->revs);
371 free(opts->revs);
6a09c3a9
ÆAB
372}
373
2863584f 374int sequencer_remove_state(struct replay_opts *opts)
26ae337b 375{
9055e401 376 struct strbuf buf = STRBUF_INIT;
6a09c3a9 377 int ret = 0;
03a4e260 378
9055e401
JS
379 if (is_rebase_i(opts) &&
380 strbuf_read_file(&buf, rebase_path_refs_to_delete(), 0) > 0) {
381 char *p = buf.buf;
382 while (*p) {
383 char *eol = strchr(p, '\n');
384 if (eol)
385 *eol = '\0';
c2417d3a 386 if (delete_ref("(rebase) cleanup", p, NULL, 0) < 0) {
9055e401 387 warning(_("could not delete '%s'"), p);
37e9ee5c
PW
388 ret = -1;
389 }
9055e401
JS
390 if (!eol)
391 break;
392 p = eol + 1;
393 }
394 }
395
9055e401
JS
396 strbuf_reset(&buf);
397 strbuf_addstr(&buf, get_dir(opts));
37e9ee5c
PW
398 if (remove_dir_recursively(&buf, 0))
399 ret = error(_("could not remove '%s'"), buf.buf);
9055e401 400 strbuf_release(&buf);
2863584f 401
37e9ee5c 402 return ret;
26ae337b 403}
043a4492
RR
404
405static const char *action_name(const struct replay_opts *opts)
406{
84583957
JS
407 switch (opts->action) {
408 case REPLAY_REVERT:
409 return N_("revert");
410 case REPLAY_PICK:
411 return N_("cherry-pick");
412 case REPLAY_INTERACTIVE_REBASE:
c2417d3a 413 return N_("rebase");
84583957 414 }
1a07e59c 415 die(_("unknown action: %d"), opts->action);
043a4492
RR
416}
417
043a4492
RR
418struct commit_message {
419 char *parent_label;
7b35eaf8
JK
420 char *label;
421 char *subject;
043a4492
RR
422 const char *message;
423};
424
39755964
JS
425static const char *short_commit_name(struct commit *commit)
426{
d850b7a5
ÆAB
427 return repo_find_unique_abbrev(the_repository, &commit->object.oid,
428 DEFAULT_ABBREV);
39755964
JS
429}
430
043a4492
RR
431static int get_message(struct commit *commit, struct commit_message *out)
432{
043a4492 433 const char *abbrev, *subject;
7b35eaf8 434 int subject_len;
043a4492 435
ecb5091f
ÆAB
436 out->message = repo_logmsg_reencode(the_repository, commit, NULL,
437 get_commit_output_encoding());
39755964 438 abbrev = short_commit_name(commit);
043a4492
RR
439
440 subject_len = find_commit_subject(out->message, &subject);
441
7b35eaf8 442 out->subject = xmemdupz(subject, subject_len);
7d056dea 443 out->label = xstrfmt("%s (%s)", abbrev, out->subject);
7b35eaf8
JK
444 out->parent_label = xstrfmt("parent of %s", out->label);
445
043a4492
RR
446 return 0;
447}
448
d74a4e57 449static void free_message(struct commit *commit, struct commit_message *msg)
043a4492
RR
450{
451 free(msg->parent_label);
7b35eaf8
JK
452 free(msg->label);
453 free(msg->subject);
ecb5091f 454 repo_unuse_commit_buffer(the_repository, commit, msg->message);
043a4492
RR
455}
456
005af339
NTND
457static void print_advice(struct repository *r, int show_hint,
458 struct replay_opts *opts)
043a4492
RR
459{
460 char *msg = getenv("GIT_CHERRY_PICK_HELP");
461
462 if (msg) {
f172556b 463 advise("%s\n", msg);
043a4492 464 /*
41ccfdd9 465 * A conflict has occurred but the porcelain
043a4492
RR
466 * (typically rebase --interactive) wants to take care
467 * of the commit itself so remove CHERRY_PICK_HEAD
468 */
c8e4159e
HWN
469 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
470 NULL, 0);
043a4492
RR
471 return;
472 }
473
ed727b19
PH
474 if (show_hint) {
475 if (opts->no_commit)
476 advise(_("after resolving the conflicts, mark the corrected paths\n"
477 "with 'git add <paths>' or 'git rm <paths>'"));
f172556b
ZH
478 else if (opts->action == REPLAY_PICK)
479 advise(_("After resolving the conflicts, mark them with\n"
480 "\"git add/rm <pathspec>\", then run\n"
481 "\"git cherry-pick --continue\".\n"
482 "You can instead skip this commit with \"git cherry-pick --skip\".\n"
483 "To abort and get back to the state before \"git cherry-pick\",\n"
484 "run \"git cherry-pick --abort\"."));
485 else if (opts->action == REPLAY_REVERT)
486 advise(_("After resolving the conflicts, mark them with\n"
487 "\"git add/rm <pathspec>\", then run\n"
488 "\"git revert --continue\".\n"
489 "You can instead skip this commit with \"git revert --skip\".\n"
490 "To abort and get back to the state before \"git revert\",\n"
491 "run \"git revert --abort\"."));
ed727b19 492 else
f172556b 493 BUG("unexpected pick action in print_advice()");
ed727b19 494 }
043a4492
RR
495}
496
ddb81e50
AG
497static int write_message(const void *buf, size_t len, const char *filename,
498 int append_eol)
043a4492 499{
14bca6c6 500 struct lock_file msg_file = LOCK_INIT;
043a4492 501
4ef3d8f0
JS
502 int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
503 if (msg_fd < 0)
93b3df6f 504 return error_errno(_("could not lock '%s'"), filename);
75871495 505 if (write_in_full(msg_fd, buf, len) < 0) {
bf5c0571 506 error_errno(_("could not write to '%s'"), filename);
4f66c837 507 rollback_lock_file(&msg_file);
bf5c0571 508 return -1;
4f66c837 509 }
f56fffef 510 if (append_eol && write(msg_fd, "\n", 1) < 0) {
bf5c0571 511 error_errno(_("could not write eol to '%s'"), filename);
f56fffef 512 rollback_lock_file(&msg_file);
bf5c0571 513 return -1;
f56fffef 514 }
350292a1
515 if (commit_lock_file(&msg_file) < 0)
516 return error(_("failed to finalize '%s'"), filename);
4ef3d8f0
JS
517
518 return 0;
043a4492
RR
519}
520
c20de8be 521int read_oneliner(struct strbuf *buf,
3442c3d1 522 const char *path, unsigned flags)
1dfc84e9
JS
523{
524 int orig_len = buf->len;
525
1dfc84e9 526 if (strbuf_read_file(buf, path, 0) < 0) {
bfa50c2c
DL
527 if ((flags & READ_ONELINER_WARN_MISSING) ||
528 (errno != ENOENT && errno != ENOTDIR))
5b2f6d9c 529 warning_errno(_("could not read '%s'"), path);
1dfc84e9
JS
530 return 0;
531 }
532
533 if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') {
534 if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r')
535 --buf->len;
536 buf->buf[buf->len] = '\0';
537 }
538
3442c3d1 539 if ((flags & READ_ONELINER_SKIP_IF_EMPTY) && buf->len == orig_len)
1dfc84e9
JS
540 return 0;
541
542 return 1;
543}
544
005af339 545static struct tree *empty_tree(struct repository *r)
043a4492 546{
005af339 547 return lookup_tree(r, the_hash_algo->empty_tree);
043a4492
RR
548}
549
e1ff0a32 550static int error_dirty_index(struct repository *repo, struct replay_opts *opts)
043a4492 551{
e1ff0a32 552 if (repo_read_index_unmerged(repo))
1c8dfc36 553 return error_resolve_conflict(action_name(opts));
043a4492 554
93b3df6f 555 error(_("your local changes would be overwritten by %s."),
c28cbc5e 556 _(action_name(opts)));
043a4492 557
ed9bff08 558 if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE))
93b3df6f 559 advise(_("commit your changes or stash them to proceed."));
043a4492
RR
560 return -1;
561}
562
1e41229d
SB
563static void update_abort_safety_file(void)
564{
565 struct object_id head;
566
567 /* Do nothing on a single-pick */
568 if (!file_exists(git_path_seq_dir()))
569 return;
570
d850b7a5 571 if (!repo_get_oid(the_repository, "HEAD", &head))
1e41229d
SB
572 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head));
573 else
574 write_file(git_path_abort_safety_file(), "%s", "");
575}
576
f11c9580
NTND
577static int fast_forward_to(struct repository *r,
578 const struct object_id *to,
579 const struct object_id *from,
580 int unborn,
581 struct replay_opts *opts)
043a4492 582{
d668d16c 583 struct ref_transaction *transaction;
eb4be1cb 584 struct strbuf sb = STRBUF_INIT;
d668d16c 585 struct strbuf err = STRBUF_INIT;
043a4492 586
e1ff0a32 587 repo_read_index(r);
f11c9580 588 if (checkout_fast_forward(r, from, to, 1))
0e408fc3 589 return -1; /* the callee should have complained already */
651ab9f5 590
5670e0ec 591 strbuf_addf(&sb, "%s: fast-forward", action_name(opts));
d668d16c
RS
592
593 transaction = ref_transaction_begin(&err);
594 if (!transaction ||
595 ref_transaction_update(transaction, "HEAD",
d87d48b2 596 to, unborn && !is_rebase_i(opts) ?
14228447 597 null_oid() : from,
1d147bdf 598 0, sb.buf, &err) ||
db7516ab 599 ref_transaction_commit(transaction, &err)) {
d668d16c
RS
600 ref_transaction_free(transaction);
601 error("%s", err.buf);
602 strbuf_release(&sb);
603 strbuf_release(&err);
604 return -1;
605 }
651ab9f5 606
eb4be1cb 607 strbuf_release(&sb);
d668d16c
RS
608 strbuf_release(&err);
609 ref_transaction_free(transaction);
1e41229d 610 update_abort_safety_file();
d668d16c 611 return 0;
043a4492
RR
612}
613
f29cd862
DL
614enum commit_msg_cleanup_mode get_cleanup_mode(const char *cleanup_arg,
615 int use_editor)
616{
617 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
618 return use_editor ? COMMIT_MSG_CLEANUP_ALL :
619 COMMIT_MSG_CLEANUP_SPACE;
620 else if (!strcmp(cleanup_arg, "verbatim"))
621 return COMMIT_MSG_CLEANUP_NONE;
622 else if (!strcmp(cleanup_arg, "whitespace"))
623 return COMMIT_MSG_CLEANUP_SPACE;
624 else if (!strcmp(cleanup_arg, "strip"))
625 return COMMIT_MSG_CLEANUP_ALL;
626 else if (!strcmp(cleanup_arg, "scissors"))
627 return use_editor ? COMMIT_MSG_CLEANUP_SCISSORS :
628 COMMIT_MSG_CLEANUP_SPACE;
629 else
630 die(_("Invalid cleanup mode %s"), cleanup_arg);
631}
632
dc42e9a8
PW
633/*
634 * NB using int rather than enum cleanup_mode to stop clang's
635 * -Wtautological-constant-out-of-range-compare complaining that the comparison
636 * is always true.
637 */
638static const char *describe_cleanup_mode(int cleanup_mode)
639{
640 static const char *modes[] = { "whitespace",
641 "verbatim",
642 "scissors",
643 "strip" };
644
645 if (cleanup_mode < ARRAY_SIZE(modes))
646 return modes[cleanup_mode];
647
648 BUG("invalid cleanup_mode provided (%d)", cleanup_mode);
649}
650
f11c9580 651void append_conflicts_hint(struct index_state *istate,
1a2b985f 652 struct strbuf *msgbuf, enum commit_msg_cleanup_mode cleanup_mode)
75c961b7
JH
653{
654 int i;
655
1a2b985f
DL
656 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
657 strbuf_addch(msgbuf, '\n');
658 wt_status_append_cut_line(msgbuf);
659 strbuf_addch(msgbuf, comment_line_char);
660 }
661
261f315b
JH
662 strbuf_addch(msgbuf, '\n');
663 strbuf_commented_addf(msgbuf, "Conflicts:\n");
f11c9580
NTND
664 for (i = 0; i < istate->cache_nr;) {
665 const struct cache_entry *ce = istate->cache[i++];
75c961b7 666 if (ce_stage(ce)) {
261f315b 667 strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
f11c9580
NTND
668 while (i < istate->cache_nr &&
669 !strcmp(ce->name, istate->cache[i]->name))
75c961b7
JH
670 i++;
671 }
672 }
673}
674
f11c9580
NTND
675static int do_recursive_merge(struct repository *r,
676 struct commit *base, struct commit *next,
043a4492 677 const char *base_label, const char *next_label,
48be4c62 678 struct object_id *head, struct strbuf *msgbuf,
043a4492
RR
679 struct replay_opts *opts)
680{
681 struct merge_options o;
14c4586c 682 struct merge_result result;
b4db8a2b 683 struct tree *next_tree, *base_tree, *head_tree;
14c4586c 684 int clean, show_output;
d20bc01a 685 int i;
14bca6c6 686 struct lock_file index_lock = LOCK_INIT;
043a4492 687
3a95f31d 688 if (repo_hold_locked_index(r, &index_lock, LOCK_REPORT_ON_ERROR) < 0)
bd588867 689 return -1;
043a4492 690
e1ff0a32 691 repo_read_index(r);
043a4492 692
0d6caa2d 693 init_merge_options(&o, r);
043a4492
RR
694 o.ancestor = base ? base_label : "(empty tree)";
695 o.branch1 = "HEAD";
696 o.branch2 = next ? next_label : "(empty tree)";
62fdb652
JS
697 if (is_rebase_i(opts))
698 o.buffer_output = 2;
9268cf4a 699 o.show_rename_progress = 1;
043a4492
RR
700
701 head_tree = parse_tree_indirect(head);
4a93b899
ÆAB
702 next_tree = next ? repo_get_commit_tree(r, next) : empty_tree(r);
703 base_tree = base ? repo_get_commit_tree(r, base) : empty_tree(r);
043a4492 704
d20bc01a
JK
705 for (i = 0; i < opts->xopts_nr; i++)
706 parse_merge_opt(&o, opts->xopts[i]);
043a4492 707
6a5fb966 708 if (!opts->strategy || !strcmp(opts->strategy, "ort")) {
14c4586c
EN
709 memset(&result, 0, sizeof(result));
710 merge_incore_nonrecursive(&o, base_tree, head_tree, next_tree,
711 &result);
712 show_output = !is_rebase_i(opts) || !result.clean;
713 /*
714 * TODO: merge_switch_to_result will update index/working tree;
715 * we only really want to do that if !result.clean || this is
716 * the final patch to be picked. But determining this is the
717 * final patch would take some work, and "head_tree" would need
718 * to be replace with the tree the index matched before we
719 * started doing any picks.
720 */
721 merge_switch_to_result(&o, head_tree, &result, 1, show_output);
722 clean = result.clean;
723 } else {
5d9c9349 724 ensure_full_index(r->index);
14c4586c
EN
725 clean = merge_trees(&o, head_tree, next_tree, base_tree);
726 if (is_rebase_i(opts) && clean <= 0)
727 fputs(o.obuf.buf, stdout);
728 strbuf_release(&o.obuf);
729 }
64816524
730 if (clean < 0) {
731 rollback_lock_file(&index_lock);
f241ff0d 732 return clean;
64816524 733 }
043a4492 734
f11c9580 735 if (write_locked_index(r->index, &index_lock,
61000814 736 COMMIT_LOCK | SKIP_IF_UNCHANGED))
66f5f6dc
ÆAB
737 /*
738 * TRANSLATORS: %s will be "revert", "cherry-pick" or
c2417d3a 739 * "rebase".
84583957 740 */
c527b55e 741 return error(_("%s: Unable to write new index file"),
c28cbc5e 742 _(action_name(opts)));
043a4492 743
75c961b7 744 if (!clean)
1a2b985f
DL
745 append_conflicts_hint(r->index, msgbuf,
746 opts->default_msg_cleanup);
043a4492
RR
747
748 return !clean;
749}
750
f11c9580 751static struct object_id *get_cache_tree_oid(struct index_state *istate)
ba97aea1 752{
f11c9580
NTND
753 if (!cache_tree_fully_valid(istate->cache_tree))
754 if (cache_tree_update(istate, 0)) {
ba97aea1
JS
755 error(_("unable to update cache tree"));
756 return NULL;
757 }
758
f11c9580 759 return &istate->cache_tree->oid;
ba97aea1
JS
760}
761
005af339 762static int is_index_unchanged(struct repository *r)
b27cfb0d 763{
ba97aea1 764 struct object_id head_oid, *cache_tree_oid;
b27cfb0d 765 struct commit *head_commit;
005af339 766 struct index_state *istate = r->index;
b27cfb0d 767
49e61479 768 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL))
aee42e1f 769 return error(_("could not resolve HEAD commit"));
b27cfb0d 770
005af339 771 head_commit = lookup_commit(r, &head_oid);
4b580061
NH
772
773 /*
774 * If head_commit is NULL, check_commit, called from
775 * lookup_commit, would have indicated that head_commit is not
c7c33f50 776 * a commit object already. repo_parse_commit() will return failure
4b580061 777 * without further complaints in such a case. Otherwise, if
c7c33f50 778 * the commit is invalid, repo_parse_commit() will complain. So
4b580061
NH
779 * there is nothing for us to say here. Just return failure.
780 */
4a93b899 781 if (repo_parse_commit(r, head_commit))
4b580061 782 return -1;
b27cfb0d 783
f11c9580 784 if (!(cache_tree_oid = get_cache_tree_oid(istate)))
ba97aea1 785 return -1;
b27cfb0d 786
4a7e27e9 787 return oideq(cache_tree_oid, get_commit_tree_oid(head_commit));
b27cfb0d
NH
788}
789
0473f28a
JS
790static int write_author_script(const char *message)
791{
792 struct strbuf buf = STRBUF_INIT;
793 const char *eol;
794 int res;
795
796 for (;;)
797 if (!*message || starts_with(message, "\n")) {
798missing_author:
799 /* Missing 'author' line? */
800 unlink(rebase_path_author_script());
801 return 0;
802 } else if (skip_prefix(message, "author ", &message))
803 break;
804 else if ((eol = strchr(message, '\n')))
805 message = eol + 1;
806 else
807 goto missing_author;
808
809 strbuf_addstr(&buf, "GIT_AUTHOR_NAME='");
810 while (*message && *message != '\n' && *message != '\r')
811 if (skip_prefix(message, " <", &message))
812 break;
813 else if (*message != '\'')
814 strbuf_addch(&buf, *(message++));
815 else
4aa5ff94 816 strbuf_addf(&buf, "'\\%c'", *(message++));
0473f28a
JS
817 strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='");
818 while (*message && *message != '\n' && *message != '\r')
819 if (skip_prefix(message, "> ", &message))
820 break;
821 else if (*message != '\'')
822 strbuf_addch(&buf, *(message++));
823 else
4aa5ff94 824 strbuf_addf(&buf, "'\\%c'", *(message++));
0473f28a
JS
825 strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@");
826 while (*message && *message != '\n' && *message != '\r')
827 if (*message != '\'')
828 strbuf_addch(&buf, *(message++));
829 else
4aa5ff94 830 strbuf_addf(&buf, "'\\%c'", *(message++));
0f16c09a 831 strbuf_addch(&buf, '\'');
0473f28a
JS
832 res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1);
833 strbuf_release(&buf);
834 return res;
835}
836
bcd33ec2
PW
837/**
838 * Take a series of KEY='VALUE' lines where VALUE part is
839 * sq-quoted, and append <KEY, VALUE> at the end of the string list
840 */
841static int parse_key_value_squoted(char *buf, struct string_list *list)
842{
843 while (*buf) {
844 struct string_list_item *item;
845 char *np;
846 char *cp = strchr(buf, '=');
847 if (!cp) {
848 np = strchrnul(buf, '\n');
849 return error(_("no key present in '%.*s'"),
850 (int) (np - buf), buf);
851 }
852 np = strchrnul(cp, '\n');
853 *cp++ = '\0';
854 item = string_list_append(list, buf);
855
856 buf = np + (*np == '\n');
857 *np = '\0';
858 cp = sq_dequote(cp);
859 if (!cp)
860 return error(_("unable to dequote value of '%s'"),
861 item->string);
862 item->util = xstrdup(cp);
863 }
864 return 0;
865}
4aa5ff94 866
bcd33ec2
PW
867/**
868 * Reads and parses the state directory's "author-script" file, and sets name,
869 * email and date accordingly.
870 * Returns 0 on success, -1 if the file could not be parsed.
871 *
872 * The author script is of the format:
873 *
874 * GIT_AUTHOR_NAME='$author_name'
875 * GIT_AUTHOR_EMAIL='$author_email'
876 * GIT_AUTHOR_DATE='$author_date'
877 *
878 * where $author_name, $author_email and $author_date are quoted. We are strict
c3c003e7 879 * with our parsing, as the file was meant to be eval'd in the now-removed
bcd33ec2
PW
880 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
881 * from what this function expects, it is better to bail out than to do
882 * something that the user does not expect.
4aa5ff94 883 */
bcd33ec2
PW
884int read_author_script(const char *path, char **name, char **email, char **date,
885 int allow_missing)
4aa5ff94 886{
bcd33ec2
PW
887 struct strbuf buf = STRBUF_INIT;
888 struct string_list kv = STRING_LIST_INIT_DUP;
889 int retval = -1; /* assume failure */
890 int i, name_i = -2, email_i = -2, date_i = -2, err = 0;
4aa5ff94 891
bcd33ec2
PW
892 if (strbuf_read_file(&buf, path, 256) <= 0) {
893 strbuf_release(&buf);
894 if (errno == ENOENT && allow_missing)
895 return 0;
896 else
897 return error_errno(_("could not open '%s' for reading"),
898 path);
899 }
900
901 if (parse_key_value_squoted(buf.buf, &kv))
902 goto finish;
903
904 for (i = 0; i < kv.nr; i++) {
905 if (!strcmp(kv.items[i].string, "GIT_AUTHOR_NAME")) {
906 if (name_i != -2)
907 name_i = error(_("'GIT_AUTHOR_NAME' already given"));
908 else
909 name_i = i;
910 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_EMAIL")) {
911 if (email_i != -2)
912 email_i = error(_("'GIT_AUTHOR_EMAIL' already given"));
913 else
914 email_i = i;
915 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_DATE")) {
916 if (date_i != -2)
917 date_i = error(_("'GIT_AUTHOR_DATE' already given"));
918 else
919 date_i = i;
920 } else {
921 err = error(_("unknown variable '%s'"),
922 kv.items[i].string);
923 }
924 }
925 if (name_i == -2)
926 error(_("missing 'GIT_AUTHOR_NAME'"));
927 if (email_i == -2)
928 error(_("missing 'GIT_AUTHOR_EMAIL'"));
929 if (date_i == -2)
930 error(_("missing 'GIT_AUTHOR_DATE'"));
45350aeb 931 if (name_i < 0 || email_i < 0 || date_i < 0 || err)
bcd33ec2 932 goto finish;
4d924528
JH
933 *name = kv.items[name_i].util;
934 *email = kv.items[email_i].util;
935 *date = kv.items[date_i].util;
bcd33ec2
PW
936 retval = 0;
937finish:
938 string_list_clear(&kv, !!retval);
939 strbuf_release(&buf);
940 return retval;
4aa5ff94
PW
941}
942
b5a67045 943/*
4d010a75 944 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
c972bf4c 945 * file with shell quoting into struct strvec. Returns -1 on
4d010a75 946 * error, 0 otherwise.
b5a67045 947 */
c972bf4c 948static int read_env_script(struct strvec *env)
b5a67045 949{
4d010a75 950 char *name, *email, *date;
b5a67045 951
4d010a75
PW
952 if (read_author_script(rebase_path_author_script(),
953 &name, &email, &date, 0))
a2a20b0d 954 return -1;
b5a67045 955
c972bf4c
JK
956 strvec_pushf(env, "GIT_AUTHOR_NAME=%s", name);
957 strvec_pushf(env, "GIT_AUTHOR_EMAIL=%s", email);
958 strvec_pushf(env, "GIT_AUTHOR_DATE=%s", date);
4d010a75
PW
959 free(name);
960 free(email);
961 free(date);
b5a67045 962
a2a20b0d 963 return 0;
b5a67045
JS
964}
965
356ee465
PW
966static char *get_author(const char *message)
967{
968 size_t len;
969 const char *a;
970
971 a = find_commit_header(message, "author", &len);
972 if (a)
973 return xmemdupz(a, len);
974
975 return NULL;
976}
977
b3193252 978static const char *author_date_from_env(const struct strvec *env)
7573cec5
PW
979{
980 int i;
981 const char *date;
982
9c31b19d
JH
983 for (i = 0; i < env->nr; i++)
984 if (skip_prefix(env->v[i],
7573cec5
PW
985 "GIT_AUTHOR_DATE=", &date))
986 return date;
987 /*
988 * If GIT_AUTHOR_DATE is missing we should have already errored out when
989 * reading the script
990 */
991 BUG("GIT_AUTHOR_DATE missing from author script");
992}
993
791eb870
JS
994static const char staged_changes_advice[] =
995N_("you have staged changes in your working tree\n"
996"If these changes are meant to be squashed into the previous commit, run:\n"
997"\n"
998" git commit --amend %s\n"
999"\n"
1000"If they are meant to go into a new commit, run:\n"
1001"\n"
1002" git commit %s\n"
1003"\n"
1004"In both cases, once you're done, continue with:\n"
1005"\n"
1006" git rebase --continue\n");
1007
789b3eff
JS
1008#define ALLOW_EMPTY (1<<0)
1009#define EDIT_MSG (1<<1)
1010#define AMEND_MSG (1<<2)
1011#define CLEANUP_MSG (1<<3)
b92ff6e8 1012#define VERIFY_MSG (1<<4)
d87d48b2 1013#define CREATE_ROOT_COMMIT (1<<5)
f7d42cee 1014#define VERBATIM_MSG (1<<6)
789b3eff 1015
34bec2c4
AG
1016static int run_command_silent_on_success(struct child_process *cmd)
1017{
1018 struct strbuf buf = STRBUF_INIT;
1019 int rc;
1020
1021 cmd->stdout_to_stderr = 1;
1022 rc = pipe_command(cmd,
1023 NULL, 0,
1024 NULL, 0,
1025 &buf, 0);
1026
1027 if (rc)
1028 fputs(buf.buf, stderr);
1029 strbuf_release(&buf);
1030 return rc;
1031}
1032
043a4492
RR
1033/*
1034 * If we are cherry-pick, and if the merge did not result in
1035 * hand-editing, we will hit this commit and inherit the original
1036 * author date and name.
b5a67045 1037 *
043a4492
RR
1038 * If we are revert, or if our cherry-pick results in a hand merge,
1039 * we had better say that the current user is responsible for that.
b5a67045
JS
1040 *
1041 * An exception is when run_git_commit() is called during an
1042 * interactive rebase: in that case, we will want to retain the
1043 * author metadata.
043a4492 1044 */
20f4b044 1045static int run_git_commit(const char *defmsg,
f11c9580 1046 struct replay_opts *opts,
789b3eff 1047 unsigned int flags)
043a4492 1048{
07d968ef 1049 struct child_process cmd = CHILD_PROCESS_INIT;
b27cfb0d 1050
f7d42cee
JS
1051 if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG))
1052 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1053
07d968ef
JS
1054 cmd.git_cmd = 1;
1055
9d6b9df1
PW
1056 if (is_rebase_i(opts) &&
1057 ((opts->committer_date_is_author_date && !opts->ignore_date) ||
1058 !(!defmsg && (flags & AMEND_MSG))) &&
29fda24d 1059 read_env_script(&cmd.env)) {
34bec2c4 1060 const char *gpg_opt = gpg_sign_opt_quoted(opts);
a1c75762 1061
34bec2c4
AG
1062 return error(_(staged_changes_advice),
1063 gpg_opt, gpg_opt);
b5a67045
JS
1064 }
1065
d188a60d
PW
1066 strvec_pushf(&cmd.env, GIT_REFLOG_ACTION "=%s", opts->reflog_message);
1067
7573cec5 1068 if (opts->committer_date_is_author_date)
29fda24d 1069 strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s",
9c31b19d
JH
1070 opts->ignore_date ?
1071 "" :
b3193252 1072 author_date_from_env(&cmd.env));
a3894aad 1073 if (opts->ignore_date)
29fda24d 1074 strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
7573cec5 1075
c972bf4c 1076 strvec_push(&cmd.args, "commit");
043a4492 1077
b92ff6e8 1078 if (!(flags & VERIFY_MSG))
c972bf4c 1079 strvec_push(&cmd.args, "-n");
789b3eff 1080 if ((flags & AMEND_MSG))
c972bf4c 1081 strvec_push(&cmd.args, "--amend");
3bdd5522 1082 if (opts->gpg_sign)
c972bf4c 1083 strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign);
cf0ad4d1 1084 else
c972bf4c 1085 strvec_push(&cmd.args, "--no-gpg-sign");
b5a67045 1086 if (defmsg)
c972bf4c 1087 strvec_pushl(&cmd.args, "-F", defmsg, NULL);
dc4b5bc3 1088 else if (!(flags & EDIT_MSG))
c972bf4c 1089 strvec_pushl(&cmd.args, "-C", "HEAD", NULL);
789b3eff 1090 if ((flags & CLEANUP_MSG))
c972bf4c 1091 strvec_push(&cmd.args, "--cleanup=strip");
f7d42cee
JS
1092 if ((flags & VERBATIM_MSG))
1093 strvec_push(&cmd.args, "--cleanup=verbatim");
789b3eff 1094 if ((flags & EDIT_MSG))
c972bf4c 1095 strvec_push(&cmd.args, "-e");
789b3eff 1096 else if (!(flags & CLEANUP_MSG) &&
0009426d 1097 !opts->signoff && !opts->record_origin &&
1a2b985f 1098 !opts->explicit_cleanup)
c972bf4c 1099 strvec_push(&cmd.args, "--cleanup=verbatim");
b27cfb0d 1100
789b3eff 1101 if ((flags & ALLOW_EMPTY))
c972bf4c 1102 strvec_push(&cmd.args, "--allow-empty");
df478b74 1103
a3ec9eaf 1104 if (!(flags & EDIT_MSG))
c972bf4c 1105 strvec_push(&cmd.args, "--allow-empty-message");
4bee9584 1106
34bec2c4
AG
1107 if (is_rebase_i(opts) && !(flags & EDIT_MSG))
1108 return run_command_silent_on_success(&cmd);
1109 else
1110 return run_command(&cmd);
b27cfb0d
NH
1111}
1112
d0aaa46f
PW
1113static int rest_is_empty(const struct strbuf *sb, int start)
1114{
1115 int i, eol;
1116 const char *nl;
1117
1118 /* Check if the rest is just whitespace and Signed-off-by's. */
1119 for (i = start; i < sb->len; i++) {
1120 nl = memchr(sb->buf + i, '\n', sb->len - i);
1121 if (nl)
1122 eol = nl - sb->buf;
1123 else
1124 eol = sb->len;
1125
1126 if (strlen(sign_off_header) <= eol - i &&
1127 starts_with(sb->buf + i, sign_off_header)) {
1128 i = eol;
1129 continue;
1130 }
1131 while (i < eol)
1132 if (!isspace(sb->buf[i++]))
1133 return 0;
1134 }
1135
1136 return 1;
1137}
1138
f29cd862
DL
1139void cleanup_message(struct strbuf *msgbuf,
1140 enum commit_msg_cleanup_mode cleanup_mode, int verbose)
1141{
1142 if (verbose || /* Truncate the message just before the diff, if any. */
1143 cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS)
1144 strbuf_setlen(msgbuf, wt_status_locate_end(msgbuf->buf, msgbuf->len));
1145 if (cleanup_mode != COMMIT_MSG_CLEANUP_NONE)
1146 strbuf_stripspace(msgbuf, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1147}
1148
d0aaa46f
PW
1149/*
1150 * Find out if the message in the strbuf contains only whitespace and
1151 * Signed-off-by lines.
1152 */
1153int message_is_empty(const struct strbuf *sb,
1154 enum commit_msg_cleanup_mode cleanup_mode)
1155{
1156 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1157 return 0;
1158 return rest_is_empty(sb, 0);
1159}
1160
1161/*
1162 * See if the user edited the message in the editor or left what
1163 * was in the template intact
1164 */
1165int template_untouched(const struct strbuf *sb, const char *template_file,
1166 enum commit_msg_cleanup_mode cleanup_mode)
1167{
1168 struct strbuf tmpl = STRBUF_INIT;
1169 const char *start;
1170
1171 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1172 return 0;
1173
1174 if (!template_file || strbuf_read_file(&tmpl, template_file, 0) <= 0)
1175 return 0;
1176
1177 strbuf_stripspace(&tmpl, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1178 if (!skip_prefix(sb->buf, tmpl.buf, &start))
1179 start = sb->buf;
1180 strbuf_release(&tmpl);
1181 return rest_is_empty(sb, start - sb->buf);
1182}
1183
0505d604
PW
1184int update_head_with_reflog(const struct commit *old_head,
1185 const struct object_id *new_head,
1186 const char *action, const struct strbuf *msg,
1187 struct strbuf *err)
1188{
1189 struct ref_transaction *transaction;
1190 struct strbuf sb = STRBUF_INIT;
1191 const char *nl;
1192 int ret = 0;
1193
1194 if (action) {
1195 strbuf_addstr(&sb, action);
1196 strbuf_addstr(&sb, ": ");
1197 }
1198
1199 nl = strchr(msg->buf, '\n');
1200 if (nl) {
1201 strbuf_add(&sb, msg->buf, nl + 1 - msg->buf);
1202 } else {
1203 strbuf_addbuf(&sb, msg);
1204 strbuf_addch(&sb, '\n');
1205 }
1206
1207 transaction = ref_transaction_begin(err);
1208 if (!transaction ||
1209 ref_transaction_update(transaction, "HEAD", new_head,
14228447 1210 old_head ? &old_head->object.oid : null_oid(),
0505d604
PW
1211 0, sb.buf, err) ||
1212 ref_transaction_commit(transaction, err)) {
1213 ret = -1;
1214 }
1215 ref_transaction_free(transaction);
1216 strbuf_release(&sb);
1217
1218 return ret;
1219}
1220
a87a6f3c
PW
1221static int run_rewrite_hook(const struct object_id *oldoid,
1222 const struct object_id *newoid)
1223{
1224 struct child_process proc = CHILD_PROCESS_INIT;
a87a6f3c
PW
1225 int code;
1226 struct strbuf sb = STRBUF_INIT;
2b709893 1227 const char *hook_path = find_hook("post-rewrite");
a87a6f3c 1228
2b709893 1229 if (!hook_path)
a87a6f3c
PW
1230 return 0;
1231
2b709893 1232 strvec_pushl(&proc.args, hook_path, "amend", NULL);
a87a6f3c
PW
1233 proc.in = -1;
1234 proc.stdout_to_stderr = 1;
6206286e 1235 proc.trace2_hook_name = "post-rewrite";
a87a6f3c
PW
1236
1237 code = start_command(&proc);
1238 if (code)
1239 return code;
1240 strbuf_addf(&sb, "%s %s\n", oid_to_hex(oldoid), oid_to_hex(newoid));
1241 sigchain_push(SIGPIPE, SIG_IGN);
1242 write_in_full(proc.in, sb.buf, sb.len);
1243 close(proc.in);
1244 strbuf_release(&sb);
1245 sigchain_pop(SIGPIPE);
1246 return finish_command(&proc);
1247}
1248
1d18d758
NTND
1249void commit_post_rewrite(struct repository *r,
1250 const struct commit *old_head,
a87a6f3c
PW
1251 const struct object_id *new_head)
1252{
1253 struct notes_rewrite_cfg *cfg;
1254
1255 cfg = init_copy_notes_for_rewrite("amend");
1256 if (cfg) {
1257 /* we are amending, so old_head is not NULL */
1258 copy_note_for_rewrite(cfg, &old_head->object.oid, new_head);
1d18d758 1259 finish_copy_notes_for_rewrite(r, cfg, "Notes added by 'git commit --amend'");
a87a6f3c
PW
1260 }
1261 run_rewrite_hook(&old_head->object.oid, new_head);
1262}
1263
f11c9580
NTND
1264static int run_prepare_commit_msg_hook(struct repository *r,
1265 struct strbuf *msg,
1266 const char *commit)
66618a50 1267{
49697cb7
PW
1268 int ret = 0;
1269 const char *name, *arg1 = NULL, *arg2 = NULL;
66618a50
PW
1270
1271 name = git_path_commit_editmsg();
1272 if (write_message(msg->buf, msg->len, name, 0))
1273 return -1;
1274
49697cb7
PW
1275 if (commit) {
1276 arg1 = "commit";
1277 arg2 = commit;
1278 } else {
1279 arg1 = "message";
1280 }
a8cc5943 1281 if (run_commit_hook(0, r->index_file, NULL, "prepare-commit-msg", name,
49697cb7 1282 arg1, arg2, NULL))
66618a50 1283 ret = error(_("'prepare-commit-msg' hook failed"));
66618a50
PW
1284
1285 return ret;
1286}
1287
e47c6caf
PW
1288static const char implicit_ident_advice_noconfig[] =
1289N_("Your name and email address were configured automatically based\n"
1290"on your username and hostname. Please check that they are accurate.\n"
1291"You can suppress this message by setting them explicitly. Run the\n"
1292"following command and follow the instructions in your editor to edit\n"
1293"your configuration file:\n"
1294"\n"
1295" git config --global --edit\n"
1296"\n"
1297"After doing this, you may fix the identity used for this commit with:\n"
1298"\n"
1299" git commit --amend --reset-author\n");
1300
1301static const char implicit_ident_advice_config[] =
1302N_("Your name and email address were configured automatically based\n"
1303"on your username and hostname. Please check that they are accurate.\n"
1304"You can suppress this message by setting them explicitly:\n"
1305"\n"
1306" git config --global user.name \"Your Name\"\n"
1307" git config --global user.email you@example.com\n"
1308"\n"
1309"After doing this, you may fix the identity used for this commit with:\n"
1310"\n"
1311" git commit --amend --reset-author\n");
1312
1313static const char *implicit_ident_advice(void)
1314{
a03b097d 1315 char *user_config = interpolate_path("~/.gitconfig", 0);
e47c6caf
PW
1316 char *xdg_config = xdg_config_home("config");
1317 int config_exists = file_exists(user_config) || file_exists(xdg_config);
1318
1319 free(user_config);
1320 free(xdg_config);
1321
1322 if (config_exists)
1323 return _(implicit_ident_advice_config);
1324 else
1325 return _(implicit_ident_advice_noconfig);
1326
1327}
1328
f11c9580
NTND
1329void print_commit_summary(struct repository *r,
1330 const char *prefix,
1331 const struct object_id *oid,
e47c6caf
PW
1332 unsigned int flags)
1333{
1334 struct rev_info rev;
1335 struct commit *commit;
1336 struct strbuf format = STRBUF_INIT;
1337 const char *head;
1338 struct pretty_print_context pctx = {0};
1339 struct strbuf author_ident = STRBUF_INIT;
1340 struct strbuf committer_ident = STRBUF_INIT;
ed90f041 1341 struct ref_store *refs;
e47c6caf 1342
f11c9580 1343 commit = lookup_commit(r, oid);
e47c6caf
PW
1344 if (!commit)
1345 die(_("couldn't look up newly created commit"));
4a93b899 1346 if (repo_parse_commit(r, commit))
e47c6caf
PW
1347 die(_("could not parse newly created commit"));
1348
1349 strbuf_addstr(&format, "format:%h] %s");
1350
4a93b899
ÆAB
1351 repo_format_commit_message(r, commit, "%an <%ae>", &author_ident,
1352 &pctx);
1353 repo_format_commit_message(r, commit, "%cn <%ce>", &committer_ident,
1354 &pctx);
e47c6caf
PW
1355 if (strbuf_cmp(&author_ident, &committer_ident)) {
1356 strbuf_addstr(&format, "\n Author: ");
1357 strbuf_addbuf_percentquote(&format, &author_ident);
1358 }
1359 if (flags & SUMMARY_SHOW_AUTHOR_DATE) {
1360 struct strbuf date = STRBUF_INIT;
1361
4a93b899 1362 repo_format_commit_message(r, commit, "%ad", &date, &pctx);
e47c6caf
PW
1363 strbuf_addstr(&format, "\n Date: ");
1364 strbuf_addbuf_percentquote(&format, &date);
1365 strbuf_release(&date);
1366 }
1367 if (!committer_ident_sufficiently_given()) {
1368 strbuf_addstr(&format, "\n Committer: ");
1369 strbuf_addbuf_percentquote(&format, &committer_ident);
ed9bff08 1370 if (advice_enabled(ADVICE_IMPLICIT_IDENTITY)) {
e47c6caf
PW
1371 strbuf_addch(&format, '\n');
1372 strbuf_addstr(&format, implicit_ident_advice());
1373 }
1374 }
1375 strbuf_release(&author_ident);
1376 strbuf_release(&committer_ident);
1377
f11c9580 1378 repo_init_revisions(r, &rev, prefix);
e47c6caf
PW
1379 setup_revisions(0, NULL, &rev, NULL);
1380
1381 rev.diff = 1;
1382 rev.diffopt.output_format =
1383 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1384
1385 rev.verbose_header = 1;
1386 rev.show_root_diff = 1;
1387 get_commit_format(format.buf, &rev);
1388 rev.always_show_header = 0;
0f57f731 1389 rev.diffopt.detect_rename = DIFF_DETECT_RENAME;
e47c6caf
PW
1390 diff_setup_done(&rev.diffopt);
1391
4a93b899 1392 refs = get_main_ref_store(r);
ce14de03 1393 head = refs_resolve_ref_unsafe(refs, "HEAD", 0, NULL, NULL);
09444e74
ÆAB
1394 if (!head)
1395 die(_("unable to resolve HEAD after creating commit"));
e47c6caf
PW
1396 if (!strcmp(head, "HEAD"))
1397 head = _("detached HEAD");
1398 else
1399 skip_prefix(head, "refs/heads/", &head);
1400 printf("[%s%s ", head, (flags & SUMMARY_INITIAL_COMMIT) ?
1401 _(" (root-commit)") : "");
1402
1403 if (!log_tree_commit(&rev, commit)) {
1404 rev.always_show_header = 1;
1405 rev.use_terminator = 1;
1406 log_tree_commit(&rev, commit);
1407 }
1408
2108fe4a 1409 release_revisions(&rev);
e47c6caf
PW
1410 strbuf_release(&format);
1411}
1412
005af339 1413static int parse_head(struct repository *r, struct commit **head)
356ee465
PW
1414{
1415 struct commit *current_head;
1416 struct object_id oid;
1417
4a93b899 1418 if (repo_get_oid(r, "HEAD", &oid)) {
356ee465
PW
1419 current_head = NULL;
1420 } else {
005af339 1421 current_head = lookup_commit_reference(r, &oid);
356ee465
PW
1422 if (!current_head)
1423 return error(_("could not parse HEAD"));
9001dc2a 1424 if (!oideq(&oid, &current_head->object.oid)) {
356ee465
PW
1425 warning(_("HEAD %s is not a commit!"),
1426 oid_to_hex(&oid));
1427 }
4a93b899 1428 if (repo_parse_commit(r, current_head))
356ee465
PW
1429 return error(_("could not parse HEAD commit"));
1430 }
1431 *head = current_head;
1432
1433 return 0;
1434}
1435
1436/*
1437 * Try to commit without forking 'git commit'. In some cases we need
1438 * to run 'git commit' to display an error message
1439 *
1440 * Returns:
1441 * -1 - error unable to commit
1442 * 0 - success
1443 * 1 - run 'git commit'
1444 */
f11c9580
NTND
1445static int try_to_commit(struct repository *r,
1446 struct strbuf *msg, const char *author,
356ee465
PW
1447 struct replay_opts *opts, unsigned int flags,
1448 struct object_id *oid)
1449{
1450 struct object_id tree;
b0a31861 1451 struct commit *current_head = NULL;
356ee465
PW
1452 struct commit_list *parents = NULL;
1453 struct commit_extra_header *extra = NULL;
1454 struct strbuf err = STRBUF_INIT;
66618a50 1455 struct strbuf commit_msg = STRBUF_INIT;
4d924528 1456 char *amend_author = NULL;
7573cec5 1457 const char *committer = NULL;
66618a50 1458 const char *hook_commit = NULL;
356ee465
PW
1459 enum commit_msg_cleanup_mode cleanup;
1460 int res = 0;
1461
f7d42cee
JS
1462 if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG))
1463 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1464
005af339 1465 if (parse_head(r, &current_head))
356ee465 1466 return -1;
4d924528 1467
356ee465 1468 if (flags & AMEND_MSG) {
42d4e1d1 1469 const char *exclude_gpgsig[] = { "gpgsig", "gpgsig-sha256", NULL };
356ee465 1470 const char *out_enc = get_commit_output_encoding();
4a93b899
ÆAB
1471 const char *message = repo_logmsg_reencode(r, current_head,
1472 NULL, out_enc);
356ee465
PW
1473
1474 if (!msg) {
1475 const char *orig_message = NULL;
1476
1477 find_commit_subject(message, &orig_message);
66618a50 1478 msg = &commit_msg;
356ee465 1479 strbuf_addstr(msg, orig_message);
66618a50 1480 hook_commit = "HEAD";
356ee465 1481 }
4d924528 1482 author = amend_author = get_author(message);
4a93b899 1483 repo_unuse_commit_buffer(r, current_head,
ecb5091f 1484 message);
356ee465
PW
1485 if (!author) {
1486 res = error(_("unable to parse commit author"));
1487 goto out;
1488 }
1489 parents = copy_commit_list(current_head->parents);
1490 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
b0a31861
PW
1491 } else if (current_head &&
1492 (!(flags & CREATE_ROOT_COMMIT) || (flags & AMEND_MSG))) {
356ee465
PW
1493 commit_list_insert(current_head, &parents);
1494 }
1495
f11c9580 1496 if (write_index_as_tree(&tree, r->index, r->index_file, 0, NULL)) {
356ee465
PW
1497 res = error(_("git write-tree failed to write a tree"));
1498 goto out;
1499 }
1500
2d05ef27
PW
1501 if (!(flags & ALLOW_EMPTY)) {
1502 struct commit *first_parent = current_head;
1503
1504 if (flags & AMEND_MSG) {
1505 if (current_head->parents) {
1506 first_parent = current_head->parents->item;
1507 if (repo_parse_commit(r, first_parent)) {
1508 res = error(_("could not parse HEAD commit"));
1509 goto out;
1510 }
1511 } else {
1512 first_parent = NULL;
1513 }
1514 }
1515 if (oideq(first_parent
1516 ? get_commit_tree_oid(first_parent)
1517 : the_hash_algo->empty_tree,
1518 &tree)) {
1519 res = 1; /* run 'git commit' to display error message */
1520 goto out;
1521 }
356ee465
PW
1522 }
1523
07a348e7 1524 if (hook_exists("prepare-commit-msg")) {
f11c9580 1525 res = run_prepare_commit_msg_hook(r, msg, hook_commit);
66618a50
PW
1526 if (res)
1527 goto out;
1528 if (strbuf_read_file(&commit_msg, git_path_commit_editmsg(),
1529 2048) < 0) {
1530 res = error_errno(_("unable to read commit message "
1531 "from '%s'"),
1532 git_path_commit_editmsg());
1533 goto out;
1534 }
1535 msg = &commit_msg;
1536 }
1537
d74f3e58
PW
1538 if (flags & CLEANUP_MSG)
1539 cleanup = COMMIT_MSG_CLEANUP_ALL;
f7d42cee
JS
1540 else if (flags & VERBATIM_MSG)
1541 cleanup = COMMIT_MSG_CLEANUP_NONE;
d74f3e58
PW
1542 else if ((opts->signoff || opts->record_origin) &&
1543 !opts->explicit_cleanup)
1544 cleanup = COMMIT_MSG_CLEANUP_SPACE;
1545 else
1546 cleanup = opts->default_msg_cleanup;
66618a50
PW
1547
1548 if (cleanup != COMMIT_MSG_CLEANUP_NONE)
1549 strbuf_stripspace(msg, cleanup == COMMIT_MSG_CLEANUP_ALL);
a3ec9eaf 1550 if ((flags & EDIT_MSG) && message_is_empty(msg, cleanup)) {
66618a50
PW
1551 res = 1; /* run 'git commit' to display error message */
1552 goto out;
1553 }
1554
7573cec5
PW
1555 if (opts->committer_date_is_author_date) {
1556 struct ident_split id;
1557 struct strbuf date = STRBUF_INIT;
1558
a3894aad
PW
1559 if (!opts->ignore_date) {
1560 if (split_ident_line(&id, author, (int)strlen(author)) < 0) {
1561 res = error(_("invalid author identity '%s'"),
1562 author);
1563 goto out;
1564 }
1565 if (!id.date_begin) {
1566 res = error(_(
1567 "corrupt author: missing date information"));
1568 goto out;
1569 }
1570 strbuf_addf(&date, "@%.*s %.*s",
1571 (int)(id.date_end - id.date_begin),
1572 id.date_begin,
1573 (int)(id.tz_end - id.tz_begin),
1574 id.tz_begin);
1575 } else {
1576 reset_ident_date();
7573cec5 1577 }
2020451c
JK
1578 committer = fmt_ident(getenv("GIT_COMMITTER_NAME"),
1579 getenv("GIT_COMMITTER_EMAIL"),
a3894aad
PW
1580 WANT_COMMITTER_IDENT,
1581 opts->ignore_date ? NULL : date.buf,
7573cec5
PW
1582 IDENT_STRICT);
1583 strbuf_release(&date);
1584 } else {
1585 reset_ident_date();
1586 }
12f7babd 1587
a3894aad
PW
1588 if (opts->ignore_date) {
1589 struct ident_split id;
1590 char *name, *email;
12f7babd 1591
a3894aad
PW
1592 if (split_ident_line(&id, author, strlen(author)) < 0) {
1593 error(_("invalid author identity '%s'"), author);
1594 goto out;
1595 }
1596 name = xmemdupz(id.name_begin, id.name_end - id.name_begin);
1597 email = xmemdupz(id.mail_begin, id.mail_end - id.mail_begin);
1598 author = fmt_ident(name, email, WANT_AUTHOR_IDENT, NULL,
1599 IDENT_STRICT);
1600 free(name);
1601 free(email);
1602 }
1603
e8cbe211 1604 if (commit_tree_extended(msg->buf, msg->len, &tree, parents, oid,
7573cec5 1605 author, committer, opts->gpg_sign, extra)) {
356ee465
PW
1606 res = error(_("failed to write commit object"));
1607 goto out;
1608 }
1609
d188a60d
PW
1610 if (update_head_with_reflog(current_head, oid, opts->reflog_message,
1611 msg, &err)) {
356ee465
PW
1612 res = error("%s", err.buf);
1613 goto out;
1614 }
1615
a8cc5943 1616 run_commit_hook(0, r->index_file, NULL, "post-commit", NULL);
356ee465 1617 if (flags & AMEND_MSG)
1d18d758 1618 commit_post_rewrite(r, current_head, oid);
356ee465
PW
1619
1620out:
1621 free_commit_extra_headers(extra);
1622 strbuf_release(&err);
66618a50 1623 strbuf_release(&commit_msg);
4d924528 1624 free(amend_author);
356ee465
PW
1625
1626 return res;
1627}
1628
430b75f7
PW
1629static int write_rebase_head(struct object_id *oid)
1630{
1631 if (update_ref("rebase", "REBASE_HEAD", oid,
1632 NULL, REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
1633 return error(_("could not update %s"), "REBASE_HEAD");
1634
1635 return 0;
1636}
1637
f11c9580
NTND
1638static int do_commit(struct repository *r,
1639 const char *msg_file, const char *author,
430b75f7
PW
1640 struct replay_opts *opts, unsigned int flags,
1641 struct object_id *oid)
356ee465
PW
1642{
1643 int res = 1;
1644
b0a31861 1645 if (!(flags & EDIT_MSG) && !(flags & VERIFY_MSG)) {
356ee465
PW
1646 struct object_id oid;
1647 struct strbuf sb = STRBUF_INIT;
1648
1649 if (msg_file && strbuf_read_file(&sb, msg_file, 2048) < 0)
1650 return error_errno(_("unable to read commit message "
1651 "from '%s'"),
1652 msg_file);
1653
f11c9580
NTND
1654 res = try_to_commit(r, msg_file ? &sb : NULL,
1655 author, opts, flags, &oid);
356ee465
PW
1656 strbuf_release(&sb);
1657 if (!res) {
c8e4159e
HWN
1658 refs_delete_ref(get_main_ref_store(r), "",
1659 "CHERRY_PICK_HEAD", NULL, 0);
f11c9580 1660 unlink(git_path_merge_msg(r));
356ee465 1661 if (!is_rebase_i(opts))
f11c9580 1662 print_commit_summary(r, NULL, &oid,
356ee465
PW
1663 SUMMARY_SHOW_AUTHOR_DATE);
1664 return res;
1665 }
1666 }
430b75f7
PW
1667 if (res == 1) {
1668 if (is_rebase_i(opts) && oid)
1669 if (write_rebase_head(oid))
1670 return -1;
20f4b044 1671 return run_git_commit(msg_file, opts, flags);
430b75f7 1672 }
356ee465
PW
1673
1674 return res;
1675}
1676
b27cfb0d
NH
1677static int is_original_commit_empty(struct commit *commit)
1678{
092bbcdf 1679 const struct object_id *ptree_oid;
b27cfb0d 1680
ecb5091f 1681 if (repo_parse_commit(the_repository, commit))
aee42e1f 1682 return error(_("could not parse commit %s"),
f2fd0760 1683 oid_to_hex(&commit->object.oid));
b27cfb0d
NH
1684 if (commit->parents) {
1685 struct commit *parent = commit->parents->item;
ecb5091f 1686 if (repo_parse_commit(the_repository, parent))
aee42e1f 1687 return error(_("could not parse parent commit %s"),
f2fd0760 1688 oid_to_hex(&parent->object.oid));
2e27bd77 1689 ptree_oid = get_commit_tree_oid(parent);
b27cfb0d 1690 } else {
eb0ccfd7 1691 ptree_oid = the_hash_algo->empty_tree; /* commit is root */
043a4492 1692 }
043a4492 1693
4a7e27e9 1694 return oideq(ptree_oid, get_commit_tree_oid(commit));
043a4492
RR
1695}
1696
ac2b0e8f 1697/*
e98c4269
EN
1698 * Should empty commits be allowed? Return status:
1699 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1700 * 0: Halt on empty commit
1701 * 1: Allow empty commit
1702 * 2: Drop empty commit
ac2b0e8f 1703 */
f11c9580
NTND
1704static int allow_empty(struct repository *r,
1705 struct replay_opts *opts,
1706 struct commit *commit)
ac2b0e8f 1707{
d48e5e21 1708 int index_unchanged, originally_empty;
ac2b0e8f
JH
1709
1710 /*
e98c4269 1711 * Four cases:
ac2b0e8f
JH
1712 *
1713 * (1) we do not allow empty at all and error out.
1714 *
e98c4269
EN
1715 * (2) we allow ones that were initially empty, and
1716 * just drop the ones that become empty
ac2b0e8f 1717 *
e98c4269
EN
1718 * (3) we allow ones that were initially empty, but
1719 * halt for the ones that become empty;
1720 *
1721 * (4) we allow both.
ac2b0e8f
JH
1722 */
1723 if (!opts->allow_empty)
1724 return 0; /* let "git commit" barf as necessary */
1725
005af339 1726 index_unchanged = is_index_unchanged(r);
ac2b0e8f
JH
1727 if (index_unchanged < 0)
1728 return index_unchanged;
1729 if (!index_unchanged)
1730 return 0; /* we do not have to say --allow-empty */
1731
1732 if (opts->keep_redundant_commits)
1733 return 1;
1734
d48e5e21
EN
1735 originally_empty = is_original_commit_empty(commit);
1736 if (originally_empty < 0)
1737 return originally_empty;
e98c4269 1738 if (originally_empty)
ac2b0e8f 1739 return 1;
e98c4269
EN
1740 else if (opts->drop_redundant_commits)
1741 return 2;
1742 else
1743 return 0;
ac2b0e8f
JH
1744}
1745
414697a9
JS
1746static struct {
1747 char c;
1748 const char *str;
1749} todo_command_info[] = {
d7ce9a22
DS
1750 [TODO_PICK] = { 'p', "pick" },
1751 [TODO_REVERT] = { 0, "revert" },
1752 [TODO_EDIT] = { 'e', "edit" },
1753 [TODO_REWORD] = { 'r', "reword" },
1754 [TODO_FIXUP] = { 'f', "fixup" },
1755 [TODO_SQUASH] = { 's', "squash" },
1756 [TODO_EXEC] = { 'x', "exec" },
1757 [TODO_BREAK] = { 'b', "break" },
1758 [TODO_LABEL] = { 'l', "label" },
1759 [TODO_RESET] = { 't', "reset" },
1760 [TODO_MERGE] = { 'm', "merge" },
a97d7916 1761 [TODO_UPDATE_REF] = { 'u', "update-ref" },
d7ce9a22
DS
1762 [TODO_NOOP] = { 0, "noop" },
1763 [TODO_DROP] = { 'd', "drop" },
1764 [TODO_COMMENT] = { 0, NULL },
004fefa7
JS
1765};
1766
1767static const char *command_to_string(const enum todo_command command)
1768{
ac191470 1769 if (command < TODO_COMMENT)
414697a9 1770 return todo_command_info[command].str;
02127c63 1771 die(_("unknown command: %d"), command);
004fefa7
JS
1772}
1773
ee5462d6 1774static char command_to_char(const enum todo_command command)
d8ae6c84 1775{
68e7090f 1776 if (command < TODO_COMMENT)
d8ae6c84
LB
1777 return todo_command_info[command].c;
1778 return comment_line_char;
1779}
1780
25c43667
JS
1781static int is_noop(const enum todo_command command)
1782{
b3fdd581 1783 return TODO_NOOP <= command;
25c43667 1784}
004fefa7 1785
6e98de72
JS
1786static int is_fixup(enum todo_command command)
1787{
1788 return command == TODO_FIXUP || command == TODO_SQUASH;
1789}
1790
d87d48b2
JS
1791/* Does this command create a (non-merge) commit? */
1792static int is_pick_or_similar(enum todo_command command)
1793{
1794 switch (command) {
1795 case TODO_PICK:
1796 case TODO_REVERT:
1797 case TODO_EDIT:
1798 case TODO_REWORD:
1799 case TODO_FIXUP:
1800 case TODO_SQUASH:
1801 return 1;
1802 default:
1803 return 0;
1804 }
1805}
1806
9e3cebd9
CM
1807enum todo_item_flags {
1808 TODO_EDIT_MERGE_MSG = (1 << 0),
1809 TODO_REPLACE_FIXUP_MSG = (1 << 1),
1810 TODO_EDIT_FIXUP_MSG = (1 << 2),
1811};
1812
71ee81cd
CM
1813static const char first_commit_msg_str[] = N_("This is the 1st commit message:");
1814static const char nth_commit_msg_fmt[] = N_("This is the commit message #%d:");
9e3cebd9 1815static const char skip_first_commit_msg_str[] = N_("The 1st commit message will be skipped:");
71ee81cd
CM
1816static const char skip_nth_commit_msg_fmt[] = N_("The commit message #%d will be skipped:");
1817static const char combined_commit_msg_fmt[] = N_("This is a combination of %d commits.");
1818
1f969601 1819static int is_fixup_flag(enum todo_command command, unsigned flag)
498bb5b8 1820{
9e3cebd9
CM
1821 return command == TODO_FIXUP && ((flag & TODO_REPLACE_FIXUP_MSG) ||
1822 (flag & TODO_EDIT_FIXUP_MSG));
1823}
7cdb9682 1824
9e3cebd9
CM
1825/*
1826 * Wrapper around strbuf_add_commented_lines() which avoids double
1827 * commenting commit subjects.
1828 */
1829static void add_commented_lines(struct strbuf *buf, const void *str, size_t len)
1830{
1831 const char *s = str;
1832 while (len > 0 && s[0] == comment_line_char) {
1833 size_t count;
1834 const char *n = memchr(s, '\n', len);
1835 if (!n)
1836 count = len;
1837 else
1838 count = n - s + 1;
1839 strbuf_add(buf, s, count);
1840 s += count;
1841 len -= count;
1842 }
1843 strbuf_add_commented_lines(buf, s, len);
1844}
1845
1846/* Does the current fixup chain contain a squash command? */
1847static int seen_squash(struct replay_opts *opts)
1848{
1849 return starts_with(opts->current_fixups.buf, "squash") ||
1850 strstr(opts->current_fixups.buf, "\nsquash");
1851}
1852
1853static void update_comment_bufs(struct strbuf *buf1, struct strbuf *buf2, int n)
1854{
1855 strbuf_setlen(buf1, 2);
1856 strbuf_addf(buf1, _(nth_commit_msg_fmt), n);
1857 strbuf_addch(buf1, '\n');
1858 strbuf_setlen(buf2, 2);
1859 strbuf_addf(buf2, _(skip_nth_commit_msg_fmt), n);
1860 strbuf_addch(buf2, '\n');
1861}
1862
1863/*
1864 * Comment out any un-commented commit messages, updating the message comments
1865 * to say they will be skipped but do not comment out the empty lines that
1866 * surround commit messages and their comments.
1867 */
1868static void update_squash_message_for_fixup(struct strbuf *msg)
1869{
1870 void (*copy_lines)(struct strbuf *, const void *, size_t) = strbuf_add;
1871 struct strbuf buf1 = STRBUF_INIT, buf2 = STRBUF_INIT;
1872 const char *s, *start;
1873 char *orig_msg;
1874 size_t orig_msg_len;
1875 int i = 1;
1876
1877 strbuf_addf(&buf1, "# %s\n", _(first_commit_msg_str));
1878 strbuf_addf(&buf2, "# %s\n", _(skip_first_commit_msg_str));
1879 s = start = orig_msg = strbuf_detach(msg, &orig_msg_len);
1880 while (s) {
1881 const char *next;
1882 size_t off;
1883 if (skip_prefix(s, buf1.buf, &next)) {
1884 /*
1885 * Copy the last message, preserving the blank line
1886 * preceding the current line
1887 */
1888 off = (s > start + 1 && s[-2] == '\n') ? 1 : 0;
1889 copy_lines(msg, start, s - start - off);
1890 if (off)
1891 strbuf_addch(msg, '\n');
1892 /*
1893 * The next message needs to be commented out but the
1894 * message header is already commented out so just copy
1895 * it and the blank line that follows it.
1896 */
1897 strbuf_addbuf(msg, &buf2);
1898 if (*next == '\n')
1899 strbuf_addch(msg, *next++);
1900 start = s = next;
1901 copy_lines = add_commented_lines;
1902 update_comment_bufs(&buf1, &buf2, ++i);
1903 } else if (skip_prefix(s, buf2.buf, &next)) {
1904 off = (s > start + 1 && s[-2] == '\n') ? 1 : 0;
1905 copy_lines(msg, start, s - start - off);
1906 start = s - off;
1907 s = next;
1908 copy_lines = strbuf_add;
1909 update_comment_bufs(&buf1, &buf2, ++i);
1910 } else {
1911 s = strchr(s, '\n');
1912 if (s)
1913 s++;
1914 }
1915 }
1916 copy_lines(msg, start, orig_msg_len - (start - orig_msg));
1917 free(orig_msg);
1918 strbuf_release(&buf1);
1919 strbuf_release(&buf2);
1920}
1921
1922static int append_squash_message(struct strbuf *buf, const char *body,
1923 enum todo_command command, struct replay_opts *opts,
a25314c1 1924 unsigned flag)
9e3cebd9
CM
1925{
1926 const char *fixup_msg;
1927 size_t commented_len = 0, fixup_off;
1928 /*
1929 * amend is non-interactive and not normally used with fixup!
1930 * or squash! commits, so only comment out those subjects when
1931 * squashing commit messages.
1932 */
1933 if (starts_with(body, "amend!") ||
1934 ((command == TODO_SQUASH || seen_squash(opts)) &&
1935 (starts_with(body, "squash!") || starts_with(body, "fixup!"))))
6e0e2887 1936 commented_len = commit_subject_length(body);
9e3cebd9 1937
498bb5b8 1938 strbuf_addf(buf, "\n%c ", comment_line_char);
71ee81cd 1939 strbuf_addf(buf, _(nth_commit_msg_fmt),
498bb5b8
PW
1940 ++opts->current_fixup_count + 1);
1941 strbuf_addstr(buf, "\n\n");
7cdb9682 1942 strbuf_add_commented_lines(buf, body, commented_len);
9e3cebd9
CM
1943 /* buf->buf may be reallocated so store an offset into the buffer */
1944 fixup_off = buf->len;
7cdb9682 1945 strbuf_addstr(buf, body + commented_len);
9e3cebd9
CM
1946
1947 /* fixup -C after squash behaves like squash */
1f969601 1948 if (is_fixup_flag(command, flag) && !seen_squash(opts)) {
9e3cebd9
CM
1949 /*
1950 * We're replacing the commit message so we need to
1951 * append the Signed-off-by: trailer if the user
1952 * requested '--signoff'.
1953 */
1954 if (opts->signoff)
1955 append_signoff(buf, 0, 0);
1956
1957 if ((command == TODO_FIXUP) &&
1958 (flag & TODO_REPLACE_FIXUP_MSG) &&
1959 (file_exists(rebase_path_fixup_msg()) ||
1960 !file_exists(rebase_path_squash_msg()))) {
1961 fixup_msg = skip_blank_lines(buf->buf + fixup_off);
1962 if (write_message(fixup_msg, strlen(fixup_msg),
1963 rebase_path_fixup_msg(), 0) < 0)
1964 return error(_("cannot write '%s'"),
1965 rebase_path_fixup_msg());
1966 } else {
1967 unlink(rebase_path_fixup_msg());
1968 }
1969 } else {
1970 unlink(rebase_path_fixup_msg());
1971 }
1972
1973 return 0;
498bb5b8
PW
1974}
1975
005af339
NTND
1976static int update_squash_messages(struct repository *r,
1977 enum todo_command command,
1978 struct commit *commit,
9e3cebd9 1979 struct replay_opts *opts,
a25314c1 1980 unsigned flag)
6e98de72
JS
1981{
1982 struct strbuf buf = STRBUF_INIT;
9e3cebd9 1983 int res = 0;
6e98de72 1984 const char *message, *body;
b3757442 1985 const char *encoding = get_commit_output_encoding();
6e98de72 1986
e12a7ef5 1987 if (opts->current_fixup_count > 0) {
6e98de72 1988 struct strbuf header = STRBUF_INIT;
e12a7ef5 1989 char *eol;
6e98de72 1990
e12a7ef5 1991 if (strbuf_read_file(&buf, rebase_path_squash_msg(), 9) <= 0)
6e98de72
JS
1992 return error(_("could not read '%s'"),
1993 rebase_path_squash_msg());
1994
e12a7ef5
JS
1995 eol = buf.buf[0] != comment_line_char ?
1996 buf.buf : strchrnul(buf.buf, '\n');
6e98de72
JS
1997
1998 strbuf_addf(&header, "%c ", comment_line_char);
71ee81cd 1999 strbuf_addf(&header, _(combined_commit_msg_fmt),
e12a7ef5 2000 opts->current_fixup_count + 2);
6e98de72
JS
2001 strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len);
2002 strbuf_release(&header);
1f969601 2003 if (is_fixup_flag(command, flag) && !seen_squash(opts))
9e3cebd9 2004 update_squash_message_for_fixup(&buf);
6e98de72 2005 } else {
33d66df3 2006 struct object_id head;
6e98de72
JS
2007 struct commit *head_commit;
2008 const char *head_message, *body;
2009
4a93b899 2010 if (repo_get_oid(r, "HEAD", &head))
6e98de72 2011 return error(_("need a HEAD to fixup"));
005af339 2012 if (!(head_commit = lookup_commit_reference(r, &head)))
6e98de72 2013 return error(_("could not read HEAD"));
4a93b899
ÆAB
2014 if (!(head_message = repo_logmsg_reencode(r, head_commit, NULL,
2015 encoding)))
6e98de72
JS
2016 return error(_("could not read HEAD's commit message"));
2017
2018 find_commit_subject(head_message, &body);
9e3cebd9 2019 if (command == TODO_FIXUP && !flag && write_message(body, strlen(body),
eab0df0e 2020 rebase_path_fixup_msg(), 0) < 0) {
4a93b899 2021 repo_unuse_commit_buffer(r, head_commit, head_message);
eab0df0e 2022 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
6e98de72 2023 }
6e98de72 2024 strbuf_addf(&buf, "%c ", comment_line_char);
71ee81cd 2025 strbuf_addf(&buf, _(combined_commit_msg_fmt), 2);
6e98de72 2026 strbuf_addf(&buf, "\n%c ", comment_line_char);
1f969601 2027 strbuf_addstr(&buf, is_fixup_flag(command, flag) ?
9e3cebd9
CM
2028 _(skip_first_commit_msg_str) :
2029 _(first_commit_msg_str));
6e98de72 2030 strbuf_addstr(&buf, "\n\n");
1f969601 2031 if (is_fixup_flag(command, flag))
9e3cebd9
CM
2032 strbuf_add_commented_lines(&buf, body, strlen(body));
2033 else
2034 strbuf_addstr(&buf, body);
6e98de72 2035
4a93b899 2036 repo_unuse_commit_buffer(r, head_commit, head_message);
6e98de72
JS
2037 }
2038
4a93b899 2039 if (!(message = repo_logmsg_reencode(r, commit, NULL, encoding)))
6e98de72
JS
2040 return error(_("could not read commit message of %s"),
2041 oid_to_hex(&commit->object.oid));
2042 find_commit_subject(message, &body);
2043
1f969601 2044 if (command == TODO_SQUASH || is_fixup_flag(command, flag)) {
9e3cebd9 2045 res = append_squash_message(&buf, body, command, opts, flag);
6e98de72
JS
2046 } else if (command == TODO_FIXUP) {
2047 strbuf_addf(&buf, "\n%c ", comment_line_char);
71ee81cd 2048 strbuf_addf(&buf, _(skip_nth_commit_msg_fmt),
dd2e36eb 2049 ++opts->current_fixup_count + 1);
6e98de72
JS
2050 strbuf_addstr(&buf, "\n\n");
2051 strbuf_add_commented_lines(&buf, body, strlen(body));
2052 } else
2053 return error(_("unknown command: %d"), command);
4a93b899 2054 repo_unuse_commit_buffer(r, commit, message);
6e98de72 2055
9e3cebd9
CM
2056 if (!res)
2057 res = write_message(buf.buf, buf.len, rebase_path_squash_msg(),
2058 0);
6e98de72 2059 strbuf_release(&buf);
e12a7ef5
JS
2060
2061 if (!res) {
2062 strbuf_addf(&opts->current_fixups, "%s%s %s",
2063 opts->current_fixups.len ? "\n" : "",
2064 command_to_string(command),
2065 oid_to_hex(&commit->object.oid));
2066 res = write_message(opts->current_fixups.buf,
2067 opts->current_fixups.len,
2068 rebase_path_current_fixups(), 0);
2069 }
2070
6e98de72
JS
2071 return res;
2072}
2073
3b335762
NTND
2074static void flush_rewritten_pending(void)
2075{
25cb8df9 2076 struct strbuf buf = STRBUF_INIT;
092bbcdf 2077 struct object_id newoid;
25cb8df9
JS
2078 FILE *out;
2079
092bbcdf 2080 if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 &&
d850b7a5 2081 !repo_get_oid(the_repository, "HEAD", &newoid) &&
e9d983f1 2082 (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
25cb8df9
JS
2083 char *bol = buf.buf, *eol;
2084
2085 while (*bol) {
2086 eol = strchrnul(bol, '\n');
2087 fprintf(out, "%.*s %s\n", (int)(eol - bol),
092bbcdf 2088 bol, oid_to_hex(&newoid));
25cb8df9
JS
2089 if (!*eol)
2090 break;
2091 bol = eol + 1;
2092 }
2093 fclose(out);
2094 unlink(rebase_path_rewritten_pending());
2095 }
2096 strbuf_release(&buf);
2097}
2098
2099static void record_in_rewritten(struct object_id *oid,
3b335762
NTND
2100 enum todo_command next_command)
2101{
e9d983f1 2102 FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a");
25cb8df9
JS
2103
2104 if (!out)
2105 return;
2106
2107 fprintf(out, "%s\n", oid_to_hex(oid));
2108 fclose(out);
2109
2110 if (!is_fixup(next_command))
2111 flush_rewritten_pending();
2112}
2113
39edfd5c
EN
2114static int should_edit(struct replay_opts *opts) {
2115 if (opts->edit < 0)
2116 /*
2117 * Note that we only handle the case of non-conflicted
2118 * commits; continue_single_pick() handles the conflicted
2119 * commits itself instead of calling this function.
2120 */
2121 return (opts->action == REPLAY_REVERT && isatty(0)) ? 1 : 0;
2122 return opts->edit;
2123}
2124
43966ab3
JH
2125static void refer_to_commit(struct replay_opts *opts,
2126 struct strbuf *msgbuf, struct commit *commit)
2127{
2128 if (opts->commit_use_reference) {
2129 struct pretty_print_context ctx = {
2130 .abbrev = DEFAULT_ABBREV,
2131 .date_mode.type = DATE_SHORT,
2132 };
bab82164
ÆAB
2133 repo_format_commit_message(the_repository, commit,
2134 "%h (%s, %ad)", msgbuf, &ctx);
43966ab3
JH
2135 } else {
2136 strbuf_addstr(msgbuf, oid_to_hex(&commit->object.oid));
2137 }
2138}
2139
f11c9580 2140static int do_pick_commit(struct repository *r,
ae70e34f 2141 struct todo_item *item,
f11c9580 2142 struct replay_opts *opts,
a47ba3c7 2143 int final_fixup, int *check_todo)
043a4492 2144{
39edfd5c
EN
2145 unsigned int flags = should_edit(opts) ? EDIT_MSG : 0;
2146 const char *msg_file = should_edit(opts) ? NULL : git_path_merge_msg(r);
ace976b2 2147 struct object_id head;
043a4492
RR
2148 struct commit *base, *next, *parent;
2149 const char *base_label, *next_label;
356ee465 2150 char *author = NULL;
d74a4e57 2151 struct commit_message msg = { NULL, NULL, NULL, NULL };
043a4492 2152 struct strbuf msgbuf = STRBUF_INIT;
e98c4269 2153 int res, unborn = 0, reword = 0, allow, drop_commit;
ae70e34f
CM
2154 enum todo_command command = item->command;
2155 struct commit *commit = item->commit;
043a4492
RR
2156
2157 if (opts->no_commit) {
2158 /*
2159 * We do not intend to commit immediately. We just want to
2160 * merge the differences in, so let's compute the tree
81483fe6 2161 * that represents the "current" state for the merge machinery
043a4492
RR
2162 * to work on.
2163 */
f11c9580 2164 if (write_index_as_tree(&head, r->index, r->index_file, 0, NULL))
93b3df6f 2165 return error(_("your index file is unmerged."));
043a4492 2166 } else {
4a93b899 2167 unborn = repo_get_oid(r, "HEAD", &head);
d87d48b2
JS
2168 /* Do we want to generate a root commit? */
2169 if (is_pick_or_similar(command) && opts->have_squash_onto &&
4a7e27e9 2170 oideq(&head, &opts->squash_onto)) {
d87d48b2
JS
2171 if (is_fixup(command))
2172 return error(_("cannot fixup root commit"));
2173 flags |= CREATE_ROOT_COMMIT;
2174 unborn = 1;
2175 } else if (unborn)
eb0ccfd7 2176 oidcpy(&head, the_hash_algo->empty_tree);
ffc00a48 2177 if (index_differs_from(r, unborn ? empty_tree_oid_hex() : "HEAD",
02f2f56b 2178 NULL, 0))
e1ff0a32 2179 return error_dirty_index(r, opts);
043a4492 2180 }
f11c9580 2181 discard_index(r->index);
043a4492 2182
637666c8 2183 if (!commit->parents)
043a4492 2184 parent = NULL;
043a4492
RR
2185 else if (commit->parents->next) {
2186 /* Reverting or cherry-picking a merge commit */
2187 int cnt;
2188 struct commit_list *p;
2189
2190 if (!opts->mainline)
93b3df6f 2191 return error(_("commit %s is a merge but no -m option was given."),
f2fd0760 2192 oid_to_hex(&commit->object.oid));
043a4492
RR
2193
2194 for (cnt = 1, p = commit->parents;
2195 cnt != opts->mainline && p;
2196 cnt++)
2197 p = p->next;
2198 if (cnt != opts->mainline || !p)
93b3df6f 2199 return error(_("commit %s does not have parent %d"),
f2fd0760 2200 oid_to_hex(&commit->object.oid), opts->mainline);
043a4492 2201 parent = p->item;
37897bfc
SO
2202 } else if (1 < opts->mainline)
2203 /*
2204 * Non-first parent explicitly specified as mainline for
2205 * non-merge commit
2206 */
2207 return error(_("commit %s does not have parent %d"),
2208 oid_to_hex(&commit->object.oid), opts->mainline);
043a4492
RR
2209 else
2210 parent = commit->parents->item;
2211
bcbb68be
JS
2212 if (get_message(commit, &msg) != 0)
2213 return error(_("cannot get commit message for %s"),
2214 oid_to_hex(&commit->object.oid));
2215
6e98de72 2216 if (opts->allow_ff && !is_fixup(command) &&
4a7e27e9 2217 ((parent && oideq(&parent->object.oid, &head)) ||
bcbb68be
JS
2218 (!parent && unborn))) {
2219 if (is_rebase_i(opts))
2220 write_author_script(msg.message);
f11c9580 2221 res = fast_forward_to(r, &commit->object.oid, &head, unborn,
bcbb68be
JS
2222 opts);
2223 if (res || command != TODO_REWORD)
2224 goto leave;
450efe2d 2225 reword = 1;
bcbb68be
JS
2226 msg_file = NULL;
2227 goto fast_forward_edit;
2228 }
4a93b899 2229 if (parent && repo_parse_commit(r, parent) < 0)
004fefa7
JS
2230 /* TRANSLATORS: The first %s will be a "todo" command like
2231 "revert" or "pick", the second %s a SHA1. */
043a4492 2232 return error(_("%s: cannot parse parent commit %s"),
004fefa7
JS
2233 command_to_string(command),
2234 oid_to_hex(&parent->object.oid));
043a4492 2235
043a4492
RR
2236 /*
2237 * "commit" is an existing commit. We would want to apply
2238 * the difference it introduces since its first parent "prev"
2239 * on top of the current HEAD if we are cherry-pick. Or the
2240 * reverse of it if we are revert.
2241 */
2242
004fefa7 2243 if (command == TODO_REVERT) {
043a4492
RR
2244 base = commit;
2245 base_label = msg.label;
2246 next = parent;
2247 next_label = msg.parent_label;
43966ab3
JH
2248 if (opts->commit_use_reference) {
2249 strbuf_addstr(&msgbuf,
2250 "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***");
2251 } else {
2252 strbuf_addstr(&msgbuf, "Revert \"");
2253 strbuf_addstr(&msgbuf, msg.subject);
2254 strbuf_addstr(&msgbuf, "\"");
2255 }
2256 strbuf_addstr(&msgbuf, "\n\nThis reverts commit ");
2257 refer_to_commit(opts, &msgbuf, commit);
043a4492
RR
2258
2259 if (commit->parents && commit->parents->next) {
2260 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
43966ab3 2261 refer_to_commit(opts, &msgbuf, parent);
043a4492
RR
2262 }
2263 strbuf_addstr(&msgbuf, ".\n");
2264 } else {
2265 const char *p;
2266
2267 base = parent;
2268 base_label = msg.parent_label;
2269 next = commit;
2270 next_label = msg.label;
2271
23aa5142
JS
2272 /* Append the commit log message to msgbuf. */
2273 if (find_commit_subject(msg.message, &p))
2274 strbuf_addstr(&msgbuf, p);
043a4492
RR
2275
2276 if (opts->record_origin) {
44dc738a 2277 strbuf_complete_line(&msgbuf);
bab4d109 2278 if (!has_conforming_footer(&msgbuf, NULL, 0))
b971e04f 2279 strbuf_addch(&msgbuf, '\n');
cd650a4e 2280 strbuf_addstr(&msgbuf, cherry_picked_prefix);
f2fd0760 2281 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
043a4492
RR
2282 strbuf_addstr(&msgbuf, ")\n");
2283 }
356ee465
PW
2284 if (!is_fixup(command))
2285 author = get_author(msg.message);
043a4492
RR
2286 }
2287
04efc8b5 2288 if (command == TODO_REWORD)
450efe2d 2289 reword = 1;
04efc8b5 2290 else if (is_fixup(command)) {
9e3cebd9 2291 if (update_squash_messages(r, command, commit,
a5792e9d
ÆAB
2292 opts, item->flags)) {
2293 res = -1;
2294 goto leave;
2295 }
789b3eff 2296 flags |= AMEND_MSG;
6e98de72
JS
2297 if (!final_fixup)
2298 msg_file = rebase_path_squash_msg();
2299 else if (file_exists(rebase_path_fixup_msg())) {
f7d42cee 2300 flags |= VERBATIM_MSG;
6e98de72
JS
2301 msg_file = rebase_path_fixup_msg();
2302 } else {
f11c9580 2303 const char *dest = git_path_squash_msg(r);
6e98de72 2304 unlink(dest);
a5792e9d
ÆAB
2305 if (copy_file(dest, rebase_path_squash_msg(), 0666)) {
2306 res = error(_("could not rename '%s' to '%s'"),
2307 rebase_path_squash_msg(), dest);
2308 goto leave;
2309 }
f11c9580 2310 unlink(git_path_merge_msg(r));
6e98de72 2311 msg_file = dest;
789b3eff 2312 flags |= EDIT_MSG;
6e98de72
JS
2313 }
2314 }
2315
a852ec7f 2316 if (opts->signoff && !is_fixup(command))
b34eeea3
PW
2317 append_signoff(&msgbuf, 0, 0);
2318
0473f28a
JS
2319 if (is_rebase_i(opts) && write_author_script(msg.message) < 0)
2320 res = -1;
14c4586c
EN
2321 else if (!opts->strategy ||
2322 !strcmp(opts->strategy, "recursive") ||
2323 !strcmp(opts->strategy, "ort") ||
2324 command == TODO_REVERT) {
f11c9580 2325 res = do_recursive_merge(r, base, next, base_label, next_label,
48be4c62 2326 &head, &msgbuf, opts);
f241ff0d 2327 if (res < 0)
19517fb9
SB
2328 goto leave;
2329
75871495 2330 res |= write_message(msgbuf.buf, msgbuf.len,
f11c9580 2331 git_path_merge_msg(r), 0);
043a4492
RR
2332 } else {
2333 struct commit_list *common = NULL;
2334 struct commit_list *remotes = NULL;
2335
75871495 2336 res = write_message(msgbuf.buf, msgbuf.len,
f11c9580 2337 git_path_merge_msg(r), 0);
043a4492
RR
2338
2339 commit_list_insert(base, &common);
2340 commit_list_insert(next, &remotes);
f11c9580 2341 res |= try_merge_command(r, opts->strategy,
03a4e260 2342 opts->xopts_nr, (const char **)opts->xopts,
ace976b2 2343 common, oid_to_hex(&head), remotes);
043a4492
RR
2344 free_commit_list(common);
2345 free_commit_list(remotes);
2346 }
2347
2348 /*
2349 * If the merge was clean or if it failed due to conflict, we write
2350 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2351 * However, if the merge did not even start, then we don't want to
2352 * write it at all.
2353 */
21b11c6d
PW
2354 if ((command == TODO_PICK || command == TODO_REWORD ||
2355 command == TODO_EDIT) && !opts->no_commit &&
2356 (res == 0 || res == 1) &&
ae077771 2357 update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL,
91774afc 2358 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
dbfad033 2359 res = -1;
004fefa7 2360 if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
ae077771 2361 update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL,
91774afc 2362 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
dbfad033 2363 res = -1;
043a4492
RR
2364
2365 if (res) {
004fefa7 2366 error(command == TODO_REVERT
043a4492
RR
2367 ? _("could not revert %s... %s")
2368 : _("could not apply %s... %s"),
39755964 2369 short_commit_name(commit), msg.subject);
005af339 2370 print_advice(r, res == 1, opts);
f11c9580 2371 repo_rerere(r, opts->allow_rerere_auto);
c8d1351d 2372 goto leave;
043a4492
RR
2373 }
2374
e98c4269 2375 drop_commit = 0;
f11c9580 2376 allow = allow_empty(r, opts, commit);
706728a3
FC
2377 if (allow < 0) {
2378 res = allow;
2379 goto leave;
e98c4269 2380 } else if (allow == 1) {
789b3eff 2381 flags |= ALLOW_EMPTY;
e98c4269
EN
2382 } else if (allow == 2) {
2383 drop_commit = 1;
c8e4159e
HWN
2384 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
2385 NULL, 0);
9a1b7474 2386 unlink(git_path_merge_msg(r));
5291828d 2387 unlink(git_path_auto_merge(r));
e98c4269
EN
2388 fprintf(stderr,
2389 _("dropping %s %s -- patch contents already upstream\n"),
2390 oid_to_hex(&commit->object.oid), msg.subject);
2391 } /* else allow == 0 and there's nothing special to do */
2392 if (!opts->no_commit && !drop_commit) {
356ee465 2393 if (author || command == TODO_REVERT || (flags & AMEND_MSG))
430b75f7
PW
2394 res = do_commit(r, msg_file, author, opts, flags,
2395 commit? &commit->object.oid : NULL);
356ee465
PW
2396 else
2397 res = error(_("unable to parse commit author"));
a47ba3c7
PW
2398 *check_todo = !!(flags & EDIT_MSG);
2399 if (!res && reword) {
450efe2d 2400fast_forward_edit:
20f4b044 2401 res = run_git_commit(NULL, opts, EDIT_MSG |
450efe2d
PW
2402 VERIFY_MSG | AMEND_MSG |
2403 (flags & ALLOW_EMPTY));
a47ba3c7
PW
2404 *check_todo = 1;
2405 }
356ee465 2406 }
6e98de72 2407
450efe2d 2408
6e98de72
JS
2409 if (!res && final_fixup) {
2410 unlink(rebase_path_fixup_msg());
2411 unlink(rebase_path_squash_msg());
e12a7ef5
JS
2412 unlink(rebase_path_current_fixups());
2413 strbuf_reset(&opts->current_fixups);
2414 opts->current_fixup_count = 0;
6e98de72 2415 }
c8d1351d
FC
2416
2417leave:
d74a4e57 2418 free_message(commit, &msg);
356ee465 2419 free(author);
a5792e9d 2420 strbuf_release(&msgbuf);
1e41229d 2421 update_abort_safety_file();
043a4492
RR
2422
2423 return res;
2424}
2425
c3e8618c 2426static int prepare_revs(struct replay_opts *opts)
043a4492 2427{
a73e22e9
MZ
2428 /*
2429 * picking (but not reverting) ranges (but not individual revisions)
2430 * should be done in reverse
2431 */
2432 if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
043a4492
RR
2433 opts->revs->reverse ^= 1;
2434
2435 if (prepare_revision_walk(opts->revs))
c3e8618c 2436 return error(_("revision walk setup failed"));
043a4492 2437
c3e8618c 2438 return 0;
043a4492
RR
2439}
2440
f11c9580
NTND
2441static int read_and_refresh_cache(struct repository *r,
2442 struct replay_opts *opts)
043a4492 2443{
14bca6c6 2444 struct lock_file index_lock = LOCK_INIT;
3a95f31d
NTND
2445 int index_fd = repo_hold_locked_index(r, &index_lock, 0);
2446 if (repo_read_index(r) < 0) {
49fb937e 2447 rollback_lock_file(&index_lock);
0d9c6dc9 2448 return error(_("git %s: failed to read the index"),
629444ad 2449 action_name(opts));
49fb937e 2450 }
f11c9580 2451 refresh_index(r->index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
5d9c9349 2452
61000814 2453 if (index_fd >= 0) {
f11c9580 2454 if (write_locked_index(r->index, &index_lock,
61000814 2455 COMMIT_LOCK | SKIP_IF_UNCHANGED)) {
0d9c6dc9 2456 return error(_("git %s: failed to refresh the index"),
629444ad 2457 action_name(opts));
49fb937e 2458 }
043a4492 2459 }
5d9c9349
DS
2460
2461 /*
2462 * If we are resolving merges in any way other than "ort", then
2463 * expand the sparse index.
2464 */
2465 if (opts->strategy && strcmp(opts->strategy, "ort"))
2466 ensure_full_index(r->index);
0d9c6dc9 2467 return 0;
043a4492
RR
2468}
2469
5d94d545 2470void todo_list_release(struct todo_list *todo_list)
043a4492 2471{
004fefa7 2472 strbuf_release(&todo_list->buf);
6a83d902 2473 FREE_AND_NULL(todo_list->items);
004fefa7
JS
2474 todo_list->nr = todo_list->alloc = 0;
2475}
043a4492 2476
004fefa7
JS
2477static struct todo_item *append_new_todo(struct todo_list *todo_list)
2478{
2479 ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
8638114e 2480 todo_list->total_nr++;
004fefa7 2481 return todo_list->items + todo_list->nr++;
043a4492
RR
2482}
2483
6ad656db
AG
2484const char *todo_item_get_arg(struct todo_list *todo_list,
2485 struct todo_item *item)
2486{
2487 return todo_list->buf.buf + item->arg_offset;
2488}
2489
3e81bccd
PW
2490static int is_command(enum todo_command command, const char **bol)
2491{
2492 const char *str = todo_command_info[command].str;
2493 const char nick = todo_command_info[command].c;
7aed2c05 2494 const char *p = *bol;
3e81bccd 2495
7aed2c05
PW
2496 return (skip_prefix(p, str, &p) || (nick && *p++ == nick)) &&
2497 (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r' || !*p) &&
2498 (*bol = p);
3e81bccd
PW
2499}
2500
16b3880d
PW
2501static int check_label_or_ref_arg(enum todo_command command, const char *arg)
2502{
2503 switch (command) {
2504 case TODO_LABEL:
2505 /*
2506 * '#' is not a valid label as the merge command uses it to
2507 * separate merge parents from the commit subject.
2508 */
2509 if (!strcmp(arg, "#") ||
2510 check_refname_format(arg, REFNAME_ALLOW_ONELEVEL))
2511 return error(_("'%s' is not a valid label"), arg);
2512 break;
2513
2514 case TODO_UPDATE_REF:
2515 if (check_refname_format(arg, REFNAME_ALLOW_ONELEVEL))
2516 return error(_("'%s' is not a valid refname"), arg);
2517 if (check_refname_format(arg, 0))
2518 return error(_("update-ref requires a fully qualified "
2519 "refname e.g. refs/heads/%s"), arg);
2520 break;
2521
2522 default:
2523 BUG("unexpected todo_command");
2524 }
2525
2526 return 0;
2527}
2528
005af339 2529static int parse_insn_line(struct repository *r, struct todo_item *item,
6ad656db 2530 const char *buf, const char *bol, char *eol)
043a4492 2531{
1e43ed98 2532 struct object_id commit_oid;
043a4492 2533 char *end_of_object_name;
004fefa7
JS
2534 int i, saved, status, padding;
2535
4c68e7dd
JS
2536 item->flags = 0;
2537
8f8550b3
JS
2538 /* left-trim */
2539 bol += strspn(bol, " \t");
2540
25c43667 2541 if (bol == eol || *bol == '\r' || *bol == comment_line_char) {
ac191470 2542 item->command = TODO_COMMENT;
25c43667 2543 item->commit = NULL;
6ad656db 2544 item->arg_offset = bol - buf;
25c43667
JS
2545 item->arg_len = eol - bol;
2546 return 0;
2547 }
2548
ac191470 2549 for (i = 0; i < TODO_COMMENT; i++)
3e81bccd 2550 if (is_command(i, &bol)) {
004fefa7
JS
2551 item->command = i;
2552 break;
2553 }
ac191470 2554 if (i >= TODO_COMMENT)
7aed2c05
PW
2555 return error(_("invalid command '%.*s'"),
2556 (int)strcspn(bol, " \t\r\n"), bol);
043a4492 2557
66afa24f
JS
2558 /* Eat up extra spaces/ tabs before object name */
2559 padding = strspn(bol, " \t");
2560 bol += padding;
2561
71f82465 2562 if (item->command == TODO_NOOP || item->command == TODO_BREAK) {
66afa24f
JS
2563 if (bol != eol)
2564 return error(_("%s does not accept arguments: '%s'"),
2565 command_to_string(item->command), bol);
25c43667 2566 item->commit = NULL;
6ad656db 2567 item->arg_offset = bol - buf;
25c43667
JS
2568 item->arg_len = eol - bol;
2569 return 0;
2570 }
2571
043a4492 2572 if (!padding)
66afa24f
JS
2573 return error(_("missing arguments for %s"),
2574 command_to_string(item->command));
043a4492 2575
9055e401 2576 if (item->command == TODO_EXEC || item->command == TODO_LABEL ||
a97d7916 2577 item->command == TODO_RESET || item->command == TODO_UPDATE_REF) {
16b3880d
PW
2578 int ret = 0;
2579
7dcbb3cb 2580 item->commit = NULL;
6ad656db 2581 item->arg_offset = bol - buf;
311af526 2582 item->arg_len = (int)(eol - bol);
16b3880d
PW
2583 if (item->command == TODO_LABEL ||
2584 item->command == TODO_UPDATE_REF) {
2585 saved = *eol;
2586 *eol = '\0';
2587 ret = check_label_or_ref_arg(item->command, bol);
2588 *eol = saved;
2589 }
2590 return ret;
311af526
JS
2591 }
2592
9e3cebd9 2593 if (item->command == TODO_FIXUP) {
666b6e11 2594 if (skip_prefix(bol, "-C", &bol)) {
9e3cebd9
CM
2595 bol += strspn(bol, " \t");
2596 item->flags |= TODO_REPLACE_FIXUP_MSG;
666b6e11 2597 } else if (skip_prefix(bol, "-c", &bol)) {
9e3cebd9
CM
2598 bol += strspn(bol, " \t");
2599 item->flags |= TODO_EDIT_FIXUP_MSG;
2600 }
2601 }
2602
4c68e7dd
JS
2603 if (item->command == TODO_MERGE) {
2604 if (skip_prefix(bol, "-C", &bol))
2605 bol += strspn(bol, " \t");
2606 else if (skip_prefix(bol, "-c", &bol)) {
2607 bol += strspn(bol, " \t");
2608 item->flags |= TODO_EDIT_MERGE_MSG;
2609 } else {
2610 item->flags |= TODO_EDIT_MERGE_MSG;
2611 item->commit = NULL;
6ad656db 2612 item->arg_offset = bol - buf;
4c68e7dd
JS
2613 item->arg_len = (int)(eol - bol);
2614 return 0;
2615 }
2616 }
2617
004fefa7 2618 end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
043a4492
RR
2619 saved = *end_of_object_name;
2620 *end_of_object_name = '\0';
4a93b899 2621 status = repo_get_oid(r, bol, &commit_oid);
d859dcad
JS
2622 if (status < 0)
2623 error(_("could not parse '%s'"), bol); /* return later */
043a4492
RR
2624 *end_of_object_name = saved;
2625
6ad656db
AG
2626 bol = end_of_object_name + strspn(end_of_object_name, " \t");
2627 item->arg_offset = bol - buf;
2628 item->arg_len = (int)(eol - bol);
c22f7dfb 2629
043a4492 2630 if (status < 0)
d859dcad 2631 return status;
043a4492 2632
005af339 2633 item->commit = lookup_commit_reference(r, &commit_oid);
d859dcad 2634 return item->commit ? 0 : -1;
043a4492
RR
2635}
2636
4a72486d
PW
2637int sequencer_get_last_command(struct repository *r, enum replay_action *action)
2638{
ed5b1ca1 2639 const char *todo_file, *bol;
4a72486d 2640 struct strbuf buf = STRBUF_INIT;
ed5b1ca1 2641 int ret = 0;
4a72486d
PW
2642
2643 todo_file = git_path_todo_file();
2644 if (strbuf_read_file(&buf, todo_file, 0) < 0) {
ed5b1ca1 2645 if (errno == ENOENT || errno == ENOTDIR)
4a72486d
PW
2646 return -1;
2647 else
2648 return error_errno("unable to open '%s'", todo_file);
2649 }
ed5b1ca1
PW
2650 bol = buf.buf + strspn(buf.buf, " \t\r\n");
2651 if (is_command(TODO_PICK, &bol) && (*bol == ' ' || *bol == '\t'))
4a72486d 2652 *action = REPLAY_PICK;
ed5b1ca1
PW
2653 else if (is_command(TODO_REVERT, &bol) &&
2654 (*bol == ' ' || *bol == '\t'))
4a72486d
PW
2655 *action = REPLAY_REVERT;
2656 else
ed5b1ca1 2657 ret = -1;
4a72486d 2658
4a72486d
PW
2659 strbuf_release(&buf);
2660
2661 return ret;
2662}
2663
5d94d545
AG
2664int todo_list_parse_insn_buffer(struct repository *r, char *buf,
2665 struct todo_list *todo_list)
043a4492 2666{
004fefa7
JS
2667 struct todo_item *item;
2668 char *p = buf, *next_p;
6e98de72 2669 int i, res = 0, fixup_okay = file_exists(rebase_path_done());
043a4492 2670
2b71595d
AG
2671 todo_list->current = todo_list->nr = 0;
2672
004fefa7 2673 for (i = 1; *p; i++, p = next_p) {
043a4492 2674 char *eol = strchrnul(p, '\n');
004fefa7
JS
2675
2676 next_p = *eol ? eol + 1 /* skip LF */ : eol;
2677
6307041d
JS
2678 if (p != eol && eol[-1] == '\r')
2679 eol--; /* strip Carriage Return */
2680
004fefa7
JS
2681 item = append_new_todo(todo_list);
2682 item->offset_in_buf = p - todo_list->buf.buf;
6ad656db 2683 if (parse_insn_line(r, item, buf, p, eol)) {
93b3df6f 2684 res = error(_("invalid line %d: %.*s"),
004fefa7 2685 i, (int)(eol - p), p);
2b71595d 2686 item->command = TODO_COMMENT + 1;
6ad656db 2687 item->arg_offset = p - buf;
2b71595d
AG
2688 item->arg_len = (int)(eol - p);
2689 item->commit = NULL;
004fefa7 2690 }
6e98de72
JS
2691
2692 if (fixup_okay)
2693 ; /* do nothing */
2694 else if (is_fixup(item->command))
2695 return error(_("cannot '%s' without a previous commit"),
2696 command_to_string(item->command));
2697 else if (!is_noop(item->command))
2698 fixup_okay = 1;
043a4492 2699 }
52865279 2700
004fefa7 2701 return res;
043a4492
RR
2702}
2703
968492e4
JS
2704static int count_commands(struct todo_list *todo_list)
2705{
2706 int count = 0, i;
2707
2708 for (i = 0; i < todo_list->nr; i++)
2709 if (todo_list->items[i].command != TODO_COMMENT)
2710 count++;
2711
2712 return count;
2713}
2714
a01c2a5f
JS
2715static int get_item_line_offset(struct todo_list *todo_list, int index)
2716{
2717 return index < todo_list->nr ?
2718 todo_list->items[index].offset_in_buf : todo_list->buf.len;
2719}
2720
2721static const char *get_item_line(struct todo_list *todo_list, int index)
2722{
2723 return todo_list->buf.buf + get_item_line_offset(todo_list, index);
2724}
2725
2726static int get_item_line_length(struct todo_list *todo_list, int index)
2727{
2728 return get_item_line_offset(todo_list, index + 1)
2729 - get_item_line_offset(todo_list, index);
2730}
2731
87805600
RS
2732static ssize_t strbuf_read_file_or_whine(struct strbuf *sb, const char *path)
2733{
2734 int fd;
2735 ssize_t len;
2736
2737 fd = open(path, O_RDONLY);
2738 if (fd < 0)
2739 return error_errno(_("could not open '%s'"), path);
2740 len = strbuf_read(sb, fd, 0);
2741 close(fd);
2742 if (len < 0)
2743 return error(_("could not read '%s'."), path);
2744 return len;
2745}
2746
b07d9bfd
PW
2747static int have_finished_the_last_pick(void)
2748{
2749 struct strbuf buf = STRBUF_INIT;
2750 const char *eol;
2751 const char *todo_path = git_path_todo_file();
2752 int ret = 0;
2753
2754 if (strbuf_read_file(&buf, todo_path, 0) < 0) {
2755 if (errno == ENOENT) {
2756 return 0;
2757 } else {
2758 error_errno("unable to open '%s'", todo_path);
2759 return 0;
2760 }
2761 }
2762 /* If there is only one line then we are done */
2763 eol = strchr(buf.buf, '\n');
2764 if (!eol || !eol[1])
2765 ret = 1;
2766
2767 strbuf_release(&buf);
2768
2769 return ret;
2770}
2771
f496b064 2772void sequencer_post_commit_cleanup(struct repository *r, int verbose)
b07d9bfd
PW
2773{
2774 struct replay_opts opts = REPLAY_OPTS_INIT;
2775 int need_cleanup = 0;
2776
c8e4159e
HWN
2777 if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) {
2778 if (!refs_delete_ref(get_main_ref_store(r), "",
2779 "CHERRY_PICK_HEAD", NULL, 0) &&
2780 verbose)
f496b064 2781 warning(_("cancelling a cherry picking in progress"));
b07d9bfd
PW
2782 opts.action = REPLAY_PICK;
2783 need_cleanup = 1;
2784 }
2785
b8825ef2
HWN
2786 if (refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
2787 if (!refs_delete_ref(get_main_ref_store(r), "", "REVERT_HEAD",
2788 NULL, 0) &&
2789 verbose)
f496b064 2790 warning(_("cancelling a revert in progress"));
b07d9bfd
PW
2791 opts.action = REPLAY_REVERT;
2792 need_cleanup = 1;
2793 }
2794
5291828d
EN
2795 unlink(git_path_auto_merge(r));
2796
b07d9bfd
PW
2797 if (!need_cleanup)
2798 return;
2799
2800 if (!have_finished_the_last_pick())
2801 return;
2802
2803 sequencer_remove_state(&opts);
2804}
2805
3f34f2d8
AG
2806static void todo_list_write_total_nr(struct todo_list *todo_list)
2807{
2808 FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w");
2809
2810 if (f) {
2811 fprintf(f, "%d\n", todo_list->total_nr);
2812 fclose(f);
2813 }
2814}
2815
005af339
NTND
2816static int read_populate_todo(struct repository *r,
2817 struct todo_list *todo_list,
2818 struct replay_opts *opts)
043a4492 2819{
c0246501 2820 const char *todo_file = get_todo_path(opts);
87805600 2821 int res;
043a4492 2822
004fefa7 2823 strbuf_reset(&todo_list->buf);
87805600
RS
2824 if (strbuf_read_file_or_whine(&todo_list->buf, todo_file) < 0)
2825 return -1;
043a4492 2826
5d94d545 2827 res = todo_list_parse_insn_buffer(r, todo_list->buf.buf, todo_list);
27fdbb96
JS
2828 if (res) {
2829 if (is_rebase_i(opts))
2830 return error(_("please fix this using "
2831 "'git rebase --edit-todo'."));
93b3df6f 2832 return error(_("unusable instruction sheet: '%s'"), todo_file);
27fdbb96 2833 }
2eeaf1b3 2834
52865279
JS
2835 if (!todo_list->nr &&
2836 (!is_rebase_i(opts) || !file_exists(rebase_path_done())))
2837 return error(_("no commits parsed."));
2838
2eeaf1b3 2839 if (!is_rebase_i(opts)) {
004fefa7
JS
2840 enum todo_command valid =
2841 opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
2842 int i;
2843
2844 for (i = 0; i < todo_list->nr; i++)
2845 if (valid == todo_list->items[i].command)
2846 continue;
2847 else if (valid == TODO_PICK)
93b3df6f 2848 return error(_("cannot cherry-pick during a revert."));
004fefa7 2849 else
93b3df6f 2850 return error(_("cannot revert during a cherry-pick."));
004fefa7
JS
2851 }
2852
968492e4
JS
2853 if (is_rebase_i(opts)) {
2854 struct todo_list done = TODO_LIST_INIT;
2855
2856 if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 &&
5d94d545 2857 !todo_list_parse_insn_buffer(r, done.buf.buf, &done))
968492e4
JS
2858 todo_list->done_nr = count_commands(&done);
2859 else
2860 todo_list->done_nr = 0;
2861
2862 todo_list->total_nr = todo_list->done_nr
2863 + count_commands(todo_list);
968492e4 2864 todo_list_release(&done);
ef80069a 2865
3f34f2d8 2866 todo_list_write_total_nr(todo_list);
968492e4
JS
2867 }
2868
0ae42a03 2869 return 0;
043a4492
RR
2870}
2871
03a4e260
JS
2872static int git_config_string_dup(char **dest,
2873 const char *var, const char *value)
2874{
2875 if (!value)
2876 return config_error_nonbool(var);
2877 free(*dest);
2878 *dest = xstrdup(value);
2879 return 0;
2880}
2881
043a4492
RR
2882static int populate_opts_cb(const char *key, const char *value, void *data)
2883{
2884 struct replay_opts *opts = data;
2885 int error_flag = 1;
2886
2887 if (!value)
2888 error_flag = 0;
2889 else if (!strcmp(key, "options.no-commit"))
2890 opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
2891 else if (!strcmp(key, "options.edit"))
2892 opts->edit = git_config_bool_or_int(key, value, &error_flag);
6860ce5d
PW
2893 else if (!strcmp(key, "options.allow-empty"))
2894 opts->allow_empty =
2895 git_config_bool_or_int(key, value, &error_flag);
2896 else if (!strcmp(key, "options.allow-empty-message"))
2897 opts->allow_empty_message =
2898 git_config_bool_or_int(key, value, &error_flag);
2899 else if (!strcmp(key, "options.keep-redundant-commits"))
2900 opts->keep_redundant_commits =
2901 git_config_bool_or_int(key, value, &error_flag);
043a4492
RR
2902 else if (!strcmp(key, "options.signoff"))
2903 opts->signoff = git_config_bool_or_int(key, value, &error_flag);
2904 else if (!strcmp(key, "options.record-origin"))
2905 opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
2906 else if (!strcmp(key, "options.allow-ff"))
2907 opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
2908 else if (!strcmp(key, "options.mainline"))
2909 opts->mainline = git_config_int(key, value);
2910 else if (!strcmp(key, "options.strategy"))
03a4e260 2911 git_config_string_dup(&opts->strategy, key, value);
3253553e 2912 else if (!strcmp(key, "options.gpg-sign"))
03a4e260 2913 git_config_string_dup(&opts->gpg_sign, key, value);
043a4492
RR
2914 else if (!strcmp(key, "options.strategy-option")) {
2915 ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
2916 opts->xopts[opts->xopts_nr++] = xstrdup(value);
8d8cb4b0
PW
2917 } else if (!strcmp(key, "options.allow-rerere-auto"))
2918 opts->allow_rerere_auto =
2919 git_config_bool_or_int(key, value, &error_flag) ?
2920 RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE;
dc42e9a8
PW
2921 else if (!strcmp(key, "options.default-msg-cleanup")) {
2922 opts->explicit_cleanup = 1;
2923 opts->default_msg_cleanup = get_cleanup_mode(value, 1);
2924 } else
93b3df6f 2925 return error(_("invalid key: %s"), key);
043a4492
RR
2926
2927 if (!error_flag)
1a8aea85 2928 return error(_("invalid value for '%s': '%s'"), key, value);
043a4492
RR
2929
2930 return 0;
2931}
2932
65850686 2933void parse_strategy_opts(struct replay_opts *opts, char *raw_opts)
ca6c6b45
JS
2934{
2935 int i;
15a4cc91 2936 int count;
65850686 2937 char *strategy_opts_string = raw_opts;
ca6c6b45 2938
0060041d
EN
2939 if (*strategy_opts_string == ' ')
2940 strategy_opts_string++;
65850686 2941
15a4cc91
ÆAB
2942 count = split_cmdline(strategy_opts_string,
2943 (const char ***)&opts->xopts);
2944 if (count < 0)
2945 die(_("could not split '%s': %s"), strategy_opts_string,
2946 split_cmdline_strerror(count));
2947 opts->xopts_nr = count;
ca6c6b45
JS
2948 for (i = 0; i < opts->xopts_nr; i++) {
2949 const char *arg = opts->xopts[i];
2950
2951 skip_prefix(arg, "--", &arg);
2952 opts->xopts[i] = xstrdup(arg);
2953 }
2954}
2955
65850686
AG
2956static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf)
2957{
2958 strbuf_reset(buf);
2959 if (!read_oneliner(buf, rebase_path_strategy(), 0))
2960 return;
f1f4ebf4 2961 free(opts->strategy);
65850686
AG
2962 opts->strategy = strbuf_detach(buf, NULL);
2963 if (!read_oneliner(buf, rebase_path_strategy_opts(), 0))
2964 return;
2965
2966 parse_strategy_opts(opts, buf->buf);
2967}
2968
5adf9bdc 2969static int read_populate_opts(struct replay_opts *opts)
043a4492 2970{
a1c75762
JS
2971 if (is_rebase_i(opts)) {
2972 struct strbuf buf = STRBUF_INIT;
65c425a2 2973 int ret = 0;
a1c75762 2974
3442c3d1
DL
2975 if (read_oneliner(&buf, rebase_path_gpg_sign_opt(),
2976 READ_ONELINER_SKIP_IF_EMPTY)) {
a1c75762
JS
2977 if (!starts_with(buf.buf, "-S"))
2978 strbuf_reset(&buf);
2979 else {
2980 free(opts->gpg_sign);
2981 opts->gpg_sign = xstrdup(buf.buf + 2);
2982 }
9b6d7a62
PW
2983 strbuf_reset(&buf);
2984 }
2985
3442c3d1
DL
2986 if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(),
2987 READ_ONELINER_SKIP_IF_EMPTY)) {
9b6d7a62
PW
2988 if (!strcmp(buf.buf, "--rerere-autoupdate"))
2989 opts->allow_rerere_auto = RERERE_AUTOUPDATE;
2990 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
2991 opts->allow_rerere_auto = RERERE_NOAUTOUPDATE;
2992 strbuf_reset(&buf);
a1c75762 2993 }
a1c75762 2994
556907f1
JS
2995 if (file_exists(rebase_path_verbose()))
2996 opts->verbose = 1;
2997
899b49c4
EN
2998 if (file_exists(rebase_path_quiet()))
2999 opts->quiet = 1;
3000
a852ec7f
PW
3001 if (file_exists(rebase_path_signoff())) {
3002 opts->allow_ff = 0;
3003 opts->signoff = 1;
3004 }
3005
7573cec5
PW
3006 if (file_exists(rebase_path_cdate_is_adate())) {
3007 opts->allow_ff = 0;
3008 opts->committer_date_is_author_date = 1;
3009 }
3010
a3894aad
PW
3011 if (file_exists(rebase_path_ignore_date())) {
3012 opts->allow_ff = 0;
3013 opts->ignore_date = 1;
3014 }
3015
d421afa0
JS
3016 if (file_exists(rebase_path_reschedule_failed_exec()))
3017 opts->reschedule_failed_exec = 1;
e5b32bff
ÆAB
3018 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
3019 opts->reschedule_failed_exec = 0;
d421afa0 3020
e98c4269
EN
3021 if (file_exists(rebase_path_drop_redundant_commits()))
3022 opts->drop_redundant_commits = 1;
3023
3024 if (file_exists(rebase_path_keep_redundant_commits()))
3025 opts->keep_redundant_commits = 1;
3026
ca6c6b45 3027 read_strategy_opts(opts, &buf);
65c425a2 3028 strbuf_reset(&buf);
ca6c6b45 3029
e12a7ef5 3030 if (read_oneliner(&opts->current_fixups,
3442c3d1
DL
3031 rebase_path_current_fixups(),
3032 READ_ONELINER_SKIP_IF_EMPTY)) {
e12a7ef5
JS
3033 const char *p = opts->current_fixups.buf;
3034 opts->current_fixup_count = 1;
3035 while ((p = strchr(p, '\n'))) {
3036 opts->current_fixup_count++;
3037 p++;
3038 }
3039 }
3040
d87d48b2 3041 if (read_oneliner(&buf, rebase_path_squash_onto(), 0)) {
d850b7a5 3042 if (repo_get_oid_committish(the_repository, buf.buf, &opts->squash_onto) < 0) {
65c425a2
DL
3043 ret = error(_("unusable squash-onto"));
3044 goto done_rebase_i;
3045 }
d87d48b2
JS
3046 opts->have_squash_onto = 1;
3047 }
3048
65c425a2
DL
3049done_rebase_i:
3050 strbuf_release(&buf);
3051 return ret;
a1c75762 3052 }
b5a67045 3053
f932729c 3054 if (!file_exists(git_path_opts_file()))
0d00da7b
JS
3055 return 0;
3056 /*
3057 * The function git_parse_source(), called from git_config_from_file(),
3058 * may die() in case of a syntactically incorrect file. We do not care
3059 * about this case, though, because we wrote that file ourselves, so we
3060 * are pretty certain that it is syntactically correct.
3061 */
5adf9bdc 3062 if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
93b3df6f 3063 return error(_("malformed options sheet: '%s'"),
0d00da7b
JS
3064 git_path_opts_file());
3065 return 0;
043a4492
RR
3066}
3067
65850686
AG
3068static void write_strategy_opts(struct replay_opts *opts)
3069{
3070 int i;
3071 struct strbuf buf = STRBUF_INIT;
3072
3073 for (i = 0; i < opts->xopts_nr; ++i)
3074 strbuf_addf(&buf, " --%s", opts->xopts[i]);
3075
3076 write_file(rebase_path_strategy_opts(), "%s\n", buf.buf);
3077 strbuf_release(&buf);
3078}
3079
3080int write_basic_state(struct replay_opts *opts, const char *head_name,
a2bb10d0 3081 struct commit *onto, const struct object_id *orig_head)
65850686 3082{
65850686
AG
3083 if (head_name)
3084 write_file(rebase_path_head_name(), "%s\n", head_name);
3085 if (onto)
7d3488eb
PW
3086 write_file(rebase_path_onto(), "%s\n",
3087 oid_to_hex(&onto->object.oid));
65850686 3088 if (orig_head)
a2bb10d0
PW
3089 write_file(rebase_path_orig_head(), "%s\n",
3090 oid_to_hex(orig_head));
65850686 3091
8a997ed1
EN
3092 if (opts->quiet)
3093 write_file(rebase_path_quiet(), "%s", "");
65850686 3094 if (opts->verbose)
4af51741 3095 write_file(rebase_path_verbose(), "%s", "");
65850686
AG
3096 if (opts->strategy)
3097 write_file(rebase_path_strategy(), "%s\n", opts->strategy);
3098 if (opts->xopts_nr > 0)
3099 write_strategy_opts(opts);
3100
3101 if (opts->allow_rerere_auto == RERERE_AUTOUPDATE)
3102 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
3103 else if (opts->allow_rerere_auto == RERERE_NOAUTOUPDATE)
3104 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
3105
3106 if (opts->gpg_sign)
3107 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts->gpg_sign);
3108 if (opts->signoff)
3109 write_file(rebase_path_signoff(), "--signoff\n");
e98c4269
EN
3110 if (opts->drop_redundant_commits)
3111 write_file(rebase_path_drop_redundant_commits(), "%s", "");
3112 if (opts->keep_redundant_commits)
3113 write_file(rebase_path_keep_redundant_commits(), "%s", "");
7573cec5
PW
3114 if (opts->committer_date_is_author_date)
3115 write_file(rebase_path_cdate_is_adate(), "%s", "");
a3894aad
PW
3116 if (opts->ignore_date)
3117 write_file(rebase_path_ignore_date(), "%s", "");
d421afa0
JS
3118 if (opts->reschedule_failed_exec)
3119 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
e5b32bff
ÆAB
3120 else
3121 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
65850686
AG
3122
3123 return 0;
3124}
3125
004fefa7 3126static int walk_revs_populate_todo(struct todo_list *todo_list,
043a4492
RR
3127 struct replay_opts *opts)
3128{
004fefa7
JS
3129 enum todo_command command = opts->action == REPLAY_PICK ?
3130 TODO_PICK : TODO_REVERT;
414697a9 3131 const char *command_string = todo_command_info[command].str;
019a9d83 3132 const char *encoding;
043a4492 3133 struct commit *commit;
043a4492 3134
34b0528b
JS
3135 if (prepare_revs(opts))
3136 return -1;
043a4492 3137
019a9d83
ĐTCD
3138 encoding = get_log_output_encoding();
3139
004fefa7
JS
3140 while ((commit = get_revision(opts->revs))) {
3141 struct todo_item *item = append_new_todo(todo_list);
ecb5091f
ÆAB
3142 const char *commit_buffer = repo_logmsg_reencode(the_repository,
3143 commit, NULL,
3144 encoding);
004fefa7
JS
3145 const char *subject;
3146 int subject_len;
3147
3148 item->command = command;
3149 item->commit = commit;
6ad656db 3150 item->arg_offset = 0;
c22f7dfb 3151 item->arg_len = 0;
004fefa7
JS
3152 item->offset_in_buf = todo_list->buf.len;
3153 subject_len = find_commit_subject(commit_buffer, &subject);
3154 strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
3155 short_commit_name(commit), subject_len, subject);
ecb5091f
ÆAB
3156 repo_unuse_commit_buffer(the_repository, commit,
3157 commit_buffer);
004fefa7 3158 }
8530c739
JK
3159
3160 if (!todo_list->nr)
3161 return error(_("empty commit set passed"));
3162
34b0528b 3163 return 0;
043a4492
RR
3164}
3165
6a1f9046 3166static int create_seq_dir(struct repository *r)
043a4492 3167{
6a1f9046
RA
3168 enum replay_action action;
3169 const char *in_progress_error = NULL;
3170 const char *in_progress_advice = NULL;
c8e4159e 3171 unsigned int advise_skip =
b8825ef2 3172 refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD") ||
c8e4159e 3173 refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD");
6a1f9046
RA
3174
3175 if (!sequencer_get_last_command(r, &action)) {
3176 switch (action) {
3177 case REPLAY_REVERT:
3178 in_progress_error = _("revert is already in progress");
3179 in_progress_advice =
dcb500dc 3180 _("try \"git revert (--continue | %s--abort | --quit)\"");
6a1f9046
RA
3181 break;
3182 case REPLAY_PICK:
3183 in_progress_error = _("cherry-pick is already in progress");
3184 in_progress_advice =
dcb500dc 3185 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
6a1f9046
RA
3186 break;
3187 default:
3188 BUG("unexpected action in create_seq_dir");
3189 }
3190 }
3191 if (in_progress_error) {
3192 error("%s", in_progress_error);
ed9bff08 3193 if (advice_enabled(ADVICE_SEQUENCER_IN_USE))
dcb500dc
RA
3194 advise(in_progress_advice,
3195 advise_skip ? "--skip | " : "");
043a4492 3196 return -1;
6a1f9046
RA
3197 }
3198 if (mkdir(git_path_seq_dir(), 0777) < 0)
93b3df6f 3199 return error_errno(_("could not create sequencer directory '%s'"),
f6e82b0d 3200 git_path_seq_dir());
6a1f9046 3201
043a4492
RR
3202 return 0;
3203}
3204
311fd397 3205static int save_head(const char *head)
043a4492 3206{
14bca6c6 3207 struct lock_file head_lock = LOCK_INIT;
043a4492
RR
3208 struct strbuf buf = STRBUF_INIT;
3209 int fd;
ed3f9a12 3210 ssize_t written;
043a4492 3211
311fd397 3212 fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0);
350292a1 3213 if (fd < 0)
93b3df6f 3214 return error_errno(_("could not lock HEAD"));
043a4492 3215 strbuf_addf(&buf, "%s\n", head);
ed3f9a12
RS
3216 written = write_in_full(fd, buf.buf, buf.len);
3217 strbuf_release(&buf);
3218 if (written < 0) {
bf5c0571 3219 error_errno(_("could not write to '%s'"), git_path_head_file());
311fd397 3220 rollback_lock_file(&head_lock);
bf5c0571 3221 return -1;
311fd397 3222 }
350292a1
3223 if (commit_lock_file(&head_lock) < 0)
3224 return error(_("failed to finalize '%s'"), git_path_head_file());
311fd397 3225 return 0;
043a4492
RR
3226}
3227
1e41229d
SB
3228static int rollback_is_safe(void)
3229{
3230 struct strbuf sb = STRBUF_INIT;
3231 struct object_id expected_head, actual_head;
3232
3233 if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) {
3234 strbuf_trim(&sb);
3235 if (get_oid_hex(sb.buf, &expected_head)) {
3236 strbuf_release(&sb);
3237 die(_("could not parse %s"), git_path_abort_safety_file());
3238 }
3239 strbuf_release(&sb);
3240 }
3241 else if (errno == ENOENT)
3242 oidclr(&expected_head);
3243 else
3244 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3245
d850b7a5 3246 if (repo_get_oid(the_repository, "HEAD", &actual_head))
1e41229d
SB
3247 oidclr(&actual_head);
3248
4a7e27e9 3249 return oideq(&actual_head, &expected_head);
1e41229d
SB
3250}
3251
918d1e6e 3252static int reset_merge(const struct object_id *oid)
043a4492 3253{
0e906739 3254 struct child_process cmd = CHILD_PROCESS_INIT;
1e41229d 3255
0e906739
RS
3256 cmd.git_cmd = 1;
3257 strvec_pushl(&cmd.args, "reset", "--merge", NULL);
265ab48f
RA
3258
3259 if (!is_null_oid(oid))
0e906739 3260 strvec_push(&cmd.args, oid_to_hex(oid));
265ab48f 3261
0e906739 3262 return run_command(&cmd);
043a4492
RR
3263}
3264
005af339 3265static int rollback_single_pick(struct repository *r)
043a4492 3266{
092bbcdf 3267 struct object_id head_oid;
043a4492 3268
c8e4159e 3269 if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") &&
b8825ef2 3270 !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD"))
043a4492 3271 return error(_("no cherry-pick or revert in progress"));
34c290a6 3272 if (read_ref_full("HEAD", 0, &head_oid, NULL))
043a4492 3273 return error(_("cannot resolve HEAD"));
092bbcdf 3274 if (is_null_oid(&head_oid))
043a4492 3275 return error(_("cannot abort from a branch yet to be born"));
918d1e6e 3276 return reset_merge(&head_oid);
043a4492
RR
3277}
3278
de81ca3f
RA
3279static int skip_single_pick(void)
3280{
3281 struct object_id head;
3282
3283 if (read_ref_full("HEAD", 0, &head, NULL))
3284 return error(_("cannot resolve HEAD"));
3285 return reset_merge(&head);
043a4492
RR
3286}
3287
005af339 3288int sequencer_rollback(struct repository *r, struct replay_opts *opts)
043a4492 3289{
043a4492 3290 FILE *f;
092bbcdf 3291 struct object_id oid;
043a4492 3292 struct strbuf buf = STRBUF_INIT;
092bbcdf 3293 const char *p;
043a4492 3294
f932729c 3295 f = fopen(git_path_head_file(), "r");
043a4492
RR
3296 if (!f && errno == ENOENT) {
3297 /*
3298 * There is no multiple-cherry-pick in progress.
3299 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3300 * a single-cherry-pick in progress, abort that.
3301 */
005af339 3302 return rollback_single_pick(r);
043a4492
RR
3303 }
3304 if (!f)
f7ed1953 3305 return error_errno(_("cannot open '%s'"), git_path_head_file());
8f309aeb 3306 if (strbuf_getline_lf(&buf, f)) {
f7ed1953 3307 error(_("cannot read '%s': %s"), git_path_head_file(),
f932729c 3308 ferror(f) ? strerror(errno) : _("unexpected end of file"));
043a4492
RR
3309 fclose(f);
3310 goto fail;
3311 }
3312 fclose(f);
092bbcdf 3313 if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') {
043a4492 3314 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
f932729c 3315 git_path_head_file());
043a4492
RR
3316 goto fail;
3317 }
092bbcdf 3318 if (is_null_oid(&oid)) {
0f974e21
MG
3319 error(_("cannot abort from a branch yet to be born"));
3320 goto fail;
3321 }
1e41229d
SB
3322
3323 if (!rollback_is_safe()) {
3324 /* Do not error, just do not rollback */
3325 warning(_("You seem to have moved HEAD. "
3326 "Not rewinding, check your HEAD!"));
3327 } else
918d1e6e 3328 if (reset_merge(&oid))
043a4492 3329 goto fail;
043a4492 3330 strbuf_release(&buf);
2863584f 3331 return sequencer_remove_state(opts);
043a4492
RR
3332fail:
3333 strbuf_release(&buf);
3334 return -1;
3335}
3336
de81ca3f
RA
3337int sequencer_skip(struct repository *r, struct replay_opts *opts)
3338{
3339 enum replay_action action = -1;
3340 sequencer_get_last_command(r, &action);
3341
3342 /*
3343 * Check whether the subcommand requested to skip the commit is actually
3344 * in progress and that it's safe to skip the commit.
3345 *
3346 * opts->action tells us which subcommand requested to skip the commit.
3347 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3348 * action is in progress and we can skip the commit.
3349 *
3350 * Otherwise we check that the last instruction was related to the
3351 * particular subcommand we're trying to execute and barf if that's not
3352 * the case.
3353 *
3354 * Finally we check that the rollback is "safe", i.e., has the HEAD
3355 * moved? In this case, it doesn't make sense to "reset the merge" and
3356 * "skip the commit" as the user already handled this by committing. But
3357 * we'd not want to barf here, instead give advice on how to proceed. We
3358 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3359 * it gets removed when the user commits, so if it still exists we're
3360 * sure the user can't have committed before.
3361 */
3362 switch (opts->action) {
3363 case REPLAY_REVERT:
b8825ef2 3364 if (!refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
de81ca3f
RA
3365 if (action != REPLAY_REVERT)
3366 return error(_("no revert in progress"));
3367 if (!rollback_is_safe())
3368 goto give_advice;
3369 }
3370 break;
3371 case REPLAY_PICK:
c8e4159e
HWN
3372 if (!refs_ref_exists(get_main_ref_store(r),
3373 "CHERRY_PICK_HEAD")) {
de81ca3f
RA
3374 if (action != REPLAY_PICK)
3375 return error(_("no cherry-pick in progress"));
3376 if (!rollback_is_safe())
3377 goto give_advice;
3378 }
3379 break;
3380 default:
3381 BUG("unexpected action in sequencer_skip");
3382 }
3383
3384 if (skip_single_pick())
3385 return error(_("failed to skip the commit"));
3386 if (!is_directory(git_path_seq_dir()))
3387 return 0;
3388
3389 return sequencer_continue(r, opts);
3390
3391give_advice:
3392 error(_("there is nothing to skip"));
3393
ed9bff08 3394 if (advice_enabled(ADVICE_RESOLVE_CONFLICT)) {
de81ca3f
RA
3395 advise(_("have you committed already?\n"
3396 "try \"git %s --continue\""),
3397 action == REPLAY_REVERT ? "revert" : "cherry-pick");
3398 }
3399 return -1;
3400}
3401
004fefa7 3402static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
043a4492 3403{
14bca6c6 3404 struct lock_file todo_lock = LOCK_INIT;
004fefa7
JS
3405 const char *todo_path = get_todo_path(opts);
3406 int next = todo_list->current, offset, fd;
043a4492 3407
84583957
JS
3408 /*
3409 * rebase -i writes "git-rebase-todo" without the currently executing
3410 * command, appending it to "done" instead.
3411 */
3412 if (is_rebase_i(opts))
3413 next++;
3414
004fefa7 3415 fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
221675de 3416 if (fd < 0)
93b3df6f 3417 return error_errno(_("could not lock '%s'"), todo_path);
a01c2a5f 3418 offset = get_item_line_offset(todo_list, next);
004fefa7
JS
3419 if (write_in_full(fd, todo_list->buf.buf + offset,
3420 todo_list->buf.len - offset) < 0)
93b3df6f 3421 return error_errno(_("could not write to '%s'"), todo_path);
004fefa7 3422 if (commit_lock_file(&todo_lock) < 0)
350292a1 3423 return error(_("failed to finalize '%s'"), todo_path);
1df6df0c 3424
a01c2a5f
JS
3425 if (is_rebase_i(opts) && next > 0) {
3426 const char *done = rebase_path_done();
3427 int fd = open(done, O_CREAT | O_WRONLY | O_APPEND, 0666);
3428 int ret = 0;
1df6df0c 3429
a01c2a5f
JS
3430 if (fd < 0)
3431 return 0;
3432 if (write_in_full(fd, get_item_line(todo_list, next - 1),
3433 get_item_line_length(todo_list, next - 1))
3434 < 0)
3435 ret = error_errno(_("could not write to '%s'"), done);
3436 if (close(fd) < 0)
3437 ret = error_errno(_("failed to finalize '%s'"), done);
3438 return ret;
1df6df0c 3439 }
221675de 3440 return 0;
043a4492
RR
3441}
3442
88d5a271 3443static int save_opts(struct replay_opts *opts)
043a4492 3444{
f932729c 3445 const char *opts_file = git_path_opts_file();
88d5a271 3446 int res = 0;
043a4492
RR
3447
3448 if (opts->no_commit)
f59199d5
PW
3449 res |= git_config_set_in_file_gently(opts_file,
3450 "options.no-commit", "true");
39edfd5c
EN
3451 if (opts->edit >= 0)
3452 res |= git_config_set_in_file_gently(opts_file, "options.edit",
3453 opts->edit ? "true" : "false");
6860ce5d
PW
3454 if (opts->allow_empty)
3455 res |= git_config_set_in_file_gently(opts_file,
3456 "options.allow-empty", "true");
3457 if (opts->allow_empty_message)
3458 res |= git_config_set_in_file_gently(opts_file,
3459 "options.allow-empty-message", "true");
3460 if (opts->keep_redundant_commits)
3461 res |= git_config_set_in_file_gently(opts_file,
3462 "options.keep-redundant-commits", "true");
043a4492 3463 if (opts->signoff)
f59199d5
PW
3464 res |= git_config_set_in_file_gently(opts_file,
3465 "options.signoff", "true");
043a4492 3466 if (opts->record_origin)
f59199d5
PW
3467 res |= git_config_set_in_file_gently(opts_file,
3468 "options.record-origin", "true");
043a4492 3469 if (opts->allow_ff)
f59199d5
PW
3470 res |= git_config_set_in_file_gently(opts_file,
3471 "options.allow-ff", "true");
043a4492
RR
3472 if (opts->mainline) {
3473 struct strbuf buf = STRBUF_INIT;
3474 strbuf_addf(&buf, "%d", opts->mainline);
f59199d5
PW
3475 res |= git_config_set_in_file_gently(opts_file,
3476 "options.mainline", buf.buf);
043a4492
RR
3477 strbuf_release(&buf);
3478 }
3479 if (opts->strategy)
f59199d5
PW
3480 res |= git_config_set_in_file_gently(opts_file,
3481 "options.strategy", opts->strategy);
3253553e 3482 if (opts->gpg_sign)
f59199d5
PW
3483 res |= git_config_set_in_file_gently(opts_file,
3484 "options.gpg-sign", opts->gpg_sign);
043a4492
RR
3485 if (opts->xopts) {
3486 int i;
3487 for (i = 0; i < opts->xopts_nr; i++)
88d5a271 3488 res |= git_config_set_multivar_in_file_gently(opts_file,
f59199d5
PW
3489 "options.strategy-option",
3490 opts->xopts[i], "^$", 0);
043a4492 3491 }
8d8cb4b0 3492 if (opts->allow_rerere_auto)
f59199d5
PW
3493 res |= git_config_set_in_file_gently(opts_file,
3494 "options.allow-rerere-auto",
3495 opts->allow_rerere_auto == RERERE_AUTOUPDATE ?
3496 "true" : "false");
dc42e9a8
PW
3497
3498 if (opts->explicit_cleanup)
3499 res |= git_config_set_in_file_gently(opts_file,
3500 "options.default-msg-cleanup",
3501 describe_cleanup_mode(opts->default_msg_cleanup));
88d5a271 3502 return res;
043a4492
RR
3503}
3504
f11c9580
NTND
3505static int make_patch(struct repository *r,
3506 struct commit *commit,
3507 struct replay_opts *opts)
56dc3ab0
JS
3508{
3509 struct strbuf buf = STRBUF_INIT;
3510 struct rev_info log_tree_opt;
0512eabd
JH
3511 const char *subject;
3512 char hex[GIT_MAX_HEXSZ + 1];
56dc3ab0
JS
3513 int res = 0;
3514
0512eabd
JH
3515 oid_to_hex_r(hex, &commit->object.oid);
3516 if (write_message(hex, strlen(hex), rebase_path_stopped_sha(), 1) < 0)
56dc3ab0 3517 return -1;
430b75f7 3518 res |= write_rebase_head(&commit->object.oid);
56dc3ab0
JS
3519
3520 strbuf_addf(&buf, "%s/patch", get_dir(opts));
3521 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
f11c9580 3522 repo_init_revisions(r, &log_tree_opt, NULL);
56dc3ab0
JS
3523 log_tree_opt.abbrev = 0;
3524 log_tree_opt.diff = 1;
3525 log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH;
3526 log_tree_opt.disable_stdin = 1;
3527 log_tree_opt.no_commit_id = 1;
3528 log_tree_opt.diffopt.file = fopen(buf.buf, "w");
3529 log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER;
3530 if (!log_tree_opt.diffopt.file)
3531 res |= error_errno(_("could not open '%s'"), buf.buf);
3532 else {
3533 res |= log_tree_commit(&log_tree_opt, commit);
3534 fclose(log_tree_opt.diffopt.file);
3535 }
3536 strbuf_reset(&buf);
3537
3538 strbuf_addf(&buf, "%s/message", get_dir(opts));
3539 if (!file_exists(buf.buf)) {
52f52e5a 3540 const char *encoding = get_commit_output_encoding();
4a93b899 3541 const char *commit_buffer = repo_logmsg_reencode(r,
ecb5091f
ÆAB
3542 commit, NULL,
3543 encoding);
56dc3ab0
JS
3544 find_commit_subject(commit_buffer, &subject);
3545 res |= write_message(subject, strlen(subject), buf.buf, 1);
4a93b899 3546 repo_unuse_commit_buffer(r, commit,
ecb5091f 3547 commit_buffer);
56dc3ab0
JS
3548 }
3549 strbuf_release(&buf);
2108fe4a 3550 release_revisions(&log_tree_opt);
56dc3ab0
JS
3551
3552 return res;
3553}
3554
3555static int intend_to_amend(void)
3556{
092bbcdf 3557 struct object_id head;
56dc3ab0
JS
3558 char *p;
3559
d850b7a5 3560 if (repo_get_oid(the_repository, "HEAD", &head))
56dc3ab0
JS
3561 return error(_("cannot read HEAD"));
3562
092bbcdf 3563 p = oid_to_hex(&head);
56dc3ab0
JS
3564 return write_message(p, strlen(p), rebase_path_amend(), 1);
3565}
3566
f11c9580
NTND
3567static int error_with_patch(struct repository *r,
3568 struct commit *commit,
3569 const char *subject, int subject_len,
3570 struct replay_opts *opts,
3571 int exit_code, int to_amend)
56dc3ab0 3572{
bc9238bb 3573 if (commit) {
f11c9580 3574 if (make_patch(r, commit, opts))
bc9238bb 3575 return -1;
5a5c5e95 3576 } else if (copy_file(rebase_path_message(),
f11c9580 3577 git_path_merge_msg(r), 0666))
bc9238bb 3578 return error(_("unable to copy '%s' to '%s'"),
f11c9580 3579 git_path_merge_msg(r), rebase_path_message());
56dc3ab0
JS
3580
3581 if (to_amend) {
3582 if (intend_to_amend())
3583 return -1;
3584
02127c63
NTND
3585 fprintf(stderr,
3586 _("You can amend the commit now, with\n"
3587 "\n"
3588 " git commit --amend %s\n"
3589 "\n"
3590 "Once you are satisfied with your changes, run\n"
3591 "\n"
3592 " git rebase --continue\n"),
3593 gpg_sign_opt_quoted(opts));
bc9238bb
PW
3594 } else if (exit_code) {
3595 if (commit)
5a5c5e95
JH
3596 fprintf_ln(stderr, _("Could not apply %s... %.*s"),
3597 short_commit_name(commit), subject_len, subject);
bc9238bb
PW
3598 else
3599 /*
3600 * We don't have the hash of the parent so
3601 * just print the line from the todo file.
3602 */
5a5c5e95
JH
3603 fprintf_ln(stderr, _("Could not merge %.*s"),
3604 subject_len, subject);
bc9238bb 3605 }
56dc3ab0
JS
3606
3607 return exit_code;
3608}
3609
f11c9580
NTND
3610static int error_failed_squash(struct repository *r,
3611 struct commit *commit,
3612 struct replay_opts *opts,
3613 int subject_len,
3614 const char *subject)
6e98de72 3615{
e12a7ef5
JS
3616 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3617 return error(_("could not copy '%s' to '%s'"),
6e98de72 3618 rebase_path_squash_msg(), rebase_path_message());
f11c9580
NTND
3619 unlink(git_path_merge_msg(r));
3620 if (copy_file(git_path_merge_msg(r), rebase_path_message(), 0666))
6e98de72 3621 return error(_("could not copy '%s' to '%s'"),
102de880 3622 rebase_path_message(),
f11c9580
NTND
3623 git_path_merge_msg(r));
3624 return error_with_patch(r, commit, subject, subject_len, opts, 1, 0);
6e98de72
JS
3625}
3626
f11c9580 3627static int do_exec(struct repository *r, const char *command_line)
311af526 3628{
ddbb47fd 3629 struct child_process cmd = CHILD_PROCESS_INIT;
311af526
JS
3630 int dirty, status;
3631
4d55d63b 3632 fprintf(stderr, _("Executing: %s\n"), command_line);
ddbb47fd
RS
3633 cmd.use_shell = 1;
3634 strvec_push(&cmd.args, command_line);
3635 status = run_command(&cmd);
311af526
JS
3636
3637 /* force re-reading of the cache */
9c5f3ee3
ÆAB
3638 discard_index(r->index);
3639 if (repo_read_index(r) < 0)
311af526
JS
3640 return error(_("could not read index"));
3641
f11c9580 3642 dirty = require_clean_work_tree(r, "rebase", NULL, 1, 1);
311af526
JS
3643
3644 if (status) {
3645 warning(_("execution failed: %s\n%s"
3646 "You can fix the problem, and then run\n"
3647 "\n"
3648 " git rebase --continue\n"
3649 "\n"),
3650 command_line,
3651 dirty ? N_("and made changes to the index and/or the "
3652 "working tree\n") : "");
3653 if (status == 127)
3654 /* command not found */
3655 status = 1;
3656 } else if (dirty) {
3657 warning(_("execution succeeded: %s\nbut "
3658 "left changes to the index and/or the working tree\n"
3659 "Commit or stash your changes, and then run\n"
3660 "\n"
3661 " git rebase --continue\n"
3662 "\n"), command_line);
3663 status = 1;
3664 }
3665
3666 return status;
3667}
3668
48ca53ca 3669__attribute__((format (printf, 2, 3)))
9055e401
JS
3670static int safe_append(const char *filename, const char *fmt, ...)
3671{
3672 va_list ap;
3673 struct lock_file lock = LOCK_INIT;
3674 int fd = hold_lock_file_for_update(&lock, filename,
3675 LOCK_REPORT_ON_ERROR);
3676 struct strbuf buf = STRBUF_INIT;
3677
3678 if (fd < 0)
3679 return -1;
3680
3681 if (strbuf_read_file(&buf, filename, 0) < 0 && errno != ENOENT) {
3682 error_errno(_("could not read '%s'"), filename);
3683 rollback_lock_file(&lock);
3684 return -1;
3685 }
3686 strbuf_complete(&buf, '\n');
3687 va_start(ap, fmt);
3688 strbuf_vaddf(&buf, fmt, ap);
3689 va_end(ap);
3690
3691 if (write_in_full(fd, buf.buf, buf.len) < 0) {
3692 error_errno(_("could not write to '%s'"), filename);
3693 strbuf_release(&buf);
3694 rollback_lock_file(&lock);
3695 return -1;
3696 }
3697 if (commit_lock_file(&lock) < 0) {
3698 strbuf_release(&buf);
3699 rollback_lock_file(&lock);
3700 return error(_("failed to finalize '%s'"), filename);
3701 }
3702
3703 strbuf_release(&buf);
3704 return 0;
3705}
3706
f11c9580 3707static int do_label(struct repository *r, const char *name, int len)
9055e401 3708{
f11c9580 3709 struct ref_store *refs = get_main_ref_store(r);
9055e401
JS
3710 struct ref_transaction *transaction;
3711 struct strbuf ref_name = STRBUF_INIT, err = STRBUF_INIT;
3712 struct strbuf msg = STRBUF_INIT;
3713 int ret = 0;
3714 struct object_id head_oid;
3715
3716 if (len == 1 && *name == '#')
02127c63 3717 return error(_("illegal label name: '%.*s'"), len, name);
9055e401
JS
3718
3719 strbuf_addf(&ref_name, "refs/rewritten/%.*s", len, name);
c2417d3a 3720 strbuf_addf(&msg, "rebase (label) '%.*s'", len, name);
9055e401 3721
c6da34a6 3722 transaction = ref_store_transaction_begin(refs, &err);
9055e401
JS
3723 if (!transaction) {
3724 error("%s", err.buf);
3725 ret = -1;
4a93b899 3726 } else if (repo_get_oid(r, "HEAD", &head_oid)) {
9055e401
JS
3727 error(_("could not read HEAD"));
3728 ret = -1;
3729 } else if (ref_transaction_update(transaction, ref_name.buf, &head_oid,
3730 NULL, 0, msg.buf, &err) < 0 ||
3731 ref_transaction_commit(transaction, &err)) {
3732 error("%s", err.buf);
3733 ret = -1;
3734 }
3735 ref_transaction_free(transaction);
3736 strbuf_release(&err);
3737 strbuf_release(&msg);
3738
3739 if (!ret)
3740 ret = safe_append(rebase_path_refs_to_delete(),
3741 "%s\n", ref_name.buf);
3742 strbuf_release(&ref_name);
3743
3744 return ret;
3745}
3746
d188a60d
PW
3747static const char *sequencer_reflog_action(struct replay_opts *opts)
3748{
3749 if (!opts->reflog_action) {
3750 opts->reflog_action = getenv(GIT_REFLOG_ACTION);
3751 opts->reflog_action =
3752 xstrdup(opts->reflog_action ? opts->reflog_action
3753 : action_name(opts));
3754 }
3755
3756 return opts->reflog_action;
3757}
3758
48ca53ca 3759__attribute__((format (printf, 3, 4)))
9055e401 3760static const char *reflog_message(struct replay_opts *opts,
d4ac3050
ÆAB
3761 const char *sub_action, const char *fmt, ...)
3762{
3763 va_list ap;
3764 static struct strbuf buf = STRBUF_INIT;
d4ac3050
ÆAB
3765
3766 va_start(ap, fmt);
3767 strbuf_reset(&buf);
d188a60d 3768 strbuf_addstr(&buf, sequencer_reflog_action(opts));
d4ac3050
ÆAB
3769 if (sub_action)
3770 strbuf_addf(&buf, " (%s)", sub_action);
3771 if (fmt) {
3772 strbuf_addstr(&buf, ": ");
3773 strbuf_vaddf(&buf, fmt, ap);
3774 }
3775 va_end(ap);
3776
3777 return buf.buf;
3778}
9055e401 3779
688d82f2
PW
3780static struct commit *lookup_label(struct repository *r, const char *label,
3781 int len, struct strbuf *buf)
82766b29
PW
3782{
3783 struct commit *commit;
688d82f2 3784 struct object_id oid;
82766b29
PW
3785
3786 strbuf_reset(buf);
3787 strbuf_addf(buf, "refs/rewritten/%.*s", len, label);
688d82f2
PW
3788 if (!read_ref(buf->buf, &oid)) {
3789 commit = lookup_commit_object(r, &oid);
3790 } else {
82766b29
PW
3791 /* fall back to non-rewritten ref or commit */
3792 strbuf_splice(buf, 0, strlen("refs/rewritten/"), "", 0);
3793 commit = lookup_commit_reference_by_name(buf->buf);
3794 }
3795
3796 if (!commit)
3797 error(_("could not resolve '%s'"), buf->buf);
3798
3799 return commit;
3800}
3801
f11c9580
NTND
3802static int do_reset(struct repository *r,
3803 const char *name, int len,
3804 struct replay_opts *opts)
9055e401
JS
3805{
3806 struct strbuf ref_name = STRBUF_INIT;
3807 struct object_id oid;
3808 struct lock_file lock = LOCK_INIT;
0c52cf8e 3809 struct tree_desc desc = { 0 };
9055e401 3810 struct tree *tree;
6e658547 3811 struct unpack_trees_options unpack_tree_opts = { 0 };
71571cd7 3812 int ret = 0;
9055e401 3813
3a95f31d 3814 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0)
9055e401
JS
3815 return -1;
3816
ebddf393
JS
3817 if (len == 10 && !strncmp("[new root]", name, len)) {
3818 if (!opts->have_squash_onto) {
3819 const char *hex;
3820 if (commit_tree("", 0, the_hash_algo->empty_tree,
3821 NULL, &opts->squash_onto,
3822 NULL, NULL))
3823 return error(_("writing fake root commit"));
3824 opts->have_squash_onto = 1;
3825 hex = oid_to_hex(&opts->squash_onto);
3826 if (write_message(hex, strlen(hex),
3827 rebase_path_squash_onto(), 0))
3828 return error(_("writing squash-onto"));
3829 }
3830 oidcpy(&oid, &opts->squash_onto);
3831 } else {
71571cd7 3832 int i;
82766b29 3833 struct commit *commit;
71571cd7 3834
ebddf393
JS
3835 /* Determine the length of the label */
3836 for (i = 0; i < len; i++)
3837 if (isspace(name[i]))
71571cd7
3838 break;
3839 len = i;
ebddf393 3840
688d82f2 3841 commit = lookup_label(r, name, len, &ref_name);
82766b29
PW
3842 if (!commit) {
3843 ret = -1;
0c52cf8e 3844 goto cleanup;
ebddf393 3845 }
82766b29 3846 oid = commit->object.oid;
9055e401
JS
3847 }
3848
9055e401
JS
3849 setup_unpack_trees_porcelain(&unpack_tree_opts, "reset");
3850 unpack_tree_opts.head_idx = 1;
f11c9580
NTND
3851 unpack_tree_opts.src_index = r->index;
3852 unpack_tree_opts.dst_index = r->index;
9055e401
JS
3853 unpack_tree_opts.fn = oneway_merge;
3854 unpack_tree_opts.merge = 1;
3855 unpack_tree_opts.update = 1;
1b5f3733 3856 unpack_tree_opts.preserve_ignored = 0; /* FIXME: !overwrite_ignore */
652bd021 3857 unpack_tree_opts.skip_cache_tree_update = 1;
3f267856 3858 init_checkout_metadata(&unpack_tree_opts.meta, name, &oid, NULL);
9055e401 3859
e1ff0a32 3860 if (repo_read_index_unmerged(r)) {
1c8dfc36 3861 ret = error_resolve_conflict(action_name(opts));
0c52cf8e 3862 goto cleanup;
9055e401
JS
3863 }
3864
5e575807 3865 if (!fill_tree_descriptor(r, &desc, &oid)) {
0c52cf8e
ÆAB
3866 ret = error(_("failed to find tree of %s"), oid_to_hex(&oid));
3867 goto cleanup;
9055e401
JS
3868 }
3869
3870 if (unpack_trees(1, &desc, &unpack_tree_opts)) {
0c52cf8e
ÆAB
3871 ret = -1;
3872 goto cleanup;
9055e401
JS
3873 }
3874
3875 tree = parse_tree_indirect(&oid);
c207e9e1 3876 prime_cache_tree(r, r->index, tree);
9055e401 3877
f11c9580 3878 if (write_locked_index(r->index, &lock, COMMIT_LOCK) < 0)
9055e401 3879 ret = error(_("could not write index"));
9055e401
JS
3880
3881 if (!ret)
3882 ret = update_ref(reflog_message(opts, "reset", "'%.*s'",
3883 len, name), "HEAD", &oid,
3884 NULL, 0, UPDATE_REFS_MSG_ON_ERR);
0c52cf8e
ÆAB
3885cleanup:
3886 free((void *)desc.buffer);
3887 if (ret < 0)
3888 rollback_lock_file(&lock);
9055e401 3889 strbuf_release(&ref_name);
6e658547 3890 clear_unpack_trees_porcelain(&unpack_tree_opts);
9055e401
JS
3891 return ret;
3892}
3893
f11c9580
NTND
3894static int do_merge(struct repository *r,
3895 struct commit *commit,
3896 const char *arg, int arg_len,
2be6b6f4 3897 int flags, int *check_todo, struct replay_opts *opts)
4c68e7dd 3898{
2be6b6f4 3899 int run_commit_flags = 0;
4c68e7dd
JS
3900 struct strbuf ref_name = STRBUF_INIT;
3901 struct commit *head_commit, *merge_commit, *i;
5327d898 3902 struct commit_list *bases, *j;
2b6ad0f4 3903 struct commit_list *to_merge = NULL, **tail = &to_merge;
e145d993 3904 const char *strategy = !opts->xopts_nr &&
14c4586c
EN
3905 (!opts->strategy ||
3906 !strcmp(opts->strategy, "recursive") ||
3907 !strcmp(opts->strategy, "ort")) ?
e145d993 3908 NULL : opts->strategy;
4c68e7dd 3909 struct merge_options o;
2b6ad0f4 3910 int merge_arg_len, oneline_offset, can_fast_forward, ret, k;
4c68e7dd
JS
3911 static struct lock_file lock;
3912 const char *p;
3913
3a95f31d 3914 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0) {
4c68e7dd
JS
3915 ret = -1;
3916 goto leave_merge;
3917 }
3918
3919 head_commit = lookup_commit_reference_by_name("HEAD");
3920 if (!head_commit) {
3921 ret = error(_("cannot merge without a current revision"));
3922 goto leave_merge;
3923 }
3924
2b6ad0f4
JS
3925 /*
3926 * For octopus merges, the arg starts with the list of revisions to be
3927 * merged. The list is optionally followed by '#' and the oneline.
3928 */
3929 merge_arg_len = oneline_offset = arg_len;
3930 for (p = arg; p - arg < arg_len; p += strspn(p, " \t\n")) {
3931 if (!*p)
3932 break;
3933 if (*p == '#' && (!p[1] || isspace(p[1]))) {
3934 p += 1 + strspn(p + 1, " \t\n");
3935 oneline_offset = p - arg;
3936 break;
3937 }
3938 k = strcspn(p, " \t\n");
3939 if (!k)
3940 continue;
688d82f2 3941 merge_commit = lookup_label(r, p, k, &ref_name);
2b6ad0f4
JS
3942 if (!merge_commit) {
3943 ret = error(_("unable to parse '%.*s'"), k, p);
3944 goto leave_merge;
3945 }
3946 tail = &commit_list_insert(merge_commit, tail)->next;
3947 p += k;
3948 merge_arg_len = p - arg;
4c68e7dd
JS
3949 }
3950
2b6ad0f4
JS
3951 if (!to_merge) {
3952 ret = error(_("nothing to merge: '%.*s'"), arg_len, arg);
4c68e7dd
JS
3953 goto leave_merge;
3954 }
3955
9c85a1c2 3956 if (opts->have_squash_onto &&
4a7e27e9 3957 oideq(&head_commit->object.oid, &opts->squash_onto)) {
9c85a1c2
JS
3958 /*
3959 * When the user tells us to "merge" something into a
3960 * "[new root]", let's simply fast-forward to the merge head.
3961 */
3962 rollback_lock_file(&lock);
2b6ad0f4
JS
3963 if (to_merge->next)
3964 ret = error(_("octopus merge cannot be executed on "
3965 "top of a [new root]"));
3966 else
f11c9580 3967 ret = fast_forward_to(r, &to_merge->item->object.oid,
2b6ad0f4
JS
3968 &head_commit->object.oid, 0,
3969 opts);
9c85a1c2
JS
3970 goto leave_merge;
3971 }
3972
baf8ec8d
PW
3973 /*
3974 * If HEAD is not identical to the first parent of the original merge
3975 * commit, we cannot fast-forward.
3976 */
3977 can_fast_forward = opts->allow_ff && commit && commit->parents &&
3978 oideq(&commit->parents->item->object.oid,
3979 &head_commit->object.oid);
3980
3981 /*
3982 * If any merge head is different from the original one, we cannot
3983 * fast-forward.
3984 */
3985 if (can_fast_forward) {
3986 struct commit_list *p = commit->parents->next;
3987
3988 for (j = to_merge; j && p; j = j->next, p = p->next)
3989 if (!oideq(&j->item->object.oid,
3990 &p->item->object.oid)) {
3991 can_fast_forward = 0;
3992 break;
3993 }
3994 /*
3995 * If the number of merge heads differs from the original merge
3996 * commit, we cannot fast-forward.
3997 */
3998 if (j || p)
3999 can_fast_forward = 0;
4000 }
4001
4002 if (can_fast_forward) {
4003 rollback_lock_file(&lock);
4004 ret = fast_forward_to(r, &commit->object.oid,
4005 &head_commit->object.oid, 0, opts);
4006 if (flags & TODO_EDIT_MERGE_MSG)
4007 goto fast_forward_edit;
4008
4009 goto leave_merge;
4010 }
4011
4c68e7dd 4012 if (commit) {
5772b0c7 4013 const char *encoding = get_commit_output_encoding();
4a93b899 4014 const char *message = repo_logmsg_reencode(r, commit, NULL,
ecb5091f 4015 encoding);
4c68e7dd
JS
4016 const char *body;
4017 int len;
4018
4019 if (!message) {
4020 ret = error(_("could not get commit message of '%s'"),
4021 oid_to_hex(&commit->object.oid));
4022 goto leave_merge;
4023 }
4024 write_author_script(message);
4025 find_commit_subject(message, &body);
4026 len = strlen(body);
f11c9580 4027 ret = write_message(body, len, git_path_merge_msg(r), 0);
4a93b899 4028 repo_unuse_commit_buffer(r, commit, message);
4c68e7dd
JS
4029 if (ret) {
4030 error_errno(_("could not write '%s'"),
f11c9580 4031 git_path_merge_msg(r));
4c68e7dd
JS
4032 goto leave_merge;
4033 }
4034 } else {
4035 struct strbuf buf = STRBUF_INIT;
4036 int len;
4037
4038 strbuf_addf(&buf, "author %s", git_author_info(0));
4039 write_author_script(buf.buf);
4040 strbuf_reset(&buf);
4041
4042 if (oneline_offset < arg_len) {
4043 p = arg + oneline_offset;
4044 len = arg_len - oneline_offset;
4045 } else {
2b6ad0f4
JS
4046 strbuf_addf(&buf, "Merge %s '%.*s'",
4047 to_merge->next ? "branches" : "branch",
4c68e7dd
JS
4048 merge_arg_len, arg);
4049 p = buf.buf;
4050 len = buf.len;
4051 }
4052
f11c9580 4053 ret = write_message(p, len, git_path_merge_msg(r), 0);
4c68e7dd
JS
4054 strbuf_release(&buf);
4055 if (ret) {
4056 error_errno(_("could not write '%s'"),
f11c9580 4057 git_path_merge_msg(r));
4c68e7dd
JS
4058 goto leave_merge;
4059 }
4060 }
4061
e145d993 4062 if (strategy || to_merge->next) {
2b6ad0f4
JS
4063 /* Octopus merge */
4064 struct child_process cmd = CHILD_PROCESS_INIT;
4065
29fda24d 4066 if (read_env_script(&cmd.env)) {
2b6ad0f4
JS
4067 const char *gpg_opt = gpg_sign_opt_quoted(opts);
4068
4069 ret = error(_(staged_changes_advice), gpg_opt, gpg_opt);
4070 goto leave_merge;
4071 }
4072
7573cec5 4073 if (opts->committer_date_is_author_date)
29fda24d 4074 strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s",
9c31b19d
JH
4075 opts->ignore_date ?
4076 "" :
b3193252 4077 author_date_from_env(&cmd.env));
a3894aad 4078 if (opts->ignore_date)
29fda24d 4079 strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
7573cec5 4080
2b6ad0f4 4081 cmd.git_cmd = 1;
c972bf4c
JK
4082 strvec_push(&cmd.args, "merge");
4083 strvec_push(&cmd.args, "-s");
e145d993 4084 if (!strategy)
c972bf4c 4085 strvec_push(&cmd.args, "octopus");
e145d993 4086 else {
c972bf4c 4087 strvec_push(&cmd.args, strategy);
e145d993 4088 for (k = 0; k < opts->xopts_nr; k++)
c972bf4c 4089 strvec_pushf(&cmd.args,
f6d8942b 4090 "-X%s", opts->xopts[k]);
e145d993 4091 }
f2563c9e
PW
4092 if (!(flags & TODO_EDIT_MERGE_MSG))
4093 strvec_push(&cmd.args, "--no-edit");
4094 else
4095 strvec_push(&cmd.args, "--edit");
c972bf4c
JK
4096 strvec_push(&cmd.args, "--no-ff");
4097 strvec_push(&cmd.args, "--no-log");
4098 strvec_push(&cmd.args, "--no-stat");
4099 strvec_push(&cmd.args, "-F");
4100 strvec_push(&cmd.args, git_path_merge_msg(r));
2b6ad0f4 4101 if (opts->gpg_sign)
ae03c97a 4102 strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign);
19dad040
4103 else
4104 strvec_push(&cmd.args, "--no-gpg-sign");
2b6ad0f4
JS
4105
4106 /* Add the tips to be merged */
4107 for (j = to_merge; j; j = j->next)
c972bf4c 4108 strvec_push(&cmd.args,
f6d8942b 4109 oid_to_hex(&j->item->object.oid));
2b6ad0f4
JS
4110
4111 strbuf_release(&ref_name);
c8e4159e
HWN
4112 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
4113 NULL, 0);
2b6ad0f4
JS
4114 rollback_lock_file(&lock);
4115
2b6ad0f4
JS
4116 ret = run_command(&cmd);
4117
4118 /* force re-reading of the cache */
9c5f3ee3
ÆAB
4119 if (!ret) {
4120 discard_index(r->index);
4121 if (repo_read_index(r) < 0)
4122 ret = error(_("could not read index"));
4123 }
2b6ad0f4
JS
4124 goto leave_merge;
4125 }
4126
4127 merge_commit = to_merge->item;
4a93b899 4128 bases = repo_get_merge_bases(r, head_commit, merge_commit);
4a7e27e9
JK
4129 if (bases && oideq(&merge_commit->object.oid,
4130 &bases->item->object.oid)) {
7ccdf65b
JS
4131 ret = 0;
4132 /* skip merging an ancestor of HEAD */
4133 goto leave_merge;
4134 }
4135
4439c7a3 4136 write_message(oid_to_hex(&merge_commit->object.oid), the_hash_algo->hexsz,
cde55548
JH
4137 git_path_merge_head(r), 0);
4138 write_message("no-ff", 5, git_path_merge_mode(r), 0);
85f8d9da 4139
5327d898 4140 bases = reverse_commit_list(bases);
4c68e7dd 4141
e1ff0a32 4142 repo_read_index(r);
0d6caa2d 4143 init_merge_options(&o, r);
4c68e7dd
JS
4144 o.branch1 = "HEAD";
4145 o.branch2 = ref_name.buf;
4146 o.buffer_output = 2;
4147
6a5fb966 4148 if (!opts->strategy || !strcmp(opts->strategy, "ort")) {
14c4586c
EN
4149 /*
4150 * TODO: Should use merge_incore_recursive() and
4151 * merge_switch_to_result(), skipping the call to
4152 * merge_switch_to_result() when we don't actually need to
4153 * update the index and working copy immediately.
4154 */
4155 ret = merge_ort_recursive(&o,
5327d898 4156 head_commit, merge_commit, bases,
14c4586c
EN
4157 &i);
4158 } else {
5327d898 4159 ret = merge_recursive(&o, head_commit, merge_commit, bases,
14c4586c
EN
4160 &i);
4161 }
4c68e7dd
JS
4162 if (ret <= 0)
4163 fputs(o.obuf.buf, stdout);
4164 strbuf_release(&o.obuf);
4165 if (ret < 0) {
4166 error(_("could not even attempt to merge '%.*s'"),
4167 merge_arg_len, arg);
4168 goto leave_merge;
4169 }
4170 /*
4171 * The return value of merge_recursive() is 1 on clean, and 0 on
4172 * unclean merge.
4173 *
4174 * Let's reverse that, so that do_merge() returns 0 upon success and
4175 * 1 upon failed merge (keeping the return value -1 for the cases where
4176 * we will want to reschedule the `merge` command).
4177 */
4178 ret = !ret;
4179
f11c9580
NTND
4180 if (r->index->cache_changed &&
4181 write_locked_index(r->index, &lock, COMMIT_LOCK)) {
4c68e7dd
JS
4182 ret = error(_("merge: Unable to write new index file"));
4183 goto leave_merge;
4184 }
4185
4186 rollback_lock_file(&lock);
4187 if (ret)
f11c9580 4188 repo_rerere(r, opts->allow_rerere_auto);
4c68e7dd
JS
4189 else
4190 /*
4191 * In case of problems, we now want to return a positive
4192 * value (a negative one would indicate that the `merge`
4193 * command needs to be rescheduled).
4194 */
20f4b044 4195 ret = !!run_git_commit(git_path_merge_msg(r), opts,
f11c9580 4196 run_commit_flags);
4c68e7dd 4197
2be6b6f4
PW
4198 if (!ret && flags & TODO_EDIT_MERGE_MSG) {
4199 fast_forward_edit:
4200 *check_todo = 1;
4201 run_commit_flags |= AMEND_MSG | EDIT_MSG | VERIFY_MSG;
4202 ret = !!run_git_commit(NULL, opts, run_commit_flags);
4203 }
4204
4205
4c68e7dd
JS
4206leave_merge:
4207 strbuf_release(&ref_name);
4208 rollback_lock_file(&lock);
2b6ad0f4 4209 free_commit_list(to_merge);
4c68e7dd
JS
4210 return ret;
4211}
4212
89fc0b53
DS
4213static int write_update_refs_state(struct string_list *refs_to_oids)
4214{
4215 int result = 0;
4216 struct lock_file lock = LOCK_INIT;
4217 FILE *fp = NULL;
4218 struct string_list_item *item;
4219 char *path;
4220
89fc0b53
DS
4221 path = rebase_path_update_refs(the_repository->gitdir);
4222
44da9e08
VD
4223 if (!refs_to_oids->nr) {
4224 if (unlink(path) && errno != ENOENT)
4225 result = error_errno(_("could not unlink: %s"), path);
4226 goto cleanup;
4227 }
4228
89fc0b53
DS
4229 if (safe_create_leading_directories(path)) {
4230 result = error(_("unable to create leading directories of %s"),
4231 path);
4232 goto cleanup;
4233 }
4234
4235 if (hold_lock_file_for_update(&lock, path, 0) < 0) {
4236 result = error(_("another 'rebase' process appears to be running; "
4237 "'%s.lock' already exists"),
4238 path);
4239 goto cleanup;
4240 }
4241
4242 fp = fdopen_lock_file(&lock, "w");
4243 if (!fp) {
4244 result = error_errno(_("could not open '%s' for writing"), path);
4245 rollback_lock_file(&lock);
4246 goto cleanup;
4247 }
4248
4249 for_each_string_list_item(item, refs_to_oids) {
4250 struct update_ref_record *rec = item->util;
4251 fprintf(fp, "%s\n%s\n%s\n", item->string,
4252 oid_to_hex(&rec->before), oid_to_hex(&rec->after));
4253 }
4254
4255 result = commit_lock_file(&lock);
4256
4257cleanup:
4258 free(path);
4259 return result;
4260}
4261
b3b1a21d
DS
4262/*
4263 * Parse the update-refs file for the current rebase, then remove the
4264 * refs that do not appear in the todo_list (and have not had updated
4265 * values stored) and add refs that are in the todo_list but not
4266 * represented in the update-refs file.
4267 *
4268 * If there are changes to the update-refs list, then write the new state
4269 * to disk.
4270 */
4271void todo_list_filter_update_refs(struct repository *r,
4272 struct todo_list *todo_list)
4273{
4274 int i;
4275 int updated = 0;
4276 struct string_list update_refs = STRING_LIST_INIT_DUP;
4277
4278 sequencer_get_update_refs_state(r->gitdir, &update_refs);
4279
4280 /*
4281 * For each item in the update_refs list, if it has no updated
4282 * value and does not appear in the todo_list, then remove it
4283 * from the update_refs list.
4284 */
4285 for (i = 0; i < update_refs.nr; i++) {
4286 int j;
4287 int found = 0;
4288 const char *ref = update_refs.items[i].string;
4289 size_t reflen = strlen(ref);
4290 struct update_ref_record *rec = update_refs.items[i].util;
4291
4292 /* OID already stored as updated. */
4293 if (!is_null_oid(&rec->after))
4294 continue;
4295
4296 for (j = 0; !found && j < todo_list->total_nr; j++) {
4297 struct todo_item *item = &todo_list->items[j];
4298 const char *arg = todo_list->buf.buf + item->arg_offset;
4299
4300 if (item->command != TODO_UPDATE_REF)
4301 continue;
4302
4303 if (item->arg_len != reflen ||
4304 strncmp(arg, ref, reflen))
4305 continue;
4306
4307 found = 1;
4308 }
4309
4310 if (!found) {
4311 free(update_refs.items[i].string);
4312 free(update_refs.items[i].util);
4313
4314 update_refs.nr--;
4315 MOVE_ARRAY(update_refs.items + i, update_refs.items + i + 1, update_refs.nr - i);
4316
4317 updated = 1;
4318 i--;
4319 }
4320 }
4321
4322 /*
4323 * For each todo_item, check if its ref is in the update_refs list.
4324 * If not, then add it as an un-updated ref.
4325 */
4326 for (i = 0; i < todo_list->total_nr; i++) {
4327 struct todo_item *item = &todo_list->items[i];
4328 const char *arg = todo_list->buf.buf + item->arg_offset;
4329 int j, found = 0;
4330
4331 if (item->command != TODO_UPDATE_REF)
4332 continue;
4333
4334 for (j = 0; !found && j < update_refs.nr; j++) {
4335 const char *ref = update_refs.items[j].string;
4336
4337 found = strlen(ref) == item->arg_len &&
4338 !strncmp(ref, arg, item->arg_len);
4339 }
4340
4341 if (!found) {
4342 struct string_list_item *inserted;
4343 struct strbuf argref = STRBUF_INIT;
4344
4345 strbuf_add(&argref, arg, item->arg_len);
4346 inserted = string_list_insert(&update_refs, argref.buf);
4347 inserted->util = init_update_ref_record(argref.buf);
4348 strbuf_release(&argref);
4349 updated = 1;
4350 }
4351 }
4352
4353 if (updated)
4354 write_update_refs_state(&update_refs);
4355 string_list_clear(&update_refs, 1);
4356}
4357
89fc0b53 4358static int do_update_ref(struct repository *r, const char *refname)
a97d7916 4359{
89fc0b53
DS
4360 struct string_list_item *item;
4361 struct string_list list = STRING_LIST_INIT_DUP;
4362
4363 if (sequencer_get_update_refs_state(r->gitdir, &list))
4364 return -1;
4365
4366 for_each_string_list_item(item, &list) {
4367 if (!strcmp(item->string, refname)) {
4368 struct update_ref_record *rec = item->util;
4369 if (read_ref("HEAD", &rec->after))
4370 return -1;
4371 break;
4372 }
4373 }
4374
4375 write_update_refs_state(&list);
4376 string_list_clear(&list, 1);
a97d7916
DS
4377 return 0;
4378}
4379
4611884e 4380static int do_update_refs(struct repository *r, int quiet)
89fc0b53
DS
4381{
4382 int res = 0;
4383 struct string_list_item *item;
4384 struct string_list refs_to_oids = STRING_LIST_INIT_DUP;
4385 struct ref_store *refs = get_main_ref_store(r);
4611884e
DS
4386 struct strbuf update_msg = STRBUF_INIT;
4387 struct strbuf error_msg = STRBUF_INIT;
89fc0b53
DS
4388
4389 if ((res = sequencer_get_update_refs_state(r->gitdir, &refs_to_oids)))
4390 return res;
4391
4392 for_each_string_list_item(item, &refs_to_oids) {
4393 struct update_ref_record *rec = item->util;
4611884e 4394 int loop_res;
89fc0b53 4395
4611884e
DS
4396 loop_res = refs_update_ref(refs, "rewritten during rebase",
4397 item->string,
4398 &rec->after, &rec->before,
4399 0, UPDATE_REFS_MSG_ON_ERR);
4400 res |= loop_res;
4401
4402 if (quiet)
4403 continue;
4404
4405 if (loop_res)
4406 strbuf_addf(&error_msg, "\t%s\n", item->string);
4407 else
4408 strbuf_addf(&update_msg, "\t%s\n", item->string);
4409 }
4410
4411 if (!quiet &&
4412 (update_msg.len || error_msg.len)) {
4413 fprintf(stderr,
4414 _("Updated the following refs with %s:\n%s"),
4415 "--update-refs",
4416 update_msg.buf);
4417
4418 if (res)
4419 fprintf(stderr,
4420 _("Failed to update the following refs with %s:\n%s"),
4421 "--update-refs",
4422 error_msg.buf);
89fc0b53
DS
4423 }
4424
4425 string_list_clear(&refs_to_oids, 1);
4611884e
DS
4426 strbuf_release(&update_msg);
4427 strbuf_release(&error_msg);
89fc0b53
DS
4428 return res;
4429}
4430
6e98de72
JS
4431static int is_final_fixup(struct todo_list *todo_list)
4432{
4433 int i = todo_list->current;
4434
4435 if (!is_fixup(todo_list->items[i].command))
4436 return 0;
4437
4438 while (++i < todo_list->nr)
4439 if (is_fixup(todo_list->items[i].command))
4440 return 0;
4441 else if (!is_noop(todo_list->items[i].command))
4442 break;
4443 return 1;
4444}
4445
25cb8df9
JS
4446static enum todo_command peek_command(struct todo_list *todo_list, int offset)
4447{
4448 int i;
4449
4450 for (i = todo_list->current + offset; i < todo_list->nr; i++)
4451 if (!is_noop(todo_list->items[i].command))
4452 return todo_list->items[i].command;
4453
4454 return -1;
4455}
4456
b7de153b 4457void create_autostash(struct repository *r, const char *path)
0816f1df
DL
4458{
4459 struct strbuf buf = STRBUF_INIT;
4460 struct lock_file lock_file = LOCK_INIT;
4461 int fd;
4462
4463 fd = repo_hold_locked_index(r, &lock_file, 0);
4464 refresh_index(r->index, REFRESH_QUIET, NULL, NULL, NULL);
4465 if (0 <= fd)
4466 repo_update_index_if_able(r, &lock_file);
4467 rollback_lock_file(&lock_file);
4468
4469 if (has_unstaged_changes(r, 1) ||
4470 has_uncommitted_changes(r, 1)) {
4471 struct child_process stash = CHILD_PROCESS_INIT;
6ae80861 4472 struct reset_head_opts ropts = { .flags = RESET_HEAD_HARD };
0816f1df
DL
4473 struct object_id oid;
4474
c972bf4c 4475 strvec_pushl(&stash.args,
f6d8942b 4476 "stash", "create", "autostash", NULL);
0816f1df
DL
4477 stash.git_cmd = 1;
4478 stash.no_stdin = 1;
4479 strbuf_reset(&buf);
4480 if (capture_command(&stash, &buf, GIT_MAX_HEXSZ))
4481 die(_("Cannot autostash"));
4482 strbuf_trim_trailing_newline(&buf);
4a93b899 4483 if (repo_get_oid(r, buf.buf, &oid))
0816f1df
DL
4484 die(_("Unexpected stash response: '%s'"),
4485 buf.buf);
4486 strbuf_reset(&buf);
4487 strbuf_add_unique_abbrev(&buf, &oid, DEFAULT_ABBREV);
4488
4489 if (safe_create_leading_directories_const(path))
4490 die(_("Could not create directory for '%s'"),
4491 path);
4492 write_file(path, "%s", oid_to_hex(&oid));
4493 printf(_("Created autostash: %s\n"), buf.buf);
6ae80861 4494 if (reset_head(r, &ropts) < 0)
0816f1df 4495 die(_("could not reset --hard"));
9c5f3ee3
ÆAB
4496 discard_index(r->index);
4497 if (repo_read_index(r) < 0)
0816f1df
DL
4498 die(_("could not read index"));
4499 }
4500 strbuf_release(&buf);
4501}
4502
804fe315 4503static int apply_save_autostash_oid(const char *stash_oid, int attempt_apply)
796c7972 4504{
796c7972
JS
4505 struct child_process child = CHILD_PROCESS_INIT;
4506 int ret = 0;
4507
12b6e136
DL
4508 if (attempt_apply) {
4509 child.git_cmd = 1;
4510 child.no_stdout = 1;
4511 child.no_stderr = 1;
c972bf4c
JK
4512 strvec_push(&child.args, "stash");
4513 strvec_push(&child.args, "apply");
4514 strvec_push(&child.args, stash_oid);
12b6e136 4515 ret = run_command(&child);
796c7972 4516 }
796c7972 4517
12b6e136 4518 if (attempt_apply && !ret)
cdb866b3 4519 fprintf(stderr, _("Applied autostash.\n"));
796c7972
JS
4520 else {
4521 struct child_process store = CHILD_PROCESS_INIT;
4522
4523 store.git_cmd = 1;
c972bf4c
JK
4524 strvec_push(&store.args, "stash");
4525 strvec_push(&store.args, "store");
4526 strvec_push(&store.args, "-m");
4527 strvec_push(&store.args, "autostash");
4528 strvec_push(&store.args, "-q");
4529 strvec_push(&store.args, stash_oid);
796c7972 4530 if (run_command(&store))
804fe315 4531 ret = error(_("cannot store %s"), stash_oid);
796c7972 4532 else
cdb866b3 4533 fprintf(stderr,
12b6e136 4534 _("%s\n"
cdb866b3
JS
4535 "Your changes are safe in the stash.\n"
4536 "You can run \"git stash pop\" or"
12b6e136
DL
4537 " \"git stash drop\" at any time.\n"),
4538 attempt_apply ?
4539 _("Applying autostash resulted in conflicts.") :
4540 _("Autostash exists; creating a new stash entry."));
796c7972
JS
4541 }
4542
796c7972
JS
4543 return ret;
4544}
4545
804fe315
DL
4546static int apply_save_autostash(const char *path, int attempt_apply)
4547{
4548 struct strbuf stash_oid = STRBUF_INIT;
4549 int ret = 0;
4550
4551 if (!read_oneliner(&stash_oid, path,
4552 READ_ONELINER_SKIP_IF_EMPTY)) {
4553 strbuf_release(&stash_oid);
4554 return 0;
4555 }
4556 strbuf_trim(&stash_oid);
4557
4558 ret = apply_save_autostash_oid(stash_oid.buf, attempt_apply);
4559
0dd562e0 4560 unlink(path);
facca7f0 4561 strbuf_release(&stash_oid);
796c7972
JS
4562 return ret;
4563}
4564
12b6e136
DL
4565int save_autostash(const char *path)
4566{
4567 return apply_save_autostash(path, 0);
4568}
4569
4570int apply_autostash(const char *path)
4571{
4572 return apply_save_autostash(path, 1);
4573}
4574
804fe315
DL
4575int apply_autostash_oid(const char *stash_oid)
4576{
4577 return apply_save_autostash_oid(stash_oid, 1);
4578}
4579
fc4a6735 4580static int checkout_onto(struct repository *r, struct replay_opts *opts,
7d3488eb 4581 const char *onto_name, const struct object_id *onto,
f3e27a02 4582 const struct object_id *orig_head)
4df66c40 4583{
38c541ce
PW
4584 struct reset_head_opts ropts = {
4585 .oid = onto,
4586 .orig_head = orig_head,
4587 .flags = RESET_HEAD_DETACH | RESET_ORIG_HEAD |
4588 RESET_HEAD_RUN_POST_CHECKOUT_HOOK,
4589 .head_msg = reflog_message(opts, "start", "checkout %s",
4590 onto_name),
d188a60d 4591 .default_reflog_action = sequencer_reflog_action(opts)
38c541ce
PW
4592 };
4593 if (reset_head(r, &ropts)) {
be1bb600 4594 apply_autostash(rebase_path_autostash());
4df66c40
AG
4595 sequencer_remove_state(opts);
4596 return error(_("could not detach HEAD"));
4597 }
4598
38c541ce 4599 return 0;
4df66c40
AG
4600}
4601
005af339 4602static int stopped_at_head(struct repository *r)
71f82465
JS
4603{
4604 struct object_id head;
4605 struct commit *commit;
4606 struct commit_message message;
4607
4a93b899 4608 if (repo_get_oid(r, "HEAD", &head) ||
005af339 4609 !(commit = lookup_commit(r, &head)) ||
4a93b899 4610 repo_parse_commit(r, commit) || get_message(commit, &message))
71f82465
JS
4611 fprintf(stderr, _("Stopped at HEAD\n"));
4612 else {
4613 fprintf(stderr, _("Stopped at %s\n"), message.label);
4614 free_message(commit, &message);
4615 }
4616 return 0;
4617
4618}
4619
dfa8bae5
PW
4620static int reread_todo_if_changed(struct repository *r,
4621 struct todo_list *todo_list,
4622 struct replay_opts *opts)
4623{
2b88fe06
PW
4624 int offset;
4625 struct strbuf buf = STRBUF_INIT;
dfa8bae5 4626
2b88fe06
PW
4627 if (strbuf_read_file_or_whine(&buf, get_todo_path(opts)) < 0)
4628 return -1;
4629 offset = get_item_line_offset(todo_list, todo_list->current + 1);
4630 if (buf.len != todo_list->buf.len - offset ||
4631 memcmp(buf.buf, todo_list->buf.buf + offset, buf.len)) {
dfa8bae5
PW
4632 /* Reread the todo file if it has changed. */
4633 todo_list_release(todo_list);
4634 if (read_populate_todo(r, todo_list, opts))
4635 return -1; /* message was printed */
4636 /* `current` will be incremented on return */
4637 todo_list->current = -1;
4638 }
2b88fe06 4639 strbuf_release(&buf);
dfa8bae5
PW
4640
4641 return 0;
4642}
4643
cb5206ea
JS
4644static const char rescheduled_advice[] =
4645N_("Could not execute the todo command\n"
4646"\n"
4647" %.*s"
4648"\n"
4649"It has been rescheduled; To edit the command before continuing, please\n"
4650"edit the todo list first:\n"
4651"\n"
4652" git rebase --edit-todo\n"
4653" git rebase --continue\n");
4654
f11c9580
NTND
4655static int pick_commits(struct repository *r,
4656 struct todo_list *todo_list,
4657 struct replay_opts *opts)
043a4492 4658{
9055e401 4659 int res = 0, reschedule = 0;
043a4492 4660
d188a60d 4661 opts->reflog_message = sequencer_reflog_action(opts);
043a4492
RR
4662 if (opts->allow_ff)
4663 assert(!(opts->signoff || opts->no_commit ||
39edfd5c 4664 opts->record_origin || should_edit(opts) ||
a3894aad
PW
4665 opts->committer_date_is_author_date ||
4666 opts->ignore_date));
f11c9580 4667 if (read_and_refresh_cache(r, opts))
0d9c6dc9 4668 return -1;
043a4492 4669
004fefa7
JS
4670 while (todo_list->current < todo_list->nr) {
4671 struct todo_item *item = todo_list->items + todo_list->current;
6ad656db 4672 const char *arg = todo_item_get_arg(todo_list, item);
a47ba3c7 4673 int check_todo = 0;
6ad656db 4674
004fefa7 4675 if (save_todo(todo_list, opts))
221675de 4676 return -1;
6e98de72 4677 if (is_rebase_i(opts)) {
ef80069a
JS
4678 if (item->command != TODO_COMMENT) {
4679 FILE *f = fopen(rebase_path_msgnum(), "w");
4680
4681 todo_list->done_nr++;
4682
4683 if (f) {
4684 fprintf(f, "%d\n", todo_list->done_nr);
4685 fclose(f);
4686 }
899b49c4 4687 if (!opts->quiet)
4d55d63b 4688 fprintf(stderr, _("Rebasing (%d/%d)%s"),
899b49c4
EN
4689 todo_list->done_nr,
4690 todo_list->total_nr,
4691 opts->verbose ? "\n" : "\r");
ef80069a 4692 }
6e98de72
JS
4693 unlink(rebase_path_message());
4694 unlink(rebase_path_author_script());
4695 unlink(rebase_path_stopped_sha());
4696 unlink(rebase_path_amend());
34e7771b 4697 unlink(git_path_merge_head(r));
5291828d 4698 unlink(git_path_auto_merge(r));
fbd7a232 4699 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
71f82465 4700
d7d90885
SG
4701 if (item->command == TODO_BREAK) {
4702 if (!opts->verbose)
4703 term_clear_line();
005af339 4704 return stopped_at_head(r);
d7d90885 4705 }
6e98de72
JS
4706 }
4707 if (item->command <= TODO_SQUASH) {
8ab37ef2 4708 if (is_rebase_i(opts))
d188a60d
PW
4709 opts->reflog_message = reflog_message(opts,
4710 command_to_string(item->command), NULL);
4711
ae70e34f
CM
4712 res = do_pick_commit(r, item, opts,
4713 is_final_fixup(todo_list),
a47ba3c7 4714 &check_todo);
9d7bf3cf
JS
4715 if (is_rebase_i(opts) && res < 0) {
4716 /* Reschedule */
cb5206ea
JS
4717 advise(_(rescheduled_advice),
4718 get_item_line_length(todo_list,
4719 todo_list->current),
4720 get_item_line(todo_list,
4721 todo_list->current));
9d7bf3cf
JS
4722 todo_list->current--;
4723 if (save_todo(todo_list, opts))
4724 return -1;
4725 }
56dc3ab0
JS
4726 if (item->command == TODO_EDIT) {
4727 struct commit *commit = item->commit;
d7d90885
SG
4728 if (!res) {
4729 if (!opts->verbose)
4730 term_clear_line();
99429213 4731 fprintf(stderr,
a42e1b41 4732 _("Stopped at %s... %.*s\n"),
56dc3ab0 4733 short_commit_name(commit),
6ad656db 4734 item->arg_len, arg);
d7d90885 4735 }
f11c9580 4736 return error_with_patch(r, commit,
6ad656db 4737 arg, item->arg_len, opts, res, !res);
56dc3ab0 4738 }
25cb8df9
JS
4739 if (is_rebase_i(opts) && !res)
4740 record_in_rewritten(&item->commit->object.oid,
4741 peek_command(todo_list, 1));
6e98de72
JS
4742 if (res && is_fixup(item->command)) {
4743 if (res == 1)
4744 intend_to_amend();
f11c9580 4745 return error_failed_squash(r, item->commit, opts,
6ad656db 4746 item->arg_len, arg);
a9279c67
PW
4747 } else if (res && is_rebase_i(opts) && item->commit) {
4748 int to_amend = 0;
4749 struct object_id oid;
4750
4751 /*
4752 * If we are rewording and have either
4753 * fast-forwarded already, or are about to
4754 * create a new root commit, we want to amend,
4755 * otherwise we do not.
4756 */
4757 if (item->command == TODO_REWORD &&
4a93b899 4758 !repo_get_oid(r, "HEAD", &oid) &&
4a7e27e9 4759 (oideq(&item->commit->object.oid, &oid) ||
a9279c67 4760 (opts->have_squash_onto &&
4a7e27e9 4761 oideq(&opts->squash_onto, &oid))))
a9279c67
PW
4762 to_amend = 1;
4763
f11c9580 4764 return res | error_with_patch(r, item->commit,
6ad656db 4765 arg, item->arg_len, opts,
a9279c67
PW
4766 res, to_amend);
4767 }
311af526 4768 } else if (item->command == TODO_EXEC) {
6ad656db 4769 char *end_of_arg = (char *)(arg + item->arg_len);
311af526
JS
4770 int saved = *end_of_arg;
4771
d7d90885
SG
4772 if (!opts->verbose)
4773 term_clear_line();
311af526 4774 *end_of_arg = '\0';
6ad656db 4775 res = do_exec(r, arg);
311af526 4776 *end_of_arg = saved;
54fd3243 4777
d421afa0
JS
4778 if (res) {
4779 if (opts->reschedule_failed_exec)
4780 reschedule = 1;
54fd3243 4781 }
a47ba3c7 4782 check_todo = 1;
9055e401 4783 } else if (item->command == TODO_LABEL) {
6ad656db 4784 if ((res = do_label(r, arg, item->arg_len)))
9055e401
JS
4785 reschedule = 1;
4786 } else if (item->command == TODO_RESET) {
6ad656db 4787 if ((res = do_reset(r, arg, item->arg_len, opts)))
9055e401 4788 reschedule = 1;
4c68e7dd 4789 } else if (item->command == TODO_MERGE) {
2be6b6f4
PW
4790 if ((res = do_merge(r, item->commit, arg, item->arg_len,
4791 item->flags, &check_todo, opts)) < 0)
4c68e7dd 4792 reschedule = 1;
537e7d61
JS
4793 else if (item->commit)
4794 record_in_rewritten(&item->commit->object.oid,
4795 peek_command(todo_list, 1));
4796 if (res > 0)
4c68e7dd 4797 /* failed with merge conflicts */
f11c9580 4798 return error_with_patch(r, item->commit,
6ad656db
AG
4799 arg, item->arg_len,
4800 opts, res, 0);
a97d7916
DS
4801 } else if (item->command == TODO_UPDATE_REF) {
4802 struct strbuf ref = STRBUF_INIT;
4803 strbuf_add(&ref, arg, item->arg_len);
4804 if ((res = do_update_ref(r, ref.buf)))
4805 reschedule = 1;
4806 strbuf_release(&ref);
56dc3ab0 4807 } else if (!is_noop(item->command))
25c43667
JS
4808 return error(_("unknown command %d"), item->command);
4809
9055e401
JS
4810 if (reschedule) {
4811 advise(_(rescheduled_advice),
4812 get_item_line_length(todo_list,
4813 todo_list->current),
4814 get_item_line(todo_list, todo_list->current));
4815 todo_list->current--;
4816 if (save_todo(todo_list, opts))
4817 return -1;
4c68e7dd 4818 if (item->commit)
f11c9580
NTND
4819 return error_with_patch(r,
4820 item->commit,
6ad656db
AG
4821 arg, item->arg_len,
4822 opts, res, 0);
dfa8bae5
PW
4823 } else if (is_rebase_i(opts) && check_todo && !res &&
4824 reread_todo_if_changed(r, todo_list, opts)) {
4825 return -1;
9055e401
JS
4826 }
4827
004fefa7 4828 todo_list->current++;
043a4492
RR
4829 if (res)
4830 return res;
4831 }
4832
56dc3ab0 4833 if (is_rebase_i(opts)) {
4b83ce9f 4834 struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT;
25cb8df9 4835 struct stat st;
556907f1 4836
56dc3ab0
JS
4837 /* Stopped in the middle, as planned? */
4838 if (todo_list->current < todo_list->nr)
4839 return 0;
556907f1 4840
4b83ce9f
JS
4841 if (read_oneliner(&head_ref, rebase_path_head_name(), 0) &&
4842 starts_with(head_ref.buf, "refs/")) {
96e832a5 4843 const char *msg;
092bbcdf 4844 struct object_id head, orig;
4b83ce9f
JS
4845 int res;
4846
4a93b899 4847 if (repo_get_oid(r, "HEAD", &head)) {
4b83ce9f
JS
4848 res = error(_("cannot read HEAD"));
4849cleanup_head_ref:
4850 strbuf_release(&head_ref);
4851 strbuf_release(&buf);
4852 return res;
4853 }
4854 if (!read_oneliner(&buf, rebase_path_orig_head(), 0) ||
092bbcdf 4855 get_oid_hex(buf.buf, &orig)) {
4b83ce9f
JS
4856 res = error(_("could not read orig-head"));
4857 goto cleanup_head_ref;
4858 }
4ab867b8 4859 strbuf_reset(&buf);
4b83ce9f
JS
4860 if (!read_oneliner(&buf, rebase_path_onto(), 0)) {
4861 res = error(_("could not read 'onto'"));
4862 goto cleanup_head_ref;
4863 }
96e832a5
JS
4864 msg = reflog_message(opts, "finish", "%s onto %s",
4865 head_ref.buf, buf.buf);
ae077771 4866 if (update_ref(msg, head_ref.buf, &head, &orig,
91774afc 4867 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) {
4b83ce9f
JS
4868 res = error(_("could not update %s"),
4869 head_ref.buf);
4870 goto cleanup_head_ref;
4871 }
96e832a5 4872 msg = reflog_message(opts, "finish", "returning to %s",
4b83ce9f 4873 head_ref.buf);
96e832a5 4874 if (create_symref("HEAD", head_ref.buf, msg)) {
4b83ce9f
JS
4875 res = error(_("could not update HEAD to %s"),
4876 head_ref.buf);
4877 goto cleanup_head_ref;
4878 }
4879 strbuf_reset(&buf);
4880 }
4881
556907f1
JS
4882 if (opts->verbose) {
4883 struct rev_info log_tree_opt;
4884 struct object_id orig, head;
4885
4886 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
f11c9580 4887 repo_init_revisions(r, &log_tree_opt, NULL);
556907f1
JS
4888 log_tree_opt.diff = 1;
4889 log_tree_opt.diffopt.output_format =
4890 DIFF_FORMAT_DIFFSTAT;
4891 log_tree_opt.disable_stdin = 1;
4892
4893 if (read_oneliner(&buf, rebase_path_orig_head(), 0) &&
4a93b899
ÆAB
4894 !repo_get_oid(r, buf.buf, &orig) &&
4895 !repo_get_oid(r, "HEAD", &head)) {
66f414f8
BW
4896 diff_tree_oid(&orig, &head, "",
4897 &log_tree_opt.diffopt);
556907f1
JS
4898 log_tree_diff_flush(&log_tree_opt);
4899 }
2108fe4a 4900 release_revisions(&log_tree_opt);
556907f1 4901 }
25cb8df9
JS
4902 flush_rewritten_pending();
4903 if (!stat(rebase_path_rewritten_list(), &st) &&
4904 st.st_size > 0) {
4905 struct child_process child = CHILD_PROCESS_INIT;
96af564d 4906 struct run_hooks_opt hook_opt = RUN_HOOKS_OPT_INIT;
25cb8df9
JS
4907
4908 child.in = open(rebase_path_rewritten_list(), O_RDONLY);
4909 child.git_cmd = 1;
c972bf4c
JK
4910 strvec_push(&child.args, "notes");
4911 strvec_push(&child.args, "copy");
4912 strvec_push(&child.args, "--for-rewrite=rebase");
25cb8df9
JS
4913 /* we don't care if this copying failed */
4914 run_command(&child);
79516045 4915
96af564d
ES
4916 hook_opt.path_to_stdin = rebase_path_rewritten_list();
4917 strvec_push(&hook_opt.args, "rebase");
4918 run_hooks_opt("post-rewrite", &hook_opt);
25cb8df9 4919 }
be1bb600 4920 apply_autostash(rebase_path_autostash());
25cb8df9 4921
d7d90885
SG
4922 if (!opts->quiet) {
4923 if (!opts->verbose)
4924 term_clear_line();
899b49c4 4925 fprintf(stderr,
4d55d63b 4926 _("Successfully rebased and updated %s.\n"),
899b49c4 4927 head_ref.buf);
d7d90885 4928 }
5da4966f 4929
556907f1 4930 strbuf_release(&buf);
4b83ce9f 4931 strbuf_release(&head_ref);
89fc0b53 4932
4611884e 4933 if (do_update_refs(r, opts->quiet))
89fc0b53 4934 return -1;
56dc3ab0
JS
4935 }
4936
043a4492
RR
4937 /*
4938 * Sequence of picks finished successfully; cleanup by
4939 * removing the .git/sequencer directory
4940 */
2863584f 4941 return sequencer_remove_state(opts);
043a4492
RR
4942}
4943
39edfd5c 4944static int continue_single_pick(struct repository *r, struct replay_opts *opts)
043a4492 4945{
0e906739 4946 struct child_process cmd = CHILD_PROCESS_INIT;
043a4492 4947
c8e4159e 4948 if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") &&
b8825ef2 4949 !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD"))
043a4492 4950 return error(_("no cherry-pick or revert in progress"));
39edfd5c 4951
0e906739
RS
4952 cmd.git_cmd = 1;
4953 strvec_push(&cmd.args, "commit");
39edfd5c
EN
4954
4955 /*
4956 * continue_single_pick() handles the case of recovering from a
4957 * conflict. should_edit() doesn't handle that case; for a conflict,
4958 * we want to edit if the user asked for it, or if they didn't specify
4959 * and stdin is a tty.
4960 */
4961 if (!opts->edit || (opts->edit < 0 && !isatty(0)))
4962 /*
4963 * Include --cleanup=strip as well because we don't want the
4964 * "# Conflicts:" messages.
4965 */
0e906739 4966 strvec_pushl(&cmd.args, "--no-edit", "--cleanup=strip", NULL);
39edfd5c 4967
0e906739 4968 return run_command(&cmd);
043a4492
RR
4969}
4970
f11c9580
NTND
4971static int commit_staged_changes(struct repository *r,
4972 struct replay_opts *opts,
15ef6931 4973 struct todo_list *todo_list)
9d93ccd1 4974{
789b3eff 4975 unsigned int flags = ALLOW_EMPTY | EDIT_MSG;
15ef6931 4976 unsigned int final_fixup = 0, is_clean;
9d93ccd1 4977
f11c9580 4978 if (has_unstaged_changes(r, 1))
9d93ccd1 4979 return error(_("cannot rebase: You have unstaged changes."));
52632209 4980
f11c9580 4981 is_clean = !has_uncommitted_changes(r, 0);
9d93ccd1
JS
4982
4983 if (file_exists(rebase_path_amend())) {
4984 struct strbuf rev = STRBUF_INIT;
092bbcdf 4985 struct object_id head, to_amend;
9d93ccd1 4986
4a93b899 4987 if (repo_get_oid(r, "HEAD", &head))
9d93ccd1
JS
4988 return error(_("cannot amend non-existing commit"));
4989 if (!read_oneliner(&rev, rebase_path_amend(), 0))
4990 return error(_("invalid file: '%s'"), rebase_path_amend());
092bbcdf 4991 if (get_oid_hex(rev.buf, &to_amend))
9d93ccd1
JS
4992 return error(_("invalid contents: '%s'"),
4993 rebase_path_amend());
9001dc2a 4994 if (!is_clean && !oideq(&head, &to_amend))
9d93ccd1
JS
4995 return error(_("\nYou have uncommitted changes in your "
4996 "working tree. Please, commit them\n"
4997 "first and then run 'git rebase "
4998 "--continue' again."));
15ef6931
JS
4999 /*
5000 * When skipping a failed fixup/squash, we need to edit the
5001 * commit message, the current fixup list and count, and if it
5002 * was the last fixup/squash in the chain, we need to clean up
5003 * the commit message and if there was a squash, let the user
5004 * edit it.
5005 */
10d2f354
JS
5006 if (!is_clean || !opts->current_fixup_count)
5007 ; /* this is not the final fixup */
87ae8a1a 5008 else if (!oideq(&head, &to_amend) ||
10d2f354
JS
5009 !file_exists(rebase_path_stopped_sha())) {
5010 /* was a final fixup or squash done manually? */
5011 if (!is_fixup(peek_command(todo_list, 0))) {
5012 unlink(rebase_path_fixup_msg());
5013 unlink(rebase_path_squash_msg());
5014 unlink(rebase_path_current_fixups());
5015 strbuf_reset(&opts->current_fixups);
5016 opts->current_fixup_count = 0;
5017 }
5018 } else {
5019 /* we are in a fixup/squash chain */
15ef6931
JS
5020 const char *p = opts->current_fixups.buf;
5021 int len = opts->current_fixups.len;
5022
5023 opts->current_fixup_count--;
5024 if (!len)
5025 BUG("Incorrect current_fixups:\n%s", p);
5026 while (len && p[len - 1] != '\n')
5027 len--;
5028 strbuf_setlen(&opts->current_fixups, len);
5029 if (write_message(p, len, rebase_path_current_fixups(),
5030 0) < 0)
5031 return error(_("could not write file: '%s'"),
5032 rebase_path_current_fixups());
5033
5034 /*
5035 * If a fixup/squash in a fixup/squash chain failed, the
5036 * commit message is already correct, no need to commit
5037 * it again.
5038 *
5039 * Only if it is the final command in the fixup/squash
5040 * chain, and only if the chain is longer than a single
5041 * fixup/squash command (which was just skipped), do we
5042 * actually need to re-commit with a cleaned up commit
5043 * message.
5044 */
5045 if (opts->current_fixup_count > 0 &&
5046 !is_fixup(peek_command(todo_list, 0))) {
5047 final_fixup = 1;
5048 /*
5049 * If there was not a single "squash" in the
5050 * chain, we only need to clean up the commit
5051 * message, no need to bother the user with
5052 * opening the commit message in the editor.
5053 */
5054 if (!starts_with(p, "squash ") &&
5055 !strstr(p, "\nsquash "))
5056 flags = (flags & ~EDIT_MSG) | CLEANUP_MSG;
5057 } else if (is_fixup(peek_command(todo_list, 0))) {
5058 /*
5059 * We need to update the squash message to skip
5060 * the latest commit message.
5061 */
5062 struct commit *commit;
5063 const char *path = rebase_path_squash_msg();
b3757442 5064 const char *encoding = get_commit_output_encoding();
15ef6931 5065
005af339 5066 if (parse_head(r, &commit) ||
4a93b899 5067 !(p = repo_logmsg_reencode(r, commit, NULL, encoding)) ||
15ef6931 5068 write_message(p, strlen(p), path, 0)) {
4a93b899 5069 repo_unuse_commit_buffer(r, commit, p);
15ef6931
JS
5070 return error(_("could not write file: "
5071 "'%s'"), path);
5072 }
4a93b899 5073 repo_unuse_commit_buffer(r,
ecb5091f 5074 commit, p);
15ef6931
JS
5075 }
5076 }
9d93ccd1
JS
5077
5078 strbuf_release(&rev);
789b3eff 5079 flags |= AMEND_MSG;
9d93ccd1
JS
5080 }
5081
15ef6931 5082 if (is_clean) {
c8e4159e
HWN
5083 if (refs_ref_exists(get_main_ref_store(r),
5084 "CHERRY_PICK_HEAD") &&
5085 refs_delete_ref(get_main_ref_store(r), "",
5086 "CHERRY_PICK_HEAD", NULL, 0))
15ef6931 5087 return error(_("could not remove CHERRY_PICK_HEAD"));
e5ee33e8
PW
5088 if (unlink(git_path_merge_msg(r)) && errno != ENOENT)
5089 return error_errno(_("could not remove '%s'"),
5090 git_path_merge_msg(r));
15ef6931
JS
5091 if (!final_fixup)
5092 return 0;
5093 }
5094
20f4b044 5095 if (run_git_commit(final_fixup ? NULL : rebase_path_message(),
15ef6931 5096 opts, flags))
9d93ccd1
JS
5097 return error(_("could not commit staged changes."));
5098 unlink(rebase_path_amend());
34e7771b 5099 unlink(git_path_merge_head(r));
5291828d 5100 unlink(git_path_auto_merge(r));
15ef6931
JS
5101 if (final_fixup) {
5102 unlink(rebase_path_fixup_msg());
5103 unlink(rebase_path_squash_msg());
5104 }
5105 if (opts->current_fixup_count > 0) {
5106 /*
5107 * Whether final fixup or not, we just cleaned up the commit
5108 * message...
5109 */
5110 unlink(rebase_path_current_fixups());
5111 strbuf_reset(&opts->current_fixups);
5112 opts->current_fixup_count = 0;
5113 }
9d93ccd1
JS
5114 return 0;
5115}
5116
f11c9580 5117int sequencer_continue(struct repository *r, struct replay_opts *opts)
043a4492 5118{
004fefa7
JS
5119 struct todo_list todo_list = TODO_LIST_INIT;
5120 int res;
043a4492 5121
f11c9580 5122 if (read_and_refresh_cache(r, opts))
2863584f
JS
5123 return -1;
5124
15ef6931
JS
5125 if (read_populate_opts(opts))
5126 return -1;
9d93ccd1 5127 if (is_rebase_i(opts)) {
005af339 5128 if ((res = read_populate_todo(r, &todo_list, opts)))
15ef6931 5129 goto release_todo_list;
5a5445d8
AG
5130
5131 if (file_exists(rebase_path_dropped())) {
5132 if ((res = todo_list_check_against_backup(r, &todo_list)))
5133 goto release_todo_list;
5134
5135 unlink(rebase_path_dropped());
5136 }
5137
d188a60d 5138 opts->reflog_message = reflog_message(opts, "continue", NULL);
f6b9413b
AG
5139 if (commit_staged_changes(r, opts, &todo_list)) {
5140 res = -1;
5141 goto release_todo_list;
5142 }
4258a6da 5143 } else if (!file_exists(get_todo_path(opts)))
39edfd5c 5144 return continue_single_pick(r, opts);
005af339 5145 else if ((res = read_populate_todo(r, &todo_list, opts)))
004fefa7 5146 goto release_todo_list;
043a4492 5147
4258a6da
JS
5148 if (!is_rebase_i(opts)) {
5149 /* Verify that the conflict has been resolved */
c8e4159e
HWN
5150 if (refs_ref_exists(get_main_ref_store(r),
5151 "CHERRY_PICK_HEAD") ||
b8825ef2 5152 refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
39edfd5c 5153 res = continue_single_pick(r, opts);
4258a6da
JS
5154 if (res)
5155 goto release_todo_list;
5156 }
ffc00a48 5157 if (index_differs_from(r, "HEAD", NULL, 0)) {
e1ff0a32 5158 res = error_dirty_index(r, opts);
004fefa7 5159 goto release_todo_list;
4258a6da
JS
5160 }
5161 todo_list.current++;
ca98c6d4
JS
5162 } else if (file_exists(rebase_path_stopped_sha())) {
5163 struct strbuf buf = STRBUF_INIT;
5164 struct object_id oid;
5165
3442c3d1
DL
5166 if (read_oneliner(&buf, rebase_path_stopped_sha(),
5167 READ_ONELINER_SKIP_IF_EMPTY) &&
0512eabd 5168 !get_oid_hex(buf.buf, &oid))
ca98c6d4
JS
5169 record_in_rewritten(&oid, peek_command(&todo_list, 0));
5170 strbuf_release(&buf);
043a4492 5171 }
4258a6da 5172
f11c9580 5173 res = pick_commits(r, &todo_list, opts);
004fefa7
JS
5174release_todo_list:
5175 todo_list_release(&todo_list);
5176 return res;
043a4492
RR
5177}
5178
f11c9580
NTND
5179static int single_pick(struct repository *r,
5180 struct commit *cmit,
5181 struct replay_opts *opts)
043a4492 5182{
a47ba3c7 5183 int check_todo;
ae70e34f
CM
5184 struct todo_item item;
5185
5186 item.command = opts->action == REPLAY_PICK ?
5187 TODO_PICK : TODO_REVERT;
5188 item.commit = cmit;
a47ba3c7 5189
d188a60d 5190 opts->reflog_message = sequencer_reflog_action(opts);
ae70e34f 5191 return do_pick_commit(r, &item, opts, 0, &check_todo);
043a4492
RR
5192}
5193
f11c9580
NTND
5194int sequencer_pick_revisions(struct repository *r,
5195 struct replay_opts *opts)
043a4492 5196{
004fefa7 5197 struct todo_list todo_list = TODO_LIST_INIT;
1e43ed98 5198 struct object_id oid;
004fefa7 5199 int i, res;
043a4492 5200
2863584f 5201 assert(opts->revs);
f11c9580 5202 if (read_and_refresh_cache(r, opts))
0d9c6dc9 5203 return -1;
043a4492 5204
21246dbb 5205 for (i = 0; i < opts->revs->pending.nr; i++) {
1e43ed98 5206 struct object_id oid;
21246dbb
MV
5207 const char *name = opts->revs->pending.objects[i].name;
5208
5209 /* This happens when using --stdin. */
5210 if (!strlen(name))
5211 continue;
5212
4a93b899 5213 if (!repo_get_oid(r, name, &oid)) {
f11c9580
NTND
5214 if (!lookup_commit_reference_gently(r, &oid, 1)) {
5215 enum object_type type = oid_object_info(r,
0df8e965 5216 &oid,
abef9020 5217 NULL);
b9b946d4 5218 return error(_("%s: can't cherry-pick a %s"),
debca9d2 5219 name, type_name(type));
7c0b0d8d 5220 }
21246dbb 5221 } else
b9b946d4 5222 return error(_("%s: bad revision"), name);
21246dbb
MV
5223 }
5224
043a4492
RR
5225 /*
5226 * If we were called as "git cherry-pick <commit>", just
5227 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
5228 * REVERT_HEAD, and don't touch the sequencer state.
5229 * This means it is possible to cherry-pick in the middle
5230 * of a cherry-pick sequence.
5231 */
5232 if (opts->revs->cmdline.nr == 1 &&
5233 opts->revs->cmdline.rev->whence == REV_CMD_REV &&
5234 opts->revs->no_walk &&
5235 !opts->revs->cmdline.rev->flags) {
5236 struct commit *cmit;
5237 if (prepare_revision_walk(opts->revs))
b9b946d4 5238 return error(_("revision walk setup failed"));
043a4492 5239 cmit = get_revision(opts->revs);
c5e358d0
JK
5240 if (!cmit)
5241 return error(_("empty commit set passed"));
5242 if (get_revision(opts->revs))
5243 BUG("unexpected extra commit from walk");
f11c9580 5244 return single_pick(r, cmit, opts);
043a4492
RR
5245 }
5246
5247 /*
5248 * Start a new cherry-pick/ revert sequence; but
5249 * first, make sure that an existing one isn't in
5250 * progress
5251 */
5252
34b0528b 5253 if (walk_revs_populate_todo(&todo_list, opts) ||
6a1f9046 5254 create_seq_dir(r) < 0)
043a4492 5255 return -1;
4a93b899 5256 if (repo_get_oid(r, "HEAD", &oid) && (opts->action == REPLAY_REVERT))
93b3df6f 5257 return error(_("can't revert as initial commit"));
1e43ed98 5258 if (save_head(oid_to_hex(&oid)))
311fd397 5259 return -1;
88d5a271
JS
5260 if (save_opts(opts))
5261 return -1;
1e41229d 5262 update_abort_safety_file();
f11c9580 5263 res = pick_commits(r, &todo_list, opts);
004fefa7
JS
5264 todo_list_release(&todo_list);
5265 return res;
043a4492 5266}
5ed75e2a 5267
66e83d9b 5268void append_signoff(struct strbuf *msgbuf, size_t ignore_footer, unsigned flag)
5ed75e2a 5269{
bab4d109 5270 unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
5ed75e2a 5271 struct strbuf sob = STRBUF_INIT;
bab4d109 5272 int has_footer;
5ed75e2a
MV
5273
5274 strbuf_addstr(&sob, sign_off_header);
39ab4d09 5275 strbuf_addstr(&sob, fmt_name(WANT_COMMITTER_IDENT));
5ed75e2a 5276 strbuf_addch(&sob, '\n');
bab4d109 5277
44dc738a
JT
5278 if (!ignore_footer)
5279 strbuf_complete_line(msgbuf);
5280
bab4d109
BC
5281 /*
5282 * If the whole message buffer is equal to the sob, pretend that we
5283 * found a conforming footer with a matching sob
5284 */
5285 if (msgbuf->len - ignore_footer == sob.len &&
5286 !strncmp(msgbuf->buf, sob.buf, sob.len))
5287 has_footer = 3;
5288 else
5289 has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
5290
33f2f9ab
BC
5291 if (!has_footer) {
5292 const char *append_newlines = NULL;
5293 size_t len = msgbuf->len - ignore_footer;
5294
8c613fd5
BC
5295 if (!len) {
5296 /*
5297 * The buffer is completely empty. Leave foom for
5298 * the title and body to be filled in by the user.
5299 */
33f2f9ab 5300 append_newlines = "\n\n";
8c613fd5
BC
5301 } else if (len == 1) {
5302 /*
5303 * Buffer contains a single newline. Add another
5304 * so that we leave room for the title and body.
5305 */
5306 append_newlines = "\n";
5307 } else if (msgbuf->buf[len - 2] != '\n') {
5308 /*
5309 * Buffer ends with a single newline. Add another
5310 * so that there is an empty line between the message
5311 * body and the sob.
5312 */
33f2f9ab 5313 append_newlines = "\n";
8c613fd5 5314 } /* else, the buffer already ends with two newlines. */
33f2f9ab
BC
5315
5316 if (append_newlines)
5317 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
5318 append_newlines, strlen(append_newlines));
5ed75e2a 5319 }
bab4d109
BC
5320
5321 if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
5322 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
5323 sob.buf, sob.len);
5324
5ed75e2a
MV
5325 strbuf_release(&sob);
5326}
62db5247 5327
1644c73c
JS
5328struct labels_entry {
5329 struct hashmap_entry entry;
5330 char label[FLEX_ARRAY];
5331};
5332
5cf88fd8 5333static int labels_cmp(const void *fndata UNUSED,
02c3c59e 5334 const struct hashmap_entry *eptr,
939af16e 5335 const struct hashmap_entry *entry_or_key, const void *key)
1644c73c 5336{
939af16e
EW
5337 const struct labels_entry *a, *b;
5338
5339 a = container_of(eptr, const struct labels_entry, entry);
5340 b = container_of(entry_or_key, const struct labels_entry, entry);
5341
1644c73c
JS
5342 return key ? strcmp(a->label, key) : strcmp(a->label, b->label);
5343}
5344
5345struct string_entry {
5346 struct oidmap_entry entry;
5347 char string[FLEX_ARRAY];
5348};
5349
5350struct label_state {
5351 struct oidmap commit2label;
5352 struct hashmap labels;
5353 struct strbuf buf;
5354};
5355
5356static const char *label_oid(struct object_id *oid, const char *label,
5357 struct label_state *state)
5358{
5359 struct labels_entry *labels_entry;
5360 struct string_entry *string_entry;
5361 struct object_id dummy;
1644c73c
JS
5362 int i;
5363
5364 string_entry = oidmap_get(&state->commit2label, oid);
5365 if (string_entry)
5366 return string_entry->string;
5367
5368 /*
5369 * For "uninteresting" commits, i.e. commits that are not to be
5370 * rebased, and which can therefore not be labeled, we use a unique
5371 * abbreviation of the commit name. This is slightly more complicated
c7c33f50 5372 * than calling repo_find_unique_abbrev() because we also need to make
1644c73c
JS
5373 * sure that the abbreviation does not conflict with any other
5374 * label.
5375 *
5376 * We disallow "interesting" commits to be labeled by a string that
5377 * is a valid full-length hash, to ensure that we always can find an
5378 * abbreviation for any uninteresting commit's names that does not
5379 * clash with any other label.
5380 */
867bc1d2 5381 strbuf_reset(&state->buf);
1644c73c
JS
5382 if (!label) {
5383 char *p;
5384
4439c7a3 5385 strbuf_grow(&state->buf, GIT_MAX_HEXSZ);
1644c73c
JS
5386 label = p = state->buf.buf;
5387
d850b7a5
ÆAB
5388 repo_find_unique_abbrev_r(the_repository, p, oid,
5389 default_abbrev);
1644c73c
JS
5390
5391 /*
5392 * We may need to extend the abbreviated hash so that there is
5393 * no conflicting label.
5394 */
5395 if (hashmap_get_from_hash(&state->labels, strihash(p), p)) {
5396 size_t i = strlen(p) + 1;
5397
5398 oid_to_hex_r(p, oid);
4439c7a3 5399 for (; i < the_hash_algo->hexsz; i++) {
1644c73c
JS
5400 char save = p[i];
5401 p[i] = '\0';
5402 if (!hashmap_get_from_hash(&state->labels,
5403 strihash(p), p))
5404 break;
5405 p[i] = save;
5406 }
5407 }
867bc1d2 5408 } else {
1644c73c
JS
5409 struct strbuf *buf = &state->buf;
5410
1644c73c 5411 /*
cd552227
MR
5412 * Sanitize labels by replacing non-alpha-numeric characters
5413 * (including white-space ones) by dashes, as they might be
5414 * illegal in file names (and hence in ref names).
5415 *
5416 * Note that we retain non-ASCII UTF-8 characters (identified
5417 * via the most significant bit). They should be all acceptable
5418 * in file names. We do not validate the UTF-8 here, that's not
5419 * the job of this function.
1644c73c 5420 */
867bc1d2 5421 for (; *label; label++)
cd552227
MR
5422 if ((*label & 0x80) || isalnum(*label))
5423 strbuf_addch(buf, *label);
5424 /* avoid leading dash and double-dashes */
5425 else if (buf->len && buf->buf[buf->len - 1] != '-')
5426 strbuf_addch(buf, '-');
5427 if (!buf->len) {
5428 strbuf_addstr(buf, "rev-");
5429 strbuf_add_unique_abbrev(buf, oid, default_abbrev);
5430 }
867bc1d2 5431 label = buf->buf;
1644c73c 5432
867bc1d2
JS
5433 if ((buf->len == the_hash_algo->hexsz &&
5434 !get_oid_hex(label, &dummy)) ||
5435 (buf->len == 1 && *label == '#') ||
5436 hashmap_get_from_hash(&state->labels,
5437 strihash(label), label)) {
5438 /*
5439 * If the label already exists, or if the label is a
5440 * valid full OID, or the label is a '#' (which we use
5441 * as a separator between merge heads and oneline), we
5442 * append a dash and a number to make it unique.
5443 */
5444 size_t len = buf->len;
1644c73c 5445
867bc1d2
JS
5446 for (i = 2; ; i++) {
5447 strbuf_setlen(buf, len);
5448 strbuf_addf(buf, "-%d", i);
5449 if (!hashmap_get_from_hash(&state->labels,
5450 strihash(buf->buf),
5451 buf->buf))
5452 break;
5453 }
1644c73c 5454
867bc1d2
JS
5455 label = buf->buf;
5456 }
1644c73c
JS
5457 }
5458
5459 FLEX_ALLOC_STR(labels_entry, label, label);
d22245a2 5460 hashmap_entry_init(&labels_entry->entry, strihash(label));
b94e5c1d 5461 hashmap_add(&state->labels, &labels_entry->entry);
1644c73c
JS
5462
5463 FLEX_ALLOC_STR(string_entry, string, label);
5464 oidcpy(&string_entry->entry.oid, oid);
5465 oidmap_put(&state->commit2label, string_entry);
5466
5467 return string_entry->string;
5468}
5469
5470static int make_script_with_merges(struct pretty_print_context *pp,
d358fc28 5471 struct rev_info *revs, struct strbuf *out,
1644c73c
JS
5472 unsigned flags)
5473{
b9cbd295 5474 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
7543f6f4 5475 int rebase_cousins = flags & TODO_LIST_REBASE_COUSINS;
e1fac531 5476 int root_with_onto = flags & TODO_LIST_ROOT_WITH_ONTO;
767a4ca6 5477 int skipped_commit = 0;
1644c73c
JS
5478 struct strbuf buf = STRBUF_INIT, oneline = STRBUF_INIT;
5479 struct strbuf label = STRBUF_INIT;
5480 struct commit_list *commits = NULL, **tail = &commits, *iter;
5481 struct commit_list *tips = NULL, **tips_tail = &tips;
5482 struct commit *commit;
5483 struct oidmap commit2todo = OIDMAP_INIT;
5484 struct string_entry *entry;
5485 struct oidset interesting = OIDSET_INIT, child_seen = OIDSET_INIT,
5486 shown = OIDSET_INIT;
5487 struct label_state state = { OIDMAP_INIT, { NULL }, STRBUF_INIT };
5488
5489 int abbr = flags & TODO_LIST_ABBREVIATE_CMDS;
5490 const char *cmd_pick = abbr ? "p" : "pick",
5491 *cmd_label = abbr ? "l" : "label",
5492 *cmd_reset = abbr ? "t" : "reset",
5493 *cmd_merge = abbr ? "m" : "merge";
5494
5495 oidmap_init(&commit2todo, 0);
5496 oidmap_init(&state.commit2label, 0);
939af16e 5497 hashmap_init(&state.labels, labels_cmp, NULL, 0);
1644c73c
JS
5498 strbuf_init(&state.buf, 32);
5499
5500 if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) {
e02058a7 5501 struct labels_entry *onto_label_entry;
1644c73c
JS
5502 struct object_id *oid = &revs->cmdline.rev[0].item->oid;
5503 FLEX_ALLOC_STR(entry, string, "onto");
5504 oidcpy(&entry->entry.oid, oid);
5505 oidmap_put(&state.commit2label, entry);
e02058a7
ĐTCD
5506
5507 FLEX_ALLOC_STR(onto_label_entry, label, "onto");
5508 hashmap_entry_init(&onto_label_entry->entry, strihash("onto"));
5509 hashmap_add(&state.labels, &onto_label_entry->entry);
1644c73c
JS
5510 }
5511
5512 /*
5513 * First phase:
5514 * - get onelines for all commits
5515 * - gather all branch tips (i.e. 2nd or later parents of merges)
5516 * - label all branch tips
5517 */
5518 while ((commit = get_revision(revs))) {
5519 struct commit_list *to_merge;
1644c73c
JS
5520 const char *p1, *p2;
5521 struct object_id *oid;
5522 int is_empty;
5523
5524 tail = &commit_list_insert(commit, tail)->next;
5525 oidset_insert(&interesting, &commit->object.oid);
5526
5527 is_empty = is_original_commit_empty(commit);
767a4ca6
JS
5528 if (!is_empty && (commit->object.flags & PATCHSAME)) {
5529 if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS)
5530 warning(_("skipped previously applied commit %s"),
5531 short_commit_name(commit));
5532 skipped_commit = 1;
1644c73c 5533 continue;
767a4ca6 5534 }
b9cbd295
EN
5535 if (is_empty && !keep_empty)
5536 continue;
1644c73c
JS
5537
5538 strbuf_reset(&oneline);
5539 pretty_print_commit(pp, commit, &oneline);
5540
5541 to_merge = commit->parents ? commit->parents->next : NULL;
5542 if (!to_merge) {
5543 /* non-merge commit: easy case */
5544 strbuf_reset(&buf);
1644c73c
JS
5545 strbuf_addf(&buf, "%s %s %s", cmd_pick,
5546 oid_to_hex(&commit->object.oid),
5547 oneline.buf);
1b5735f7
EN
5548 if (is_empty)
5549 strbuf_addf(&buf, " %c empty",
5550 comment_line_char);
1644c73c
JS
5551
5552 FLEX_ALLOC_STR(entry, string, buf.buf);
5553 oidcpy(&entry->entry.oid, &commit->object.oid);
5554 oidmap_put(&commit2todo, entry);
5555
5556 continue;
5557 }
5558
1644c73c
JS
5559 /* Create a label */
5560 strbuf_reset(&label);
5561 if (skip_prefix(oneline.buf, "Merge ", &p1) &&
5562 (p1 = strchr(p1, '\'')) &&
5563 (p2 = strchr(++p1, '\'')))
5564 strbuf_add(&label, p1, p2 - p1);
5565 else if (skip_prefix(oneline.buf, "Merge pull request ",
5566 &p1) &&
5567 (p1 = strstr(p1, " from ")))
5568 strbuf_addstr(&label, p1 + strlen(" from "));
5569 else
5570 strbuf_addbuf(&label, &oneline);
5571
1644c73c
JS
5572 strbuf_reset(&buf);
5573 strbuf_addf(&buf, "%s -C %s",
5574 cmd_merge, oid_to_hex(&commit->object.oid));
5575
2b6ad0f4
JS
5576 /* label the tips of merged branches */
5577 for (; to_merge; to_merge = to_merge->next) {
5578 oid = &to_merge->item->object.oid;
5579 strbuf_addch(&buf, ' ');
5580
5581 if (!oidset_contains(&interesting, oid)) {
5582 strbuf_addstr(&buf, label_oid(oid, NULL,
5583 &state));
5584 continue;
5585 }
1644c73c 5586
1644c73c
JS
5587 tips_tail = &commit_list_insert(to_merge->item,
5588 tips_tail)->next;
5589
5590 strbuf_addstr(&buf, label_oid(oid, label.buf, &state));
5591 }
5592 strbuf_addf(&buf, " # %s", oneline.buf);
5593
5594 FLEX_ALLOC_STR(entry, string, buf.buf);
5595 oidcpy(&entry->entry.oid, &commit->object.oid);
5596 oidmap_put(&commit2todo, entry);
5597 }
767a4ca6
JS
5598 if (skipped_commit)
5599 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS,
5600 _("use --reapply-cherry-picks to include skipped commits"));
1644c73c
JS
5601
5602 /*
5603 * Second phase:
5604 * - label branch points
5605 * - add HEAD to the branch tips
5606 */
5607 for (iter = commits; iter; iter = iter->next) {
5608 struct commit_list *parent = iter->item->parents;
5609 for (; parent; parent = parent->next) {
5610 struct object_id *oid = &parent->item->object.oid;
5611 if (!oidset_contains(&interesting, oid))
5612 continue;
6e8fc70f 5613 if (oidset_insert(&child_seen, oid))
1644c73c
JS
5614 label_oid(oid, "branch-point", &state);
5615 }
5616
15beaaa3 5617 /* Add HEAD as implicit "tip of branch" */
1644c73c
JS
5618 if (!iter->next)
5619 tips_tail = &commit_list_insert(iter->item,
5620 tips_tail)->next;
5621 }
5622
5623 /*
5624 * Third phase: output the todo list. This is a bit tricky, as we
5625 * want to avoid jumping back and forth between revisions. To
5626 * accomplish that goal, we walk backwards from the branch tips,
5627 * gathering commits not yet shown, reversing the list on the fly,
5628 * then outputting that list (labeling revisions as needed).
5629 */
d358fc28 5630 strbuf_addf(out, "%s onto\n", cmd_label);
1644c73c
JS
5631 for (iter = tips; iter; iter = iter->next) {
5632 struct commit_list *list = NULL, *iter2;
5633
5634 commit = iter->item;
5635 if (oidset_contains(&shown, &commit->object.oid))
5636 continue;
5637 entry = oidmap_get(&state.commit2label, &commit->object.oid);
5638
5639 if (entry)
d358fc28 5640 strbuf_addf(out, "\n%c Branch %s\n", comment_line_char, entry->string);
1644c73c 5641 else
d358fc28 5642 strbuf_addch(out, '\n');
1644c73c
JS
5643
5644 while (oidset_contains(&interesting, &commit->object.oid) &&
5645 !oidset_contains(&shown, &commit->object.oid)) {
5646 commit_list_insert(commit, &list);
5647 if (!commit->parents) {
5648 commit = NULL;
5649 break;
5650 }
5651 commit = commit->parents->item;
5652 }
5653
5654 if (!commit)
d358fc28 5655 strbuf_addf(out, "%s %s\n", cmd_reset,
e1fac531
JS
5656 rebase_cousins || root_with_onto ?
5657 "onto" : "[new root]");
1644c73c
JS
5658 else {
5659 const char *to = NULL;
5660
5661 entry = oidmap_get(&state.commit2label,
5662 &commit->object.oid);
5663 if (entry)
5664 to = entry->string;
7543f6f4
JS
5665 else if (!rebase_cousins)
5666 to = label_oid(&commit->object.oid, NULL,
5667 &state);
1644c73c
JS
5668
5669 if (!to || !strcmp(to, "onto"))
d358fc28 5670 strbuf_addf(out, "%s onto\n", cmd_reset);
1644c73c
JS
5671 else {
5672 strbuf_reset(&oneline);
5673 pretty_print_commit(pp, commit, &oneline);
d358fc28
AG
5674 strbuf_addf(out, "%s %s # %s\n",
5675 cmd_reset, to, oneline.buf);
1644c73c
JS
5676 }
5677 }
5678
5679 for (iter2 = list; iter2; iter2 = iter2->next) {
5680 struct object_id *oid = &iter2->item->object.oid;
5681 entry = oidmap_get(&commit2todo, oid);
5682 /* only show if not already upstream */
5683 if (entry)
d358fc28 5684 strbuf_addf(out, "%s\n", entry->string);
1644c73c
JS
5685 entry = oidmap_get(&state.commit2label, oid);
5686 if (entry)
d358fc28
AG
5687 strbuf_addf(out, "%s %s\n",
5688 cmd_label, entry->string);
1644c73c
JS
5689 oidset_insert(&shown, oid);
5690 }
5691
5692 free_commit_list(list);
5693 }
5694
5695 free_commit_list(commits);
5696 free_commit_list(tips);
5697
5698 strbuf_release(&label);
5699 strbuf_release(&oneline);
5700 strbuf_release(&buf);
5701
5702 oidmap_free(&commit2todo, 1);
5703 oidmap_free(&state.commit2label, 1);
6da1a258 5704 hashmap_clear_and_free(&state.labels, struct labels_entry, entry);
1644c73c
JS
5705 strbuf_release(&state.buf);
5706
5707 return 0;
5708}
5709
d358fc28
AG
5710int sequencer_make_script(struct repository *r, struct strbuf *out, int argc,
5711 const char **argv, unsigned flags)
62db5247
JS
5712{
5713 char *format = NULL;
5714 struct pretty_print_context pp = {0};
62db5247
JS
5715 struct rev_info revs;
5716 struct commit *commit;
b9cbd295 5717 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
d8ae6c84 5718 const char *insn = flags & TODO_LIST_ABBREVIATE_CMDS ? "p" : "pick";
1644c73c 5719 int rebase_merges = flags & TODO_LIST_REBASE_MERGES;
0fcb4f6b 5720 int reapply_cherry_picks = flags & TODO_LIST_REAPPLY_CHERRY_PICKS;
767a4ca6 5721 int skipped_commit = 0;
0139c58a 5722 int ret = 0;
62db5247 5723
f11c9580 5724 repo_init_revisions(r, &revs, NULL);
62db5247 5725 revs.verbose_header = 1;
1644c73c
JS
5726 if (!rebase_merges)
5727 revs.max_parents = 1;
0fcb4f6b 5728 revs.cherry_mark = !reapply_cherry_picks;
62db5247
JS
5729 revs.limited = 1;
5730 revs.reverse = 1;
5731 revs.right_only = 1;
5732 revs.sort_order = REV_SORT_IN_GRAPH_ORDER;
5733 revs.topo_order = 1;
5734
5735 revs.pretty_given = 1;
5736 git_config_get_string("rebase.instructionFormat", &format);
5737 if (!format || !*format) {
5738 free(format);
5739 format = xstrdup("%s");
5740 }
5741 get_commit_format(format, &revs);
5742 free(format);
5743 pp.fmt = revs.commit_format;
5744 pp.output_encoding = get_log_output_encoding();
5745
0139c58a
ÆAB
5746 if (setup_revisions(argc, argv, &revs, NULL) > 1) {
5747 ret = error(_("make_script: unhandled options"));
5748 goto cleanup;
5749 }
62db5247 5750
0139c58a
ÆAB
5751 if (prepare_revision_walk(&revs) < 0) {
5752 ret = error(_("make_script: error preparing revisions"));
5753 goto cleanup;
5754 }
62db5247 5755
0139c58a
ÆAB
5756 if (rebase_merges) {
5757 ret = make_script_with_merges(&pp, &revs, out, flags);
5758 goto cleanup;
5759 }
1644c73c 5760
62db5247 5761 while ((commit = get_revision(&revs))) {
d48e5e21 5762 int is_empty = is_original_commit_empty(commit);
76ea2358 5763
767a4ca6
JS
5764 if (!is_empty && (commit->object.flags & PATCHSAME)) {
5765 if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS)
5766 warning(_("skipped previously applied commit %s"),
5767 short_commit_name(commit));
5768 skipped_commit = 1;
76ea2358 5769 continue;
767a4ca6 5770 }
b9cbd295
EN
5771 if (is_empty && !keep_empty)
5772 continue;
d358fc28 5773 strbuf_addf(out, "%s %s ", insn,
d8ae6c84 5774 oid_to_hex(&commit->object.oid));
d358fc28 5775 pretty_print_commit(&pp, commit, out);
1b5735f7
EN
5776 if (is_empty)
5777 strbuf_addf(out, " %c empty", comment_line_char);
d358fc28 5778 strbuf_addch(out, '\n');
62db5247 5779 }
767a4ca6
JS
5780 if (skipped_commit)
5781 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS,
5782 _("use --reapply-cherry-picks to include skipped commits"));
0139c58a
ÆAB
5783cleanup:
5784 release_revisions(&revs);
5785 return ret;
62db5247 5786}
3546c8d9 5787
0cce4a27
LB
5788/*
5789 * Add commands after pick and (series of) squash/fixup commands
5790 * in the todo list.
5791 */
17919c35
JS
5792static void todo_list_add_exec_commands(struct todo_list *todo_list,
5793 struct string_list *commands)
3546c8d9 5794{
683153a4
AG
5795 struct strbuf *buf = &todo_list->buf;
5796 size_t base_offset = buf->len;
5797 int i, insert, nr = 0, alloc = 0;
5798 struct todo_item *items = NULL, *base_items = NULL;
3546c8d9 5799
ca56dadb 5800 CALLOC_ARRAY(base_items, commands->nr);
683153a4
AG
5801 for (i = 0; i < commands->nr; i++) {
5802 size_t command_len = strlen(commands->items[i].string);
3546c8d9 5803
683153a4
AG
5804 strbuf_addstr(buf, commands->items[i].string);
5805 strbuf_addch(buf, '\n');
3546c8d9 5806
683153a4
AG
5807 base_items[i].command = TODO_EXEC;
5808 base_items[i].offset_in_buf = base_offset;
e57d2c59
PW
5809 base_items[i].arg_offset = base_offset;
5810 base_items[i].arg_len = command_len;
3546c8d9 5811
683153a4 5812 base_offset += command_len + 1;
3546c8d9
JS
5813 }
5814
1ace63bc
JS
5815 /*
5816 * Insert <commands> after every pick. Here, fixup/squash chains
5817 * are considered part of the pick, so we insert the commands *after*
5818 * those chains if there are any.
683153a4 5819 *
15beaaa3 5820 * As we insert the exec commands immediately after rearranging
683153a4
AG
5821 * any fixups and before the user edits the list, a fixup chain
5822 * can never contain comments (any comments are empty picks that
5823 * have been commented out because the user did not specify
5824 * --keep-empty). So, it is safe to insert an exec command
5825 * without looking at the command following a comment.
1ace63bc 5826 */
683153a4
AG
5827 insert = 0;
5828 for (i = 0; i < todo_list->nr; i++) {
5829 enum todo_command command = todo_list->items[i].command;
5830 if (insert && !is_fixup(command)) {
5831 ALLOC_GROW(items, nr + commands->nr, alloc);
5832 COPY_ARRAY(items + nr, base_items, commands->nr);
5833 nr += commands->nr;
5834
5835 insert = 0;
0cce4a27 5836 }
1ace63bc 5837
683153a4
AG
5838 ALLOC_GROW(items, nr + 1, alloc);
5839 items[nr++] = todo_list->items[i];
5840
1ace63bc 5841 if (command == TODO_PICK || command == TODO_MERGE)
683153a4 5842 insert = 1;
0cce4a27
LB
5843 }
5844
1ace63bc 5845 /* insert or append final <commands> */
cc9dcdee 5846 if (insert) {
683153a4
AG
5847 ALLOC_GROW(items, nr + commands->nr, alloc);
5848 COPY_ARRAY(items + nr, base_items, commands->nr);
5849 nr += commands->nr;
5850 }
0cce4a27 5851
683153a4
AG
5852 free(base_items);
5853 FREE_AND_NULL(todo_list->items);
5854 todo_list->items = items;
5855 todo_list->nr = nr;
5856 todo_list->alloc = alloc;
0cce4a27 5857}
3546c8d9 5858
616d7740
AG
5859static void todo_list_to_strbuf(struct repository *r, struct todo_list *todo_list,
5860 struct strbuf *buf, int num, unsigned flags)
3546c8d9 5861{
8dccc7a6 5862 struct todo_item *item;
616d7740 5863 int i, max = todo_list->nr;
3546c8d9 5864
616d7740
AG
5865 if (num > 0 && num < max)
5866 max = num;
3546c8d9 5867
616d7740 5868 for (item = todo_list->items, i = 0; i < max; i++, item++) {
68e7090f
AG
5869 char cmd;
5870
8dccc7a6
LB
5871 /* if the item is not a command write it and continue */
5872 if (item->command >= TODO_COMMENT) {
616d7740 5873 strbuf_addf(buf, "%.*s\n", item->arg_len,
cbef27d6 5874 todo_item_get_arg(todo_list, item));
8dccc7a6 5875 continue;
3546c8d9 5876 }
8dccc7a6
LB
5877
5878 /* add command to the buffer */
68e7090f
AG
5879 cmd = command_to_char(item->command);
5880 if ((flags & TODO_LIST_ABBREVIATE_CMDS) && cmd)
5881 strbuf_addch(buf, cmd);
d8ae6c84 5882 else
616d7740 5883 strbuf_addstr(buf, command_to_string(item->command));
8dccc7a6
LB
5884
5885 /* add commit id */
5886 if (item->commit) {
313a48ea 5887 const char *oid = flags & TODO_LIST_SHORTEN_IDS ?
8dccc7a6
LB
5888 short_commit_name(item->commit) :
5889 oid_to_hex(&item->commit->object.oid);
5890
9e3cebd9
CM
5891 if (item->command == TODO_FIXUP) {
5892 if (item->flags & TODO_EDIT_FIXUP_MSG)
5893 strbuf_addstr(buf, " -c");
5894 else if (item->flags & TODO_REPLACE_FIXUP_MSG) {
5895 strbuf_addstr(buf, " -C");
5896 }
5897 }
5898
4c68e7dd
JS
5899 if (item->command == TODO_MERGE) {
5900 if (item->flags & TODO_EDIT_MERGE_MSG)
616d7740 5901 strbuf_addstr(buf, " -c");
4c68e7dd 5902 else
616d7740 5903 strbuf_addstr(buf, " -C");
4c68e7dd
JS
5904 }
5905
616d7740 5906 strbuf_addf(buf, " %s", oid);
3546c8d9 5907 }
4c68e7dd 5908
8dccc7a6 5909 /* add all the rest */
c7b4d79c 5910 if (!item->arg_len)
616d7740 5911 strbuf_addch(buf, '\n');
c7b4d79c 5912 else
616d7740 5913 strbuf_addf(buf, " %.*s\n", item->arg_len,
cbef27d6 5914 todo_item_get_arg(todo_list, item));
3546c8d9 5915 }
3546c8d9 5916}
94399949 5917
616d7740
AG
5918int todo_list_write_to_file(struct repository *r, struct todo_list *todo_list,
5919 const char *file, const char *shortrevisions,
5920 const char *shortonto, int num, unsigned flags)
94399949 5921{
af1fc3ad 5922 int res;
616d7740 5923 struct strbuf buf = STRBUF_INIT;
94399949 5924
616d7740 5925 todo_list_to_strbuf(r, todo_list, &buf, num, flags);
af1fc3ad 5926 if (flags & TODO_LIST_APPEND_TODO_HELP)
d48e5e21 5927 append_todo_help(count_commands(todo_list),
af1fc3ad 5928 shortrevisions, shortonto, &buf);
94399949 5929
616d7740 5930 res = write_message(buf.buf, buf.len, file, 0);
cbef27d6 5931 strbuf_release(&buf);
8315bd20 5932
616d7740 5933 return res;
cbef27d6 5934}
94399949 5935
cdac2b01 5936/* skip picking commits whose parents are unchanged */
6bfeb7f1
AG
5937static int skip_unnecessary_picks(struct repository *r,
5938 struct todo_list *todo_list,
5939 struct object_id *base_oid)
cdac2b01 5940{
d4ed5d77 5941 struct object_id *parent_oid;
6bfeb7f1 5942 int i;
cdac2b01 5943
6bfeb7f1
AG
5944 for (i = 0; i < todo_list->nr; i++) {
5945 struct todo_item *item = todo_list->items + i;
cdac2b01
JS
5946
5947 if (item->command >= TODO_NOOP)
5948 continue;
5949 if (item->command != TODO_PICK)
5950 break;
4a93b899 5951 if (repo_parse_commit(r, item->commit)) {
cdac2b01
JS
5952 return error(_("could not parse commit '%s'"),
5953 oid_to_hex(&item->commit->object.oid));
5954 }
5955 if (!item->commit->parents)
5956 break; /* root commit */
5957 if (item->commit->parents->next)
5958 break; /* merge commit */
5959 parent_oid = &item->commit->parents->item->object.oid;
6bfeb7f1 5960 if (!oideq(parent_oid, base_oid))
cdac2b01 5961 break;
6bfeb7f1 5962 oidcpy(base_oid, &item->commit->object.oid);
cdac2b01
JS
5963 }
5964 if (i > 0) {
cdac2b01
JS
5965 const char *done_path = rebase_path_done();
5966
6bfeb7f1 5967 if (todo_list_write_to_file(r, todo_list, done_path, NULL, NULL, i, 0)) {
cdac2b01 5968 error_errno(_("could not write to '%s'"), done_path);
cdac2b01
JS
5969 return -1;
5970 }
cdac2b01 5971
6bfeb7f1
AG
5972 MOVE_ARRAY(todo_list->items, todo_list->items + i, todo_list->nr - i);
5973 todo_list->nr -= i;
5974 todo_list->current = 0;
34065541 5975 todo_list->done_nr += i;
cdac2b01 5976
6bfeb7f1
AG
5977 if (is_fixup(peek_command(todo_list, 0)))
5978 record_in_rewritten(base_oid, peek_command(todo_list, 0));
cdac2b01
JS
5979 }
5980
cdac2b01
JS
5981 return 0;
5982}
c44a4c65 5983
900b50c2
DS
5984struct todo_add_branch_context {
5985 struct todo_item *items;
5986 size_t items_nr;
5987 size_t items_alloc;
5988 struct strbuf *buf;
5989 struct commit *commit;
5990 struct string_list refs_to_oids;
5991};
5992
5993static int add_decorations_to_list(const struct commit *commit,
5994 struct todo_add_branch_context *ctx)
5995{
5996 const struct name_decoration *decoration = get_name_decoration(&commit->object);
aa37f3e1
DS
5997 const char *head_ref = resolve_ref_unsafe("HEAD",
5998 RESOLVE_REF_READING,
5999 NULL,
6000 NULL);
900b50c2
DS
6001
6002 while (decoration) {
6003 struct todo_item *item;
6004 const char *path;
6005 size_t base_offset = ctx->buf->len;
6006
aa37f3e1
DS
6007 /*
6008 * If the branch is the current HEAD, then it will be
6009 * updated by the default rebase behavior.
6010 */
6011 if (head_ref && !strcmp(head_ref, decoration->name)) {
6012 decoration = decoration->next;
6013 continue;
6014 }
6015
900b50c2
DS
6016 ALLOC_GROW(ctx->items,
6017 ctx->items_nr + 1,
6018 ctx->items_alloc);
6019 item = &ctx->items[ctx->items_nr];
6020 memset(item, 0, sizeof(*item));
6021
6022 /* If the branch is checked out, then leave a comment instead. */
6023 if ((path = branch_checked_out(decoration->name))) {
6024 item->command = TODO_COMMENT;
6025 strbuf_addf(ctx->buf, "# Ref %s checked out at '%s'\n",
6026 decoration->name, path);
6027 } else {
6028 struct string_list_item *sti;
6029 item->command = TODO_UPDATE_REF;
6030 strbuf_addf(ctx->buf, "%s\n", decoration->name);
6031
6032 sti = string_list_insert(&ctx->refs_to_oids,
6033 decoration->name);
89fc0b53 6034 sti->util = init_update_ref_record(decoration->name);
900b50c2
DS
6035 }
6036
6037 item->offset_in_buf = base_offset;
6038 item->arg_offset = base_offset;
6039 item->arg_len = ctx->buf->len - base_offset;
6040 ctx->items_nr++;
6041
6042 decoration = decoration->next;
6043 }
6044
6045 return 0;
6046}
6047
6048/*
6049 * For each 'pick' command, find out if the commit has a decoration in
6050 * refs/heads/. If so, then add a 'label for-update-refs/' command.
6051 */
6052static int todo_list_add_update_ref_commands(struct todo_list *todo_list)
6053{
89fc0b53 6054 int i, res;
900b50c2
DS
6055 static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP;
6056 static struct string_list decorate_refs_exclude_config = STRING_LIST_INIT_NODUP;
6057 static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP;
6058 struct decoration_filter decoration_filter = {
6059 .include_ref_pattern = &decorate_refs_include,
6060 .exclude_ref_pattern = &decorate_refs_exclude,
6061 .exclude_ref_config_pattern = &decorate_refs_exclude_config,
6062 };
6063 struct todo_add_branch_context ctx = {
6064 .buf = &todo_list->buf,
6065 .refs_to_oids = STRING_LIST_INIT_DUP,
6066 };
6067
6068 ctx.items_alloc = 2 * todo_list->nr + 1;
6069 ALLOC_ARRAY(ctx.items, ctx.items_alloc);
6070
6071 string_list_append(&decorate_refs_include, "refs/heads/");
6072 load_ref_decorations(&decoration_filter, 0);
6073
6074 for (i = 0; i < todo_list->nr; ) {
6075 struct todo_item *item = &todo_list->items[i];
6076
6077 /* insert ith item into new list */
6078 ALLOC_GROW(ctx.items,
6079 ctx.items_nr + 1,
6080 ctx.items_alloc);
6081
6082 ctx.items[ctx.items_nr++] = todo_list->items[i++];
6083
6084 if (item->commit) {
6085 ctx.commit = item->commit;
6086 add_decorations_to_list(item->commit, &ctx);
6087 }
6088 }
6089
89fc0b53
DS
6090 res = write_update_refs_state(&ctx.refs_to_oids);
6091
900b50c2 6092 string_list_clear(&ctx.refs_to_oids, 1);
89fc0b53
DS
6093
6094 if (res) {
6095 /* we failed, so clean up the new list. */
6096 free(ctx.items);
6097 return res;
6098 }
6099
900b50c2
DS
6100 free(todo_list->items);
6101 todo_list->items = ctx.items;
6102 todo_list->nr = ctx.items_nr;
6103 todo_list->alloc = ctx.items_alloc;
6104
6105 return 0;
6106}
6107
005af339 6108int complete_action(struct repository *r, struct replay_opts *opts, unsigned flags,
b97e1873 6109 const char *shortrevisions, const char *onto_name,
f3e27a02 6110 struct commit *onto, const struct object_id *orig_head,
7d3488eb 6111 struct string_list *commands, unsigned autosquash,
900b50c2 6112 unsigned update_refs,
7d3488eb 6113 struct todo_list *todo_list)
b97e1873 6114{
5da69c0d
AK
6115 char shortonto[GIT_MAX_HEXSZ + 1];
6116 const char *todo_file = rebase_path_todo();
94bcad79 6117 struct todo_list new_todo = TODO_LIST_INIT;
b6992261 6118 struct strbuf *buf = &todo_list->buf, buf2 = STRBUF_INIT;
7d3488eb 6119 struct object_id oid = onto->object.oid;
1451d0f6 6120 int res;
b97e1873 6121
4a93b899 6122 repo_find_unique_abbrev_r(r, shortonto, &oid,
d850b7a5 6123 DEFAULT_ABBREV);
b97e1873 6124
94bcad79
AG
6125 if (buf->len == 0) {
6126 struct todo_item *item = append_new_todo(todo_list);
6127 item->command = TODO_NOOP;
6128 item->commit = NULL;
6129 item->arg_len = item->arg_offset = item->flags = item->offset_in_buf = 0;
6130 }
b97e1873 6131
900b50c2
DS
6132 if (update_refs && todo_list_add_update_ref_commands(todo_list))
6133 return -1;
6134
94bcad79 6135 if (autosquash && todo_list_rearrange_squash(todo_list))
b97e1873
AG
6136 return -1;
6137
683153a4 6138 if (commands->nr)
94bcad79 6139 todo_list_add_exec_commands(todo_list, commands);
b97e1873 6140
94bcad79 6141 if (count_commands(todo_list) == 0) {
be1bb600 6142 apply_autostash(rebase_path_autostash());
b97e1873 6143 sequencer_remove_state(opts);
b97e1873
AG
6144
6145 return error(_("nothing to do"));
6146 }
6147
1451d0f6
AG
6148 res = edit_todo_list(r, todo_list, &new_todo, shortrevisions,
6149 shortonto, flags);
6150 if (res == -1)
b97e1873 6151 return -1;
1451d0f6 6152 else if (res == -2) {
be1bb600 6153 apply_autostash(rebase_path_autostash());
b97e1873 6154 sequencer_remove_state(opts);
b97e1873
AG
6155
6156 return -1;
1451d0f6 6157 } else if (res == -3) {
be1bb600 6158 apply_autostash(rebase_path_autostash());
b97e1873 6159 sequencer_remove_state(opts);
94bcad79 6160 todo_list_release(&new_todo);
b97e1873
AG
6161
6162 return error(_("nothing to do"));
5a5445d8 6163 } else if (res == -4) {
7d3488eb 6164 checkout_onto(r, opts, onto_name, &onto->object.oid, orig_head);
94bcad79
AG
6165 todo_list_release(&new_todo);
6166
b97e1873
AG
6167 return -1;
6168 }
6169
b6992261
JS
6170 /* Expand the commit IDs */
6171 todo_list_to_strbuf(r, &new_todo, &buf2, -1, 0);
6172 strbuf_swap(&new_todo.buf, &buf2);
6173 strbuf_release(&buf2);
6174 new_todo.total_nr -= new_todo.nr;
6175 if (todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo) < 0)
6176 BUG("invalid todo list after expanding IDs:\n%s",
6177 new_todo.buf.buf);
6178
6bfeb7f1
AG
6179 if (opts->allow_ff && skip_unnecessary_picks(r, &new_todo, &oid)) {
6180 todo_list_release(&new_todo);
b97e1873 6181 return error(_("could not skip unnecessary pick commands"));
6bfeb7f1
AG
6182 }
6183
94bcad79
AG
6184 if (todo_list_write_to_file(r, &new_todo, todo_file, NULL, NULL, -1,
6185 flags & ~(TODO_LIST_SHORTEN_IDS))) {
6186 todo_list_release(&new_todo);
6187 return error_errno(_("could not write '%s'"), todo_file);
6188 }
6189
393adf7a 6190 res = -1;
b97e1873 6191
7d3488eb 6192 if (checkout_onto(r, opts, onto_name, &oid, orig_head))
393adf7a 6193 goto cleanup;
29d51e21 6194
005af339 6195 if (require_clean_work_tree(r, "rebase", "", 1, 1))
393adf7a 6196 goto cleanup;
b97e1873 6197
393adf7a
AG
6198 todo_list_write_total_nr(&new_todo);
6199 res = pick_commits(r, &new_todo, opts);
6200
6201cleanup:
6202 todo_list_release(&new_todo);
6203
6204 return res;
b97e1873
AG
6205}
6206
c44a4c65
JS
6207struct subject2item_entry {
6208 struct hashmap_entry entry;
6209 int i;
6210 char subject[FLEX_ARRAY];
6211};
6212
5cf88fd8 6213static int subject2item_cmp(const void *fndata UNUSED,
939af16e
EW
6214 const struct hashmap_entry *eptr,
6215 const struct hashmap_entry *entry_or_key,
6216 const void *key)
c44a4c65 6217{
939af16e
EW
6218 const struct subject2item_entry *a, *b;
6219
6220 a = container_of(eptr, const struct subject2item_entry, entry);
6221 b = container_of(entry_or_key, const struct subject2item_entry, entry);
6222
c44a4c65
JS
6223 return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
6224}
6225
3cc0287b
NTND
6226define_commit_slab(commit_todo_item, struct todo_item *);
6227
1f969601 6228static int skip_fixupish(const char *subject, const char **p) {
bae5b4ae
CM
6229 return skip_prefix(subject, "fixup! ", p) ||
6230 skip_prefix(subject, "amend! ", p) ||
6231 skip_prefix(subject, "squash! ", p);
6232}
6233
c44a4c65
JS
6234/*
6235 * Rearrange the todo list that has both "pick commit-id msg" and "pick
6236 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
6237 * after the former, and change "pick" to "fixup"/"squash".
6238 *
6239 * Note that if the config has specified a custom instruction format, each log
6240 * message will have to be retrieved from the commit (as the oneline in the
6241 * script cannot be trusted) in order to normalize the autosquash arrangement.
6242 */
79d7e883 6243int todo_list_rearrange_squash(struct todo_list *todo_list)
c44a4c65 6244{
c44a4c65 6245 struct hashmap subject2item;
f2a04904 6246 int rearranged = 0, *next, *tail, i, nr = 0, alloc = 0;
c44a4c65 6247 char **subjects;
3cc0287b 6248 struct commit_todo_item commit_todo;
f2a04904 6249 struct todo_item *items = NULL;
c44a4c65 6250
3cc0287b 6251 init_commit_todo_item(&commit_todo);
c44a4c65
JS
6252 /*
6253 * The hashmap maps onelines to the respective todo list index.
6254 *
6255 * If any items need to be rearranged, the next[i] value will indicate
6256 * which item was moved directly after the i'th.
6257 *
6258 * In that case, last[i] will indicate the index of the latest item to
6259 * be moved to appear after the i'th.
6260 */
939af16e 6261 hashmap_init(&subject2item, subject2item_cmp, NULL, todo_list->nr);
f2a04904
AG
6262 ALLOC_ARRAY(next, todo_list->nr);
6263 ALLOC_ARRAY(tail, todo_list->nr);
6264 ALLOC_ARRAY(subjects, todo_list->nr);
6265 for (i = 0; i < todo_list->nr; i++) {
c44a4c65 6266 struct strbuf buf = STRBUF_INIT;
f2a04904 6267 struct todo_item *item = todo_list->items + i;
c44a4c65
JS
6268 const char *commit_buffer, *subject, *p;
6269 size_t subject_len;
6270 int i2 = -1;
6271 struct subject2item_entry *entry;
6272
6273 next[i] = tail[i] = -1;
2f6b1d13 6274 if (!item->commit || item->command == TODO_DROP) {
c44a4c65
JS
6275 subjects[i] = NULL;
6276 continue;
6277 }
6278
6279 if (is_fixup(item->command)) {
3cc0287b 6280 clear_commit_todo_item(&commit_todo);
c44a4c65
JS
6281 return error(_("the script was already rearranged."));
6282 }
6283
ecb5091f
ÆAB
6284 repo_parse_commit(the_repository, item->commit);
6285 commit_buffer = repo_logmsg_reencode(the_repository,
6286 item->commit, NULL,
6287 "UTF-8");
c44a4c65
JS
6288 find_commit_subject(commit_buffer, &subject);
6289 format_subject(&buf, subject, " ");
6290 subject = subjects[i] = strbuf_detach(&buf, &subject_len);
ecb5091f
ÆAB
6291 repo_unuse_commit_buffer(the_repository, item->commit,
6292 commit_buffer);
1f969601 6293 if (skip_fixupish(subject, &p)) {
c44a4c65
JS
6294 struct commit *commit2;
6295
6296 for (;;) {
6297 while (isspace(*p))
6298 p++;
1f969601 6299 if (!skip_fixupish(p, &p))
c44a4c65
JS
6300 break;
6301 }
6302
f23a4651
EW
6303 entry = hashmap_get_entry_from_hash(&subject2item,
6304 strhash(p), p,
6305 struct subject2item_entry,
6306 entry);
6307 if (entry)
c44a4c65
JS
6308 /* found by title */
6309 i2 = entry->i;
6310 else if (!strchr(p, ' ') &&
6311 (commit2 =
6312 lookup_commit_reference_by_name(p)) &&
3cc0287b 6313 *commit_todo_item_at(&commit_todo, commit2))
c44a4c65 6314 /* found by commit name */
3cc0287b 6315 i2 = *commit_todo_item_at(&commit_todo, commit2)
f2a04904 6316 - todo_list->items;
c44a4c65
JS
6317 else {
6318 /* copy can be a prefix of the commit subject */
6319 for (i2 = 0; i2 < i; i2++)
6320 if (subjects[i2] &&
6321 starts_with(subjects[i2], p))
6322 break;
6323 if (i2 == i)
6324 i2 = -1;
6325 }
6326 }
6327 if (i2 >= 0) {
6328 rearranged = 1;
bae5b4ae
CM
6329 if (starts_with(subject, "fixup!")) {
6330 todo_list->items[i].command = TODO_FIXUP;
6331 } else if (starts_with(subject, "amend!")) {
6332 todo_list->items[i].command = TODO_FIXUP;
6333 todo_list->items[i].flags = TODO_REPLACE_FIXUP_MSG;
6334 } else {
6335 todo_list->items[i].command = TODO_SQUASH;
6336 }
02471e7e
JS
6337 if (tail[i2] < 0) {
6338 next[i] = next[i2];
c44a4c65 6339 next[i2] = i;
02471e7e
JS
6340 } else {
6341 next[i] = next[tail[i2]];
c44a4c65 6342 next[tail[i2]] = i;
02471e7e 6343 }
c44a4c65
JS
6344 tail[i2] = i;
6345 } else if (!hashmap_get_from_hash(&subject2item,
6346 strhash(subject), subject)) {
6347 FLEX_ALLOC_MEM(entry, subject, subject, subject_len);
6348 entry->i = i;
d22245a2
EW
6349 hashmap_entry_init(&entry->entry,
6350 strhash(entry->subject));
26b455f2 6351 hashmap_put(&subject2item, &entry->entry);
c44a4c65 6352 }
3e367a5f
JA
6353
6354 *commit_todo_item_at(&commit_todo, item->commit) = item;
c44a4c65
JS
6355 }
6356
6357 if (rearranged) {
f2a04904
AG
6358 for (i = 0; i < todo_list->nr; i++) {
6359 enum todo_command command = todo_list->items[i].command;
c44a4c65
JS
6360 int cur = i;
6361
6362 /*
6363 * Initially, all commands are 'pick's. If it is a
6364 * fixup or a squash now, we have rearranged it.
6365 */
6366 if (is_fixup(command))
6367 continue;
6368
6369 while (cur >= 0) {
f2a04904
AG
6370 ALLOC_GROW(items, nr + 1, alloc);
6371 items[nr++] = todo_list->items[cur];
c44a4c65
JS
6372 cur = next[cur];
6373 }
6374 }
6375
f2a04904
AG
6376 FREE_AND_NULL(todo_list->items);
6377 todo_list->items = items;
6378 todo_list->nr = nr;
6379 todo_list->alloc = alloc;
c44a4c65
JS
6380 }
6381
6382 free(next);
6383 free(tail);
f2a04904 6384 for (i = 0; i < todo_list->nr; i++)
c44a4c65
JS
6385 free(subjects[i]);
6386 free(subjects);
6da1a258 6387 hashmap_clear_and_free(&subject2item, struct subject2item_entry, entry);
c44a4c65 6388
3cc0287b 6389 clear_commit_todo_item(&commit_todo);
f2a04904
AG
6390
6391 return 0;
c44a4c65 6392}
901ba7b1
PW
6393
6394int sequencer_determine_whence(struct repository *r, enum commit_whence *whence)
6395{
c8e4159e 6396 if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) {
430b75f7
PW
6397 struct object_id cherry_pick_head, rebase_head;
6398
6399 if (file_exists(git_path_seq_dir()))
6400 *whence = FROM_CHERRY_PICK_MULTI;
6401 if (file_exists(rebase_path()) &&
4a93b899
ÆAB
6402 !repo_get_oid(r, "REBASE_HEAD", &rebase_head) &&
6403 !repo_get_oid(r, "CHERRY_PICK_HEAD", &cherry_pick_head) &&
430b75f7
PW
6404 oideq(&rebase_head, &cherry_pick_head))
6405 *whence = FROM_REBASE_PICK;
6406 else
6407 *whence = FROM_CHERRY_PICK_SINGLE;
6408
901ba7b1
PW
6409 return 1;
6410 }
6411
6412 return 0;
6413}
aa7f2fd1
DS
6414
6415int sequencer_get_update_refs_state(const char *wt_dir,
6416 struct string_list *refs)
6417{
6418 int result = 0;
6419 FILE *fp = NULL;
6420 struct strbuf ref = STRBUF_INIT;
6421 struct strbuf hash = STRBUF_INIT;
6422 struct update_ref_record *rec = NULL;
6423
6424 char *path = rebase_path_update_refs(wt_dir);
6425
6426 fp = fopen(path, "r");
6427 if (!fp)
6428 goto cleanup;
6429
6430 while (strbuf_getline(&ref, fp) != EOF) {
6431 struct string_list_item *item;
6432
6433 CALLOC_ARRAY(rec, 1);
6434
6435 if (strbuf_getline(&hash, fp) == EOF ||
6436 get_oid_hex(hash.buf, &rec->before)) {
6437 warning(_("update-refs file at '%s' is invalid"),
6438 path);
6439 result = -1;
6440 goto cleanup;
6441 }
6442
6443 if (strbuf_getline(&hash, fp) == EOF ||
6444 get_oid_hex(hash.buf, &rec->after)) {
6445 warning(_("update-refs file at '%s' is invalid"),
6446 path);
6447 result = -1;
6448 goto cleanup;
6449 }
6450
6451 item = string_list_insert(refs, ref.buf);
6452 item->util = rec;
6453 rec = NULL;
6454 }
6455
6456cleanup:
6457 if (fp)
6458 fclose(fp);
6459 free(path);
6460 free(rec);
6461 strbuf_release(&ref);
6462 strbuf_release(&hash);
6463 return result;
6464}