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