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