]> git.ipfire.org Git - thirdparty/git.git/blame - sequencer.c
Documentation: use preferred name for the 'todo list' script
[thirdparty/git.git] / sequencer.c
CommitLineData
26ae337b 1#include "cache.h"
b2141fc1 2#include "config.h"
697cc8ef 3#include "lockfile.h"
26ae337b 4#include "sequencer.h"
26ae337b 5#include "dir.h"
043a4492
RR
6#include "object.h"
7#include "commit.h"
8#include "tag.h"
9#include "run-command.h"
10#include "exec_cmd.h"
11#include "utf8.h"
12#include "cache-tree.h"
13#include "diff.h"
14#include "revision.h"
15#include "rerere.h"
16#include "merge-recursive.h"
17#include "refs.h"
b27cfb0d 18#include "argv-array.h"
a1c75762 19#include "quote.h"
967dfd4d 20#include "trailer.h"
56dc3ab0 21#include "log-tree.h"
311af526 22#include "wt-status.h"
c44a4c65 23#include "hashmap.h"
043a4492
RR
24
25#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
26ae337b 26
5ed75e2a 27const char sign_off_header[] = "Signed-off-by: ";
cd650a4e 28static const char cherry_picked_prefix[] = "(cherry picked from commit ";
5ed75e2a 29
8a2a0f53
JS
30GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
31
32static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
33static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
34static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
1e41229d 35static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety")
f932729c 36
84583957
JS
37static GIT_PATH_FUNC(rebase_path, "rebase-merge")
38/*
39 * The file containing rebase commands, comments, and empty lines.
40 * This file is created by "git rebase -i" then edited by the user. As
41 * the lines are processed, they are removed from the front of this
42 * file and written to the tail of 'done'.
43 */
44static GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo")
1df6df0c
JS
45/*
46 * The rebase command lines that have already been processed. A line
47 * is moved here when it is first handled, before any associated user
48 * actions.
49 */
50static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
ef80069a
JS
51/*
52 * The file to keep track of how many commands were already processed (e.g.
53 * for the prompt).
54 */
55static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum");
56/*
57 * The file to keep track of how many commands are to be processed in total
58 * (e.g. for the prompt).
59 */
60static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end");
6e98de72
JS
61/*
62 * The commit message that is planned to be used for any changes that
63 * need to be committed following a user interaction.
64 */
65static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message")
66/*
67 * The file into which is accumulated the suggested commit message for
68 * squash/fixup commands. When the first of a series of squash/fixups
69 * is seen, the file is created and the commit message from the
70 * previous commit and from the first squash/fixup commit are written
71 * to it. The commit message for each subsequent squash/fixup commit
72 * is appended to the file as it is processed.
73 *
74 * The first line of the file is of the form
75 * # This is a combination of $count commits.
76 * where $count is the number of commits whose messages have been
77 * written to the file so far (including the initial "pick" commit).
78 * Each time that a commit message is processed, this line is read and
79 * updated. It is deleted just before the combined commit is made.
80 */
81static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash")
82/*
83 * If the current series of squash/fixups has not yet included a squash
84 * command, then this file exists and holds the commit message of the
85 * original "pick" commit. (If the series ends without a "squash"
86 * command, then this can be used as the commit message of the combined
87 * commit without opening the editor.)
88 */
89static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup")
b5a67045
JS
90/*
91 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
92 * GIT_AUTHOR_DATE that will be used for the commit that is currently
93 * being rebased.
94 */
95static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script")
56dc3ab0
JS
96/*
97 * When an "edit" rebase command is being processed, the SHA1 of the
98 * commit to be edited is recorded in this file. When "git rebase
99 * --continue" is executed, if there are any staged changes then they
100 * will be amended to the HEAD commit, but only provided the HEAD
101 * commit is still the commit to be edited. When any other rebase
102 * command is processed, this file is deleted.
103 */
104static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend")
105/*
106 * When we stop at a given patch via the "edit" command, this file contains
107 * the abbreviated commit name of the corresponding patch.
108 */
109static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha")
25cb8df9
JS
110/*
111 * For the post-rewrite hook, we make a list of rewritten commits and
112 * their new sha1s. The rewritten-pending list keeps the sha1s of
113 * commits that have been processed, but not committed yet,
114 * e.g. because they are waiting for a 'squash' command.
115 */
116static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list")
117static GIT_PATH_FUNC(rebase_path_rewritten_pending,
118 "rebase-merge/rewritten-pending")
a1c75762
JS
119/*
120 * The following files are written by git-rebase just after parsing the
121 * command-line (and are only consumed, not modified, by the sequencer).
122 */
123static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt")
556907f1
JS
124static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head")
125static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose")
4b83ce9f
JS
126static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name")
127static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto")
796c7972 128static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash")
ca6c6b45
JS
129static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy")
130static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts")
9b6d7a62 131static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate")
b5a67045 132
b5a67045
JS
133static inline int is_rebase_i(const struct replay_opts *opts)
134{
84583957 135 return opts->action == REPLAY_INTERACTIVE_REBASE;
b5a67045
JS
136}
137
285abf56
JS
138static const char *get_dir(const struct replay_opts *opts)
139{
84583957
JS
140 if (is_rebase_i(opts))
141 return rebase_path();
285abf56
JS
142 return git_path_seq_dir();
143}
144
c0246501
JS
145static const char *get_todo_path(const struct replay_opts *opts)
146{
84583957
JS
147 if (is_rebase_i(opts))
148 return rebase_path_todo();
c0246501
JS
149 return git_path_todo_file();
150}
151
bab4d109
BC
152/*
153 * Returns 0 for non-conforming footer
154 * Returns 1 for conforming footer
155 * Returns 2 when sob exists within conforming footer
156 * Returns 3 when sob exists within conforming footer as last entry
157 */
158static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
159 int ignore_footer)
b971e04f 160{
967dfd4d
JT
161 struct trailer_info info;
162 int i;
163 int found_sob = 0, found_sob_last = 0;
b971e04f 164
967dfd4d 165 trailer_info_get(&info, sb->buf);
b971e04f 166
967dfd4d 167 if (info.trailer_start == info.trailer_end)
b971e04f
BC
168 return 0;
169
967dfd4d
JT
170 for (i = 0; i < info.trailer_nr; i++)
171 if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) {
172 found_sob = 1;
173 if (i == info.trailer_nr - 1)
174 found_sob_last = 1;
175 }
b971e04f 176
967dfd4d 177 trailer_info_release(&info);
bab4d109 178
967dfd4d 179 if (found_sob_last)
bab4d109
BC
180 return 3;
181 if (found_sob)
182 return 2;
b971e04f
BC
183 return 1;
184}
5ed75e2a 185
a1c75762
JS
186static const char *gpg_sign_opt_quoted(struct replay_opts *opts)
187{
188 static struct strbuf buf = STRBUF_INIT;
189
190 strbuf_reset(&buf);
191 if (opts->gpg_sign)
192 sq_quotef(&buf, "-S%s", opts->gpg_sign);
193 return buf.buf;
194}
195
2863584f 196int sequencer_remove_state(struct replay_opts *opts)
26ae337b 197{
285abf56 198 struct strbuf dir = STRBUF_INIT;
03a4e260
JS
199 int i;
200
201 free(opts->gpg_sign);
202 free(opts->strategy);
203 for (i = 0; i < opts->xopts_nr; i++)
204 free(opts->xopts[i]);
205 free(opts->xopts);
26ae337b 206
72d4a9a7 207 strbuf_addstr(&dir, get_dir(opts));
285abf56
JS
208 remove_dir_recursively(&dir, 0);
209 strbuf_release(&dir);
2863584f
JS
210
211 return 0;
26ae337b 212}
043a4492
RR
213
214static const char *action_name(const struct replay_opts *opts)
215{
84583957
JS
216 switch (opts->action) {
217 case REPLAY_REVERT:
218 return N_("revert");
219 case REPLAY_PICK:
220 return N_("cherry-pick");
221 case REPLAY_INTERACTIVE_REBASE:
222 return N_("rebase -i");
223 }
224 die(_("Unknown action: %d"), opts->action);
043a4492
RR
225}
226
043a4492
RR
227struct commit_message {
228 char *parent_label;
7b35eaf8
JK
229 char *label;
230 char *subject;
043a4492
RR
231 const char *message;
232};
233
39755964
JS
234static const char *short_commit_name(struct commit *commit)
235{
236 return find_unique_abbrev(commit->object.oid.hash, DEFAULT_ABBREV);
237}
238
043a4492
RR
239static int get_message(struct commit *commit, struct commit_message *out)
240{
043a4492 241 const char *abbrev, *subject;
7b35eaf8 242 int subject_len;
043a4492 243
7b35eaf8 244 out->message = logmsg_reencode(commit, NULL, get_commit_output_encoding());
39755964 245 abbrev = short_commit_name(commit);
043a4492
RR
246
247 subject_len = find_commit_subject(out->message, &subject);
248
7b35eaf8
JK
249 out->subject = xmemdupz(subject, subject_len);
250 out->label = xstrfmt("%s... %s", abbrev, out->subject);
251 out->parent_label = xstrfmt("parent of %s", out->label);
252
043a4492
RR
253 return 0;
254}
255
d74a4e57 256static void free_message(struct commit *commit, struct commit_message *msg)
043a4492
RR
257{
258 free(msg->parent_label);
7b35eaf8
JK
259 free(msg->label);
260 free(msg->subject);
b66103c3 261 unuse_commit_buffer(commit, msg->message);
043a4492
RR
262}
263
ed727b19 264static void print_advice(int show_hint, struct replay_opts *opts)
043a4492
RR
265{
266 char *msg = getenv("GIT_CHERRY_PICK_HELP");
267
268 if (msg) {
269 fprintf(stderr, "%s\n", msg);
270 /*
41ccfdd9 271 * A conflict has occurred but the porcelain
043a4492
RR
272 * (typically rebase --interactive) wants to take care
273 * of the commit itself so remove CHERRY_PICK_HEAD
274 */
f932729c 275 unlink(git_path_cherry_pick_head());
043a4492
RR
276 return;
277 }
278
ed727b19
PH
279 if (show_hint) {
280 if (opts->no_commit)
281 advise(_("after resolving the conflicts, mark the corrected paths\n"
282 "with 'git add <paths>' or 'git rm <paths>'"));
283 else
284 advise(_("after resolving the conflicts, mark the corrected paths\n"
285 "with 'git add <paths>' or 'git rm <paths>'\n"
286 "and commit the result with 'git commit'"));
287 }
043a4492
RR
288}
289
f56fffef
JS
290static int write_message(const void *buf, size_t len, const char *filename,
291 int append_eol)
043a4492
RR
292{
293 static struct lock_file msg_file;
294
4ef3d8f0
JS
295 int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
296 if (msg_fd < 0)
93b3df6f 297 return error_errno(_("could not lock '%s'"), filename);
75871495 298 if (write_in_full(msg_fd, buf, len) < 0) {
4f66c837 299 rollback_lock_file(&msg_file);
93b3df6f 300 return error_errno(_("could not write to '%s'"), filename);
4f66c837 301 }
f56fffef
JS
302 if (append_eol && write(msg_fd, "\n", 1) < 0) {
303 rollback_lock_file(&msg_file);
35871806 304 return error_errno(_("could not write eol to '%s'"), filename);
f56fffef 305 }
4f66c837
JS
306 if (commit_lock_file(&msg_file) < 0) {
307 rollback_lock_file(&msg_file);
93b3df6f 308 return error(_("failed to finalize '%s'."), filename);
4f66c837 309 }
4ef3d8f0
JS
310
311 return 0;
043a4492
RR
312}
313
1dfc84e9
JS
314/*
315 * Reads a file that was presumably written by a shell script, i.e. with an
316 * end-of-line marker that needs to be stripped.
317 *
318 * Note that only the last end-of-line marker is stripped, consistent with the
319 * behavior of "$(cat path)" in a shell script.
320 *
321 * Returns 1 if the file was read, 0 if it could not be read or does not exist.
322 */
323static int read_oneliner(struct strbuf *buf,
324 const char *path, int skip_if_empty)
325{
326 int orig_len = buf->len;
327
328 if (!file_exists(path))
329 return 0;
330
331 if (strbuf_read_file(buf, path, 0) < 0) {
332 warning_errno(_("could not read '%s'"), path);
333 return 0;
334 }
335
336 if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') {
337 if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r')
338 --buf->len;
339 buf->buf[buf->len] = '\0';
340 }
341
342 if (skip_if_empty && buf->len == orig_len)
343 return 0;
344
345 return 1;
346}
347
043a4492
RR
348static struct tree *empty_tree(void)
349{
740ee055 350 return lookup_tree(&empty_tree_oid);
043a4492
RR
351}
352
353static int error_dirty_index(struct replay_opts *opts)
354{
355 if (read_cache_unmerged())
c28cbc5e 356 return error_resolve_conflict(_(action_name(opts)));
043a4492 357
93b3df6f 358 error(_("your local changes would be overwritten by %s."),
c28cbc5e 359 _(action_name(opts)));
043a4492
RR
360
361 if (advice_commit_before_merge)
93b3df6f 362 advise(_("commit your changes or stash them to proceed."));
043a4492
RR
363 return -1;
364}
365
1e41229d
SB
366static void update_abort_safety_file(void)
367{
368 struct object_id head;
369
370 /* Do nothing on a single-pick */
371 if (!file_exists(git_path_seq_dir()))
372 return;
373
374 if (!get_oid("HEAD", &head))
375 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head));
376 else
377 write_file(git_path_abort_safety_file(), "%s", "");
378}
379
ace976b2 380static int fast_forward_to(const struct object_id *to, const struct object_id *from,
eb4be1cb 381 int unborn, struct replay_opts *opts)
043a4492 382{
d668d16c 383 struct ref_transaction *transaction;
eb4be1cb 384 struct strbuf sb = STRBUF_INIT;
d668d16c 385 struct strbuf err = STRBUF_INIT;
043a4492
RR
386
387 read_cache();
db699a8a 388 if (checkout_fast_forward(from, to, 1))
0e408fc3 389 return -1; /* the callee should have complained already */
651ab9f5 390
c28cbc5e 391 strbuf_addf(&sb, _("%s: fast-forward"), _(action_name(opts)));
d668d16c
RS
392
393 transaction = ref_transaction_begin(&err);
394 if (!transaction ||
395 ref_transaction_update(transaction, "HEAD",
89f3bbdd 396 to, unborn ? &null_oid : from,
1d147bdf 397 0, sb.buf, &err) ||
db7516ab 398 ref_transaction_commit(transaction, &err)) {
d668d16c
RS
399 ref_transaction_free(transaction);
400 error("%s", err.buf);
401 strbuf_release(&sb);
402 strbuf_release(&err);
403 return -1;
404 }
651ab9f5 405
eb4be1cb 406 strbuf_release(&sb);
d668d16c
RS
407 strbuf_release(&err);
408 ref_transaction_free(transaction);
1e41229d 409 update_abort_safety_file();
d668d16c 410 return 0;
043a4492
RR
411}
412
75c961b7
JH
413void append_conflicts_hint(struct strbuf *msgbuf)
414{
415 int i;
416
261f315b
JH
417 strbuf_addch(msgbuf, '\n');
418 strbuf_commented_addf(msgbuf, "Conflicts:\n");
75c961b7
JH
419 for (i = 0; i < active_nr;) {
420 const struct cache_entry *ce = active_cache[i++];
421 if (ce_stage(ce)) {
261f315b 422 strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
75c961b7
JH
423 while (i < active_nr && !strcmp(ce->name,
424 active_cache[i]->name))
425 i++;
426 }
427 }
428}
429
043a4492
RR
430static int do_recursive_merge(struct commit *base, struct commit *next,
431 const char *base_label, const char *next_label,
48be4c62 432 struct object_id *head, struct strbuf *msgbuf,
043a4492
RR
433 struct replay_opts *opts)
434{
435 struct merge_options o;
436 struct tree *result, *next_tree, *base_tree, *head_tree;
03b86647 437 int clean;
03a4e260 438 char **xopt;
043a4492
RR
439 static struct lock_file index_lock;
440
bd588867
PW
441 if (hold_locked_index(&index_lock, LOCK_REPORT_ON_ERROR) < 0)
442 return -1;
043a4492
RR
443
444 read_cache();
445
446 init_merge_options(&o);
447 o.ancestor = base ? base_label : "(empty tree)";
448 o.branch1 = "HEAD";
449 o.branch2 = next ? next_label : "(empty tree)";
62fdb652
JS
450 if (is_rebase_i(opts))
451 o.buffer_output = 2;
043a4492
RR
452
453 head_tree = parse_tree_indirect(head);
454 next_tree = next ? next->tree : empty_tree();
455 base_tree = base ? base->tree : empty_tree();
456
457 for (xopt = opts->xopts; xopt != opts->xopts + opts->xopts_nr; xopt++)
458 parse_merge_opt(&o, *xopt);
459
460 clean = merge_trees(&o,
461 head_tree,
462 next_tree, base_tree, &result);
62fdb652
JS
463 if (is_rebase_i(opts) && clean <= 0)
464 fputs(o.obuf.buf, stdout);
548009c0 465 strbuf_release(&o.obuf);
f241ff0d
JS
466 if (clean < 0)
467 return clean;
043a4492
RR
468
469 if (active_cache_changed &&
03b86647 470 write_locked_index(&the_index, &index_lock, COMMIT_LOCK))
66f5f6dc
ÆAB
471 /*
472 * TRANSLATORS: %s will be "revert", "cherry-pick" or
84583957
JS
473 * "rebase -i".
474 */
c527b55e 475 return error(_("%s: Unable to write new index file"),
c28cbc5e 476 _(action_name(opts)));
043a4492
RR
477 rollback_lock_file(&index_lock);
478
5ed75e2a 479 if (opts->signoff)
bab4d109 480 append_signoff(msgbuf, 0, 0);
5ed75e2a 481
75c961b7
JH
482 if (!clean)
483 append_conflicts_hint(msgbuf);
043a4492
RR
484
485 return !clean;
486}
487
b27cfb0d
NH
488static int is_index_unchanged(void)
489{
33d66df3 490 struct object_id head_oid;
b27cfb0d
NH
491 struct commit *head_commit;
492
49e61479 493 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL))
93b3df6f 494 return error(_("could not resolve HEAD commit\n"));
b27cfb0d 495
bc83266a 496 head_commit = lookup_commit(&head_oid);
4b580061
NH
497
498 /*
499 * If head_commit is NULL, check_commit, called from
500 * lookup_commit, would have indicated that head_commit is not
501 * a commit object already. parse_commit() will return failure
502 * without further complaints in such a case. Otherwise, if
503 * the commit is invalid, parse_commit() will complain. So
504 * there is nothing for us to say here. Just return failure.
505 */
506 if (parse_commit(head_commit))
507 return -1;
b27cfb0d
NH
508
509 if (!active_cache_tree)
510 active_cache_tree = cache_tree();
511
512 if (!cache_tree_fully_valid(active_cache_tree))
d0cfc3e8 513 if (cache_tree_update(&the_index, 0))
93b3df6f 514 return error(_("unable to update cache tree\n"));
b27cfb0d 515
e0a92804 516 return !oidcmp(&active_cache_tree->oid,
517 &head_commit->tree->object.oid);
b27cfb0d
NH
518}
519
0473f28a
JS
520static int write_author_script(const char *message)
521{
522 struct strbuf buf = STRBUF_INIT;
523 const char *eol;
524 int res;
525
526 for (;;)
527 if (!*message || starts_with(message, "\n")) {
528missing_author:
529 /* Missing 'author' line? */
530 unlink(rebase_path_author_script());
531 return 0;
532 } else if (skip_prefix(message, "author ", &message))
533 break;
534 else if ((eol = strchr(message, '\n')))
535 message = eol + 1;
536 else
537 goto missing_author;
538
539 strbuf_addstr(&buf, "GIT_AUTHOR_NAME='");
540 while (*message && *message != '\n' && *message != '\r')
541 if (skip_prefix(message, " <", &message))
542 break;
543 else if (*message != '\'')
544 strbuf_addch(&buf, *(message++));
545 else
546 strbuf_addf(&buf, "'\\\\%c'", *(message++));
547 strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='");
548 while (*message && *message != '\n' && *message != '\r')
549 if (skip_prefix(message, "> ", &message))
550 break;
551 else if (*message != '\'')
552 strbuf_addch(&buf, *(message++));
553 else
554 strbuf_addf(&buf, "'\\\\%c'", *(message++));
555 strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@");
556 while (*message && *message != '\n' && *message != '\r')
557 if (*message != '\'')
558 strbuf_addch(&buf, *(message++));
559 else
560 strbuf_addf(&buf, "'\\\\%c'", *(message++));
561 res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1);
562 strbuf_release(&buf);
563 return res;
564}
565
b5a67045 566/*
a2a20b0d
JS
567 * Read a list of environment variable assignments (such as the author-script
568 * file) into an environment block. Returns -1 on error, 0 otherwise.
b5a67045 569 */
a2a20b0d 570static int read_env_script(struct argv_array *env)
b5a67045
JS
571{
572 struct strbuf script = STRBUF_INIT;
573 int i, count = 0;
a2a20b0d 574 char *p, *p2;
b5a67045
JS
575
576 if (strbuf_read_file(&script, rebase_path_author_script(), 256) <= 0)
a2a20b0d 577 return -1;
b5a67045
JS
578
579 for (p = script.buf; *p; p++)
580 if (skip_prefix(p, "'\\\\''", (const char **)&p2))
581 strbuf_splice(&script, p - script.buf, p2 - p, "'", 1);
582 else if (*p == '\'')
583 strbuf_splice(&script, p-- - script.buf, 1, "", 0);
584 else if (*p == '\n') {
585 *p = '\0';
586 count++;
587 }
588
a2a20b0d
JS
589 for (i = 0, p = script.buf; i < count; i++) {
590 argv_array_push(env, p);
b5a67045
JS
591 p += strlen(p) + 1;
592 }
b5a67045 593
a2a20b0d 594 return 0;
b5a67045
JS
595}
596
791eb870
JS
597static const char staged_changes_advice[] =
598N_("you have staged changes in your working tree\n"
599"If these changes are meant to be squashed into the previous commit, run:\n"
600"\n"
601" git commit --amend %s\n"
602"\n"
603"If they are meant to go into a new commit, run:\n"
604"\n"
605" git commit %s\n"
606"\n"
607"In both cases, once you're done, continue with:\n"
608"\n"
609" git rebase --continue\n");
610
789b3eff
JS
611#define ALLOW_EMPTY (1<<0)
612#define EDIT_MSG (1<<1)
613#define AMEND_MSG (1<<2)
614#define CLEANUP_MSG (1<<3)
b92ff6e8 615#define VERIFY_MSG (1<<4)
789b3eff 616
043a4492
RR
617/*
618 * If we are cherry-pick, and if the merge did not result in
619 * hand-editing, we will hit this commit and inherit the original
620 * author date and name.
b5a67045 621 *
043a4492
RR
622 * If we are revert, or if our cherry-pick results in a hand merge,
623 * we had better say that the current user is responsible for that.
b5a67045
JS
624 *
625 * An exception is when run_git_commit() is called during an
626 * interactive rebase: in that case, we will want to retain the
627 * author metadata.
043a4492 628 */
ac2b0e8f 629static int run_git_commit(const char *defmsg, struct replay_opts *opts,
789b3eff 630 unsigned int flags)
043a4492 631{
07d968ef 632 struct child_process cmd = CHILD_PROCESS_INIT;
17d65f03 633 const char *value;
b27cfb0d 634
07d968ef
JS
635 cmd.git_cmd = 1;
636
b5a67045 637 if (is_rebase_i(opts)) {
789b3eff 638 if (!(flags & EDIT_MSG)) {
9a757c49
JS
639 cmd.stdout_to_stderr = 1;
640 cmd.err = -1;
641 }
642
07d968ef 643 if (read_env_script(&cmd.env_array)) {
a1c75762
JS
644 const char *gpg_opt = gpg_sign_opt_quoted(opts);
645
791eb870
JS
646 return error(_(staged_changes_advice),
647 gpg_opt, gpg_opt);
a1c75762 648 }
b5a67045
JS
649 }
650
07d968ef 651 argv_array_push(&cmd.args, "commit");
043a4492 652
b92ff6e8
JS
653 if (!(flags & VERIFY_MSG))
654 argv_array_push(&cmd.args, "-n");
789b3eff 655 if ((flags & AMEND_MSG))
07d968ef 656 argv_array_push(&cmd.args, "--amend");
3bdd5522 657 if (opts->gpg_sign)
07d968ef 658 argv_array_pushf(&cmd.args, "-S%s", opts->gpg_sign);
043a4492 659 if (opts->signoff)
07d968ef 660 argv_array_push(&cmd.args, "-s");
b5a67045 661 if (defmsg)
07d968ef 662 argv_array_pushl(&cmd.args, "-F", defmsg, NULL);
789b3eff 663 if ((flags & CLEANUP_MSG))
07d968ef 664 argv_array_push(&cmd.args, "--cleanup=strip");
789b3eff 665 if ((flags & EDIT_MSG))
07d968ef 666 argv_array_push(&cmd.args, "-e");
789b3eff 667 else if (!(flags & CLEANUP_MSG) &&
0009426d 668 !opts->signoff && !opts->record_origin &&
b5a67045 669 git_config_get_value("commit.cleanup", &value))
07d968ef 670 argv_array_push(&cmd.args, "--cleanup=verbatim");
b27cfb0d 671
789b3eff 672 if ((flags & ALLOW_EMPTY))
07d968ef 673 argv_array_push(&cmd.args, "--allow-empty");
df478b74 674
4bee9584 675 if (opts->allow_empty_message)
07d968ef 676 argv_array_push(&cmd.args, "--allow-empty-message");
4bee9584 677
9a757c49
JS
678 if (cmd.err == -1) {
679 /* hide stderr on success */
680 struct strbuf buf = STRBUF_INIT;
681 int rc = pipe_command(&cmd,
682 NULL, 0,
683 /* stdout is already redirected */
684 NULL, 0,
685 &buf, 0);
686 if (rc)
687 fputs(buf.buf, stderr);
688 strbuf_release(&buf);
689 return rc;
690 }
b5a67045 691
07d968ef 692 return run_command(&cmd);
b27cfb0d
NH
693}
694
695static int is_original_commit_empty(struct commit *commit)
696{
092bbcdf 697 const struct object_id *ptree_oid;
b27cfb0d
NH
698
699 if (parse_commit(commit))
93b3df6f 700 return error(_("could not parse commit %s\n"),
f2fd0760 701 oid_to_hex(&commit->object.oid));
b27cfb0d
NH
702 if (commit->parents) {
703 struct commit *parent = commit->parents->item;
704 if (parse_commit(parent))
93b3df6f 705 return error(_("could not parse parent commit %s\n"),
f2fd0760 706 oid_to_hex(&parent->object.oid));
092bbcdf 707 ptree_oid = &parent->tree->object.oid;
b27cfb0d 708 } else {
092bbcdf 709 ptree_oid = &empty_tree_oid; /* commit is root */
043a4492 710 }
043a4492 711
092bbcdf 712 return !oidcmp(ptree_oid, &commit->tree->object.oid);
043a4492
RR
713}
714
ac2b0e8f
JH
715/*
716 * Do we run "git commit" with "--allow-empty"?
717 */
718static int allow_empty(struct replay_opts *opts, struct commit *commit)
719{
720 int index_unchanged, empty_commit;
721
722 /*
723 * Three cases:
724 *
725 * (1) we do not allow empty at all and error out.
726 *
727 * (2) we allow ones that were initially empty, but
728 * forbid the ones that become empty;
729 *
730 * (3) we allow both.
731 */
732 if (!opts->allow_empty)
733 return 0; /* let "git commit" barf as necessary */
734
735 index_unchanged = is_index_unchanged();
736 if (index_unchanged < 0)
737 return index_unchanged;
738 if (!index_unchanged)
739 return 0; /* we do not have to say --allow-empty */
740
741 if (opts->keep_redundant_commits)
742 return 1;
743
744 empty_commit = is_original_commit_empty(commit);
745 if (empty_commit < 0)
746 return empty_commit;
747 if (!empty_commit)
748 return 0;
749 else
750 return 1;
751}
752
25c43667
JS
753/*
754 * Note that ordering matters in this enum. Not only must it match the mapping
755 * below, it is also divided into several sections that matter. When adding
756 * new commands, make sure you add it in the right section.
757 */
004fefa7 758enum todo_command {
25c43667 759 /* commands that handle commits */
004fefa7 760 TODO_PICK = 0,
25c43667 761 TODO_REVERT,
56dc3ab0 762 TODO_EDIT,
04efc8b5 763 TODO_REWORD,
6e98de72
JS
764 TODO_FIXUP,
765 TODO_SQUASH,
311af526
JS
766 /* commands that do something else than handling a single commit */
767 TODO_EXEC,
25c43667 768 /* commands that do nothing but are counted for reporting progress */
b3fdd581 769 TODO_NOOP,
ac191470
JS
770 TODO_DROP,
771 /* comments (not counted for reporting progress) */
772 TODO_COMMENT
004fefa7
JS
773};
774
414697a9
JS
775static struct {
776 char c;
777 const char *str;
778} todo_command_info[] = {
779 { 'p', "pick" },
780 { 0, "revert" },
781 { 'e', "edit" },
04efc8b5 782 { 'r', "reword" },
414697a9
JS
783 { 'f', "fixup" },
784 { 's', "squash" },
785 { 'x', "exec" },
b3fdd581 786 { 0, "noop" },
ac191470
JS
787 { 'd', "drop" },
788 { 0, NULL }
004fefa7
JS
789};
790
791static const char *command_to_string(const enum todo_command command)
792{
ac191470 793 if (command < TODO_COMMENT)
414697a9 794 return todo_command_info[command].str;
004fefa7
JS
795 die("Unknown command: %d", command);
796}
797
25c43667
JS
798static int is_noop(const enum todo_command command)
799{
b3fdd581 800 return TODO_NOOP <= command;
25c43667 801}
004fefa7 802
6e98de72
JS
803static int is_fixup(enum todo_command command)
804{
805 return command == TODO_FIXUP || command == TODO_SQUASH;
806}
807
808static int update_squash_messages(enum todo_command command,
809 struct commit *commit, struct replay_opts *opts)
810{
811 struct strbuf buf = STRBUF_INIT;
812 int count, res;
813 const char *message, *body;
814
815 if (file_exists(rebase_path_squash_msg())) {
816 struct strbuf header = STRBUF_INIT;
817 char *eol, *p;
818
819 if (strbuf_read_file(&buf, rebase_path_squash_msg(), 2048) <= 0)
820 return error(_("could not read '%s'"),
821 rebase_path_squash_msg());
822
823 p = buf.buf + 1;
824 eol = strchrnul(buf.buf, '\n');
825 if (buf.buf[0] != comment_line_char ||
826 (p += strcspn(p, "0123456789\n")) == eol)
827 return error(_("unexpected 1st line of squash message:"
828 "\n\n\t%.*s"),
829 (int)(eol - buf.buf), buf.buf);
830 count = strtol(p, NULL, 10);
831
832 if (count < 1)
833 return error(_("invalid 1st line of squash message:\n"
834 "\n\t%.*s"),
835 (int)(eol - buf.buf), buf.buf);
836
837 strbuf_addf(&header, "%c ", comment_line_char);
838 strbuf_addf(&header,
839 _("This is a combination of %d commits."), ++count);
840 strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len);
841 strbuf_release(&header);
842 } else {
33d66df3 843 struct object_id head;
6e98de72
JS
844 struct commit *head_commit;
845 const char *head_message, *body;
846
33d66df3 847 if (get_oid("HEAD", &head))
6e98de72 848 return error(_("need a HEAD to fixup"));
bc83266a 849 if (!(head_commit = lookup_commit_reference(&head)))
6e98de72
JS
850 return error(_("could not read HEAD"));
851 if (!(head_message = get_commit_buffer(head_commit, NULL)))
852 return error(_("could not read HEAD's commit message"));
853
854 find_commit_subject(head_message, &body);
855 if (write_message(body, strlen(body),
856 rebase_path_fixup_msg(), 0)) {
857 unuse_commit_buffer(head_commit, head_message);
858 return error(_("cannot write '%s'"),
859 rebase_path_fixup_msg());
860 }
861
862 count = 2;
863 strbuf_addf(&buf, "%c ", comment_line_char);
864 strbuf_addf(&buf, _("This is a combination of %d commits."),
865 count);
866 strbuf_addf(&buf, "\n%c ", comment_line_char);
867 strbuf_addstr(&buf, _("This is the 1st commit message:"));
868 strbuf_addstr(&buf, "\n\n");
869 strbuf_addstr(&buf, body);
870
871 unuse_commit_buffer(head_commit, head_message);
872 }
873
874 if (!(message = get_commit_buffer(commit, NULL)))
875 return error(_("could not read commit message of %s"),
876 oid_to_hex(&commit->object.oid));
877 find_commit_subject(message, &body);
878
879 if (command == TODO_SQUASH) {
880 unlink(rebase_path_fixup_msg());
881 strbuf_addf(&buf, "\n%c ", comment_line_char);
882 strbuf_addf(&buf, _("This is the commit message #%d:"), count);
883 strbuf_addstr(&buf, "\n\n");
884 strbuf_addstr(&buf, body);
885 } else if (command == TODO_FIXUP) {
886 strbuf_addf(&buf, "\n%c ", comment_line_char);
887 strbuf_addf(&buf, _("The commit message #%d will be skipped:"),
888 count);
889 strbuf_addstr(&buf, "\n\n");
890 strbuf_add_commented_lines(&buf, body, strlen(body));
891 } else
892 return error(_("unknown command: %d"), command);
893 unuse_commit_buffer(commit, message);
894
895 res = write_message(buf.buf, buf.len, rebase_path_squash_msg(), 0);
896 strbuf_release(&buf);
897 return res;
898}
899
25cb8df9
JS
900static void flush_rewritten_pending(void) {
901 struct strbuf buf = STRBUF_INIT;
092bbcdf 902 struct object_id newoid;
25cb8df9
JS
903 FILE *out;
904
092bbcdf 905 if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 &&
906 !get_oid("HEAD", &newoid) &&
e9d983f1 907 (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
25cb8df9
JS
908 char *bol = buf.buf, *eol;
909
910 while (*bol) {
911 eol = strchrnul(bol, '\n');
912 fprintf(out, "%.*s %s\n", (int)(eol - bol),
092bbcdf 913 bol, oid_to_hex(&newoid));
25cb8df9
JS
914 if (!*eol)
915 break;
916 bol = eol + 1;
917 }
918 fclose(out);
919 unlink(rebase_path_rewritten_pending());
920 }
921 strbuf_release(&buf);
922}
923
924static void record_in_rewritten(struct object_id *oid,
925 enum todo_command next_command) {
e9d983f1 926 FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a");
25cb8df9
JS
927
928 if (!out)
929 return;
930
931 fprintf(out, "%s\n", oid_to_hex(oid));
932 fclose(out);
933
934 if (!is_fixup(next_command))
935 flush_rewritten_pending();
936}
937
004fefa7 938static int do_pick_commit(enum todo_command command, struct commit *commit,
6e98de72 939 struct replay_opts *opts, int final_fixup)
043a4492 940{
789b3eff
JS
941 unsigned int flags = opts->edit ? EDIT_MSG : 0;
942 const char *msg_file = opts->edit ? NULL : git_path_merge_msg();
ace976b2 943 struct object_id head;
043a4492
RR
944 struct commit *base, *next, *parent;
945 const char *base_label, *next_label;
d74a4e57 946 struct commit_message msg = { NULL, NULL, NULL, NULL };
043a4492 947 struct strbuf msgbuf = STRBUF_INIT;
789b3eff 948 int res, unborn = 0, allow;
043a4492
RR
949
950 if (opts->no_commit) {
951 /*
952 * We do not intend to commit immediately. We just want to
953 * merge the differences in, so let's compute the tree
954 * that represents the "current" state for merge-recursive
955 * to work on.
956 */
ace976b2 957 if (write_cache_as_tree(head.hash, 0, NULL))
93b3df6f 958 return error(_("your index file is unmerged."));
043a4492 959 } else {
ace976b2 960 unborn = get_oid("HEAD", &head);
334ae397 961 if (unborn)
ace976b2 962 oidcpy(&head, &empty_tree_oid);
02f2f56b
BW
963 if (index_differs_from(unborn ? EMPTY_TREE_SHA1_HEX : "HEAD",
964 NULL, 0))
043a4492
RR
965 return error_dirty_index(opts);
966 }
967 discard_cache();
968
637666c8 969 if (!commit->parents)
043a4492 970 parent = NULL;
043a4492
RR
971 else if (commit->parents->next) {
972 /* Reverting or cherry-picking a merge commit */
973 int cnt;
974 struct commit_list *p;
975
976 if (!opts->mainline)
93b3df6f 977 return error(_("commit %s is a merge but no -m option was given."),
f2fd0760 978 oid_to_hex(&commit->object.oid));
043a4492
RR
979
980 for (cnt = 1, p = commit->parents;
981 cnt != opts->mainline && p;
982 cnt++)
983 p = p->next;
984 if (cnt != opts->mainline || !p)
93b3df6f 985 return error(_("commit %s does not have parent %d"),
f2fd0760 986 oid_to_hex(&commit->object.oid), opts->mainline);
043a4492
RR
987 parent = p->item;
988 } else if (0 < opts->mainline)
93b3df6f 989 return error(_("mainline was specified but commit %s is not a merge."),
f2fd0760 990 oid_to_hex(&commit->object.oid));
043a4492
RR
991 else
992 parent = commit->parents->item;
993
bcbb68be
JS
994 if (get_message(commit, &msg) != 0)
995 return error(_("cannot get commit message for %s"),
996 oid_to_hex(&commit->object.oid));
997
6e98de72 998 if (opts->allow_ff && !is_fixup(command) &&
ace976b2 999 ((parent && !oidcmp(&parent->object.oid, &head)) ||
bcbb68be
JS
1000 (!parent && unborn))) {
1001 if (is_rebase_i(opts))
1002 write_author_script(msg.message);
ace976b2 1003 res = fast_forward_to(&commit->object.oid, &head, unborn,
bcbb68be
JS
1004 opts);
1005 if (res || command != TODO_REWORD)
1006 goto leave;
789b3eff 1007 flags |= EDIT_MSG | AMEND_MSG;
b92ff6e8
JS
1008 if (command == TODO_REWORD)
1009 flags |= VERIFY_MSG;
bcbb68be
JS
1010 msg_file = NULL;
1011 goto fast_forward_edit;
1012 }
043a4492 1013 if (parent && parse_commit(parent) < 0)
004fefa7
JS
1014 /* TRANSLATORS: The first %s will be a "todo" command like
1015 "revert" or "pick", the second %s a SHA1. */
043a4492 1016 return error(_("%s: cannot parse parent commit %s"),
004fefa7
JS
1017 command_to_string(command),
1018 oid_to_hex(&parent->object.oid));
043a4492 1019
043a4492
RR
1020 /*
1021 * "commit" is an existing commit. We would want to apply
1022 * the difference it introduces since its first parent "prev"
1023 * on top of the current HEAD if we are cherry-pick. Or the
1024 * reverse of it if we are revert.
1025 */
1026
004fefa7 1027 if (command == TODO_REVERT) {
043a4492
RR
1028 base = commit;
1029 base_label = msg.label;
1030 next = parent;
1031 next_label = msg.parent_label;
1032 strbuf_addstr(&msgbuf, "Revert \"");
1033 strbuf_addstr(&msgbuf, msg.subject);
1034 strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit ");
f2fd0760 1035 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
043a4492
RR
1036
1037 if (commit->parents && commit->parents->next) {
1038 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
f2fd0760 1039 strbuf_addstr(&msgbuf, oid_to_hex(&parent->object.oid));
043a4492
RR
1040 }
1041 strbuf_addstr(&msgbuf, ".\n");
1042 } else {
1043 const char *p;
1044
1045 base = parent;
1046 base_label = msg.parent_label;
1047 next = commit;
1048 next_label = msg.label;
1049
23aa5142
JS
1050 /* Append the commit log message to msgbuf. */
1051 if (find_commit_subject(msg.message, &p))
1052 strbuf_addstr(&msgbuf, p);
043a4492
RR
1053
1054 if (opts->record_origin) {
44dc738a 1055 strbuf_complete_line(&msgbuf);
bab4d109 1056 if (!has_conforming_footer(&msgbuf, NULL, 0))
b971e04f 1057 strbuf_addch(&msgbuf, '\n');
cd650a4e 1058 strbuf_addstr(&msgbuf, cherry_picked_prefix);
f2fd0760 1059 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
043a4492
RR
1060 strbuf_addstr(&msgbuf, ")\n");
1061 }
1062 }
1063
04efc8b5 1064 if (command == TODO_REWORD)
b92ff6e8 1065 flags |= EDIT_MSG | VERIFY_MSG;
04efc8b5 1066 else if (is_fixup(command)) {
6e98de72
JS
1067 if (update_squash_messages(command, commit, opts))
1068 return -1;
789b3eff 1069 flags |= AMEND_MSG;
6e98de72
JS
1070 if (!final_fixup)
1071 msg_file = rebase_path_squash_msg();
1072 else if (file_exists(rebase_path_fixup_msg())) {
789b3eff 1073 flags |= CLEANUP_MSG;
6e98de72
JS
1074 msg_file = rebase_path_fixup_msg();
1075 } else {
ca03e067 1076 const char *dest = git_path_squash_msg();
6e98de72
JS
1077 unlink(dest);
1078 if (copy_file(dest, rebase_path_squash_msg(), 0666))
1079 return error(_("could not rename '%s' to '%s'"),
1080 rebase_path_squash_msg(), dest);
ca03e067 1081 unlink(git_path_merge_msg());
6e98de72 1082 msg_file = dest;
789b3eff 1083 flags |= EDIT_MSG;
6e98de72
JS
1084 }
1085 }
1086
0473f28a
JS
1087 if (is_rebase_i(opts) && write_author_script(msg.message) < 0)
1088 res = -1;
1089 else if (!opts->strategy || !strcmp(opts->strategy, "recursive") || command == TODO_REVERT) {
043a4492 1090 res = do_recursive_merge(base, next, base_label, next_label,
48be4c62 1091 &head, &msgbuf, opts);
f241ff0d
JS
1092 if (res < 0)
1093 return res;
75871495 1094 res |= write_message(msgbuf.buf, msgbuf.len,
f56fffef 1095 git_path_merge_msg(), 0);
043a4492
RR
1096 } else {
1097 struct commit_list *common = NULL;
1098 struct commit_list *remotes = NULL;
1099
75871495 1100 res = write_message(msgbuf.buf, msgbuf.len,
f56fffef 1101 git_path_merge_msg(), 0);
043a4492
RR
1102
1103 commit_list_insert(base, &common);
1104 commit_list_insert(next, &remotes);
03a4e260
JS
1105 res |= try_merge_command(opts->strategy,
1106 opts->xopts_nr, (const char **)opts->xopts,
ace976b2 1107 common, oid_to_hex(&head), remotes);
043a4492
RR
1108 free_commit_list(common);
1109 free_commit_list(remotes);
1110 }
452202c7 1111 strbuf_release(&msgbuf);
043a4492
RR
1112
1113 /*
1114 * If the merge was clean or if it failed due to conflict, we write
1115 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
1116 * However, if the merge did not even start, then we don't want to
1117 * write it at all.
1118 */
004fefa7 1119 if (command == TODO_PICK && !opts->no_commit && (res == 0 || res == 1) &&
ae077771 1120 update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL,
91774afc 1121 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
dbfad033 1122 res = -1;
004fefa7 1123 if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
ae077771 1124 update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL,
91774afc 1125 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
dbfad033 1126 res = -1;
043a4492
RR
1127
1128 if (res) {
004fefa7 1129 error(command == TODO_REVERT
043a4492
RR
1130 ? _("could not revert %s... %s")
1131 : _("could not apply %s... %s"),
39755964 1132 short_commit_name(commit), msg.subject);
ed727b19 1133 print_advice(res == 1, opts);
043a4492 1134 rerere(opts->allow_rerere_auto);
c8d1351d 1135 goto leave;
043a4492
RR
1136 }
1137
c8d1351d 1138 allow = allow_empty(opts, commit);
706728a3
FC
1139 if (allow < 0) {
1140 res = allow;
1141 goto leave;
789b3eff
JS
1142 } else if (allow)
1143 flags |= ALLOW_EMPTY;
c8d1351d 1144 if (!opts->no_commit)
bcbb68be 1145fast_forward_edit:
789b3eff 1146 res = run_git_commit(msg_file, opts, flags);
6e98de72
JS
1147
1148 if (!res && final_fixup) {
1149 unlink(rebase_path_fixup_msg());
1150 unlink(rebase_path_squash_msg());
1151 }
c8d1351d
FC
1152
1153leave:
d74a4e57 1154 free_message(commit, &msg);
1e41229d 1155 update_abort_safety_file();
043a4492
RR
1156
1157 return res;
1158}
1159
c3e8618c 1160static int prepare_revs(struct replay_opts *opts)
043a4492 1161{
a73e22e9
MZ
1162 /*
1163 * picking (but not reverting) ranges (but not individual revisions)
1164 * should be done in reverse
1165 */
1166 if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
043a4492
RR
1167 opts->revs->reverse ^= 1;
1168
1169 if (prepare_revision_walk(opts->revs))
c3e8618c 1170 return error(_("revision walk setup failed"));
043a4492
RR
1171
1172 if (!opts->revs->commits)
c3e8618c
JS
1173 return error(_("empty commit set passed"));
1174 return 0;
043a4492
RR
1175}
1176
0d9c6dc9 1177static int read_and_refresh_cache(struct replay_opts *opts)
043a4492
RR
1178{
1179 static struct lock_file index_lock;
1180 int index_fd = hold_locked_index(&index_lock, 0);
49fb937e
JS
1181 if (read_index_preload(&the_index, NULL) < 0) {
1182 rollback_lock_file(&index_lock);
0d9c6dc9 1183 return error(_("git %s: failed to read the index"),
c28cbc5e 1184 _(action_name(opts)));
49fb937e 1185 }
043a4492 1186 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
33c297aa 1187 if (the_index.cache_changed && index_fd >= 0) {
49fb937e 1188 if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK)) {
0d9c6dc9 1189 return error(_("git %s: failed to refresh the index"),
c28cbc5e 1190 _(action_name(opts)));
49fb937e 1191 }
043a4492
RR
1192 }
1193 rollback_lock_file(&index_lock);
0d9c6dc9 1194 return 0;
043a4492
RR
1195}
1196
004fefa7
JS
1197struct todo_item {
1198 enum todo_command command;
1199 struct commit *commit;
c22f7dfb
JS
1200 const char *arg;
1201 int arg_len;
004fefa7
JS
1202 size_t offset_in_buf;
1203};
1204
1205struct todo_list {
1206 struct strbuf buf;
1207 struct todo_item *items;
1208 int nr, alloc, current;
968492e4 1209 int done_nr, total_nr;
54fd3243 1210 struct stat_data stat;
004fefa7
JS
1211};
1212
1213#define TODO_LIST_INIT { STRBUF_INIT }
1214
1215static void todo_list_release(struct todo_list *todo_list)
043a4492 1216{
004fefa7 1217 strbuf_release(&todo_list->buf);
6a83d902 1218 FREE_AND_NULL(todo_list->items);
004fefa7
JS
1219 todo_list->nr = todo_list->alloc = 0;
1220}
043a4492 1221
004fefa7
JS
1222static struct todo_item *append_new_todo(struct todo_list *todo_list)
1223{
1224 ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
1225 return todo_list->items + todo_list->nr++;
043a4492
RR
1226}
1227
004fefa7 1228static int parse_insn_line(struct todo_item *item, const char *bol, char *eol)
043a4492 1229{
1e43ed98 1230 struct object_id commit_oid;
043a4492 1231 char *end_of_object_name;
004fefa7
JS
1232 int i, saved, status, padding;
1233
8f8550b3
JS
1234 /* left-trim */
1235 bol += strspn(bol, " \t");
1236
25c43667 1237 if (bol == eol || *bol == '\r' || *bol == comment_line_char) {
ac191470 1238 item->command = TODO_COMMENT;
25c43667
JS
1239 item->commit = NULL;
1240 item->arg = bol;
1241 item->arg_len = eol - bol;
1242 return 0;
1243 }
1244
ac191470 1245 for (i = 0; i < TODO_COMMENT; i++)
414697a9
JS
1246 if (skip_prefix(bol, todo_command_info[i].str, &bol)) {
1247 item->command = i;
1248 break;
1249 } else if (bol[1] == ' ' && *bol == todo_command_info[i].c) {
1250 bol++;
004fefa7
JS
1251 item->command = i;
1252 break;
1253 }
ac191470 1254 if (i >= TODO_COMMENT)
004fefa7 1255 return -1;
043a4492 1256
25c43667
JS
1257 if (item->command == TODO_NOOP) {
1258 item->commit = NULL;
1259 item->arg = bol;
1260 item->arg_len = eol - bol;
1261 return 0;
1262 }
1263
043a4492
RR
1264 /* Eat up extra spaces/ tabs before object name */
1265 padding = strspn(bol, " \t");
1266 if (!padding)
004fefa7 1267 return -1;
043a4492
RR
1268 bol += padding;
1269
311af526
JS
1270 if (item->command == TODO_EXEC) {
1271 item->arg = bol;
1272 item->arg_len = (int)(eol - bol);
1273 return 0;
1274 }
1275
004fefa7 1276 end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
043a4492
RR
1277 saved = *end_of_object_name;
1278 *end_of_object_name = '\0';
1e43ed98 1279 status = get_oid(bol, &commit_oid);
043a4492
RR
1280 *end_of_object_name = saved;
1281
c22f7dfb
JS
1282 item->arg = end_of_object_name + strspn(end_of_object_name, " \t");
1283 item->arg_len = (int)(eol - item->arg);
1284
043a4492 1285 if (status < 0)
004fefa7 1286 return -1;
043a4492 1287
bc83266a 1288 item->commit = lookup_commit_reference(&commit_oid);
004fefa7 1289 return !item->commit;
043a4492
RR
1290}
1291
004fefa7 1292static int parse_insn_buffer(char *buf, struct todo_list *todo_list)
043a4492 1293{
004fefa7
JS
1294 struct todo_item *item;
1295 char *p = buf, *next_p;
6e98de72 1296 int i, res = 0, fixup_okay = file_exists(rebase_path_done());
043a4492 1297
004fefa7 1298 for (i = 1; *p; i++, p = next_p) {
043a4492 1299 char *eol = strchrnul(p, '\n');
004fefa7
JS
1300
1301 next_p = *eol ? eol + 1 /* skip LF */ : eol;
1302
6307041d
JS
1303 if (p != eol && eol[-1] == '\r')
1304 eol--; /* strip Carriage Return */
1305
004fefa7
JS
1306 item = append_new_todo(todo_list);
1307 item->offset_in_buf = p - todo_list->buf.buf;
1308 if (parse_insn_line(item, p, eol)) {
93b3df6f 1309 res = error(_("invalid line %d: %.*s"),
004fefa7 1310 i, (int)(eol - p), p);
6e98de72 1311 item->command = TODO_NOOP;
004fefa7 1312 }
6e98de72
JS
1313
1314 if (fixup_okay)
1315 ; /* do nothing */
1316 else if (is_fixup(item->command))
1317 return error(_("cannot '%s' without a previous commit"),
1318 command_to_string(item->command));
1319 else if (!is_noop(item->command))
1320 fixup_okay = 1;
043a4492 1321 }
52865279 1322
004fefa7 1323 return res;
043a4492
RR
1324}
1325
968492e4
JS
1326static int count_commands(struct todo_list *todo_list)
1327{
1328 int count = 0, i;
1329
1330 for (i = 0; i < todo_list->nr; i++)
1331 if (todo_list->items[i].command != TODO_COMMENT)
1332 count++;
1333
1334 return count;
1335}
1336
004fefa7 1337static int read_populate_todo(struct todo_list *todo_list,
043a4492
RR
1338 struct replay_opts *opts)
1339{
54fd3243 1340 struct stat st;
c0246501 1341 const char *todo_file = get_todo_path(opts);
043a4492
RR
1342 int fd, res;
1343
004fefa7 1344 strbuf_reset(&todo_list->buf);
c0246501 1345 fd = open(todo_file, O_RDONLY);
043a4492 1346 if (fd < 0)
93b3df6f 1347 return error_errno(_("could not open '%s'"), todo_file);
004fefa7 1348 if (strbuf_read(&todo_list->buf, fd, 0) < 0) {
043a4492 1349 close(fd);
93b3df6f 1350 return error(_("could not read '%s'."), todo_file);
043a4492
RR
1351 }
1352 close(fd);
1353
54fd3243
SH
1354 res = stat(todo_file, &st);
1355 if (res)
1356 return error(_("could not stat '%s'"), todo_file);
1357 fill_stat_data(&todo_list->stat, &st);
1358
004fefa7 1359 res = parse_insn_buffer(todo_list->buf.buf, todo_list);
27fdbb96
JS
1360 if (res) {
1361 if (is_rebase_i(opts))
1362 return error(_("please fix this using "
1363 "'git rebase --edit-todo'."));
93b3df6f 1364 return error(_("unusable instruction sheet: '%s'"), todo_file);
27fdbb96 1365 }
2eeaf1b3 1366
52865279
JS
1367 if (!todo_list->nr &&
1368 (!is_rebase_i(opts) || !file_exists(rebase_path_done())))
1369 return error(_("no commits parsed."));
1370
2eeaf1b3 1371 if (!is_rebase_i(opts)) {
004fefa7
JS
1372 enum todo_command valid =
1373 opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
1374 int i;
1375
1376 for (i = 0; i < todo_list->nr; i++)
1377 if (valid == todo_list->items[i].command)
1378 continue;
1379 else if (valid == TODO_PICK)
93b3df6f 1380 return error(_("cannot cherry-pick during a revert."));
004fefa7 1381 else
93b3df6f 1382 return error(_("cannot revert during a cherry-pick."));
004fefa7
JS
1383 }
1384
968492e4
JS
1385 if (is_rebase_i(opts)) {
1386 struct todo_list done = TODO_LIST_INIT;
e9d983f1 1387 FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w");
968492e4
JS
1388
1389 if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 &&
1390 !parse_insn_buffer(done.buf.buf, &done))
1391 todo_list->done_nr = count_commands(&done);
1392 else
1393 todo_list->done_nr = 0;
1394
1395 todo_list->total_nr = todo_list->done_nr
1396 + count_commands(todo_list);
968492e4 1397 todo_list_release(&done);
ef80069a
JS
1398
1399 if (f) {
1400 fprintf(f, "%d\n", todo_list->total_nr);
1401 fclose(f);
1402 }
968492e4
JS
1403 }
1404
0ae42a03 1405 return 0;
043a4492
RR
1406}
1407
03a4e260
JS
1408static int git_config_string_dup(char **dest,
1409 const char *var, const char *value)
1410{
1411 if (!value)
1412 return config_error_nonbool(var);
1413 free(*dest);
1414 *dest = xstrdup(value);
1415 return 0;
1416}
1417
043a4492
RR
1418static int populate_opts_cb(const char *key, const char *value, void *data)
1419{
1420 struct replay_opts *opts = data;
1421 int error_flag = 1;
1422
1423 if (!value)
1424 error_flag = 0;
1425 else if (!strcmp(key, "options.no-commit"))
1426 opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
1427 else if (!strcmp(key, "options.edit"))
1428 opts->edit = git_config_bool_or_int(key, value, &error_flag);
1429 else if (!strcmp(key, "options.signoff"))
1430 opts->signoff = git_config_bool_or_int(key, value, &error_flag);
1431 else if (!strcmp(key, "options.record-origin"))
1432 opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
1433 else if (!strcmp(key, "options.allow-ff"))
1434 opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
1435 else if (!strcmp(key, "options.mainline"))
1436 opts->mainline = git_config_int(key, value);
1437 else if (!strcmp(key, "options.strategy"))
03a4e260 1438 git_config_string_dup(&opts->strategy, key, value);
3253553e 1439 else if (!strcmp(key, "options.gpg-sign"))
03a4e260 1440 git_config_string_dup(&opts->gpg_sign, key, value);
043a4492
RR
1441 else if (!strcmp(key, "options.strategy-option")) {
1442 ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
1443 opts->xopts[opts->xopts_nr++] = xstrdup(value);
8d8cb4b0
PW
1444 } else if (!strcmp(key, "options.allow-rerere-auto"))
1445 opts->allow_rerere_auto =
1446 git_config_bool_or_int(key, value, &error_flag) ?
1447 RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE;
1448 else
93b3df6f 1449 return error(_("invalid key: %s"), key);
043a4492
RR
1450
1451 if (!error_flag)
93b3df6f 1452 return error(_("invalid value for %s: %s"), key, value);
043a4492
RR
1453
1454 return 0;
1455}
1456
ca6c6b45
JS
1457static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf)
1458{
1459 int i;
1460
1461 strbuf_reset(buf);
1462 if (!read_oneliner(buf, rebase_path_strategy(), 0))
1463 return;
1464 opts->strategy = strbuf_detach(buf, NULL);
1465 if (!read_oneliner(buf, rebase_path_strategy_opts(), 0))
1466 return;
1467
1468 opts->xopts_nr = split_cmdline(buf->buf, (const char ***)&opts->xopts);
1469 for (i = 0; i < opts->xopts_nr; i++) {
1470 const char *arg = opts->xopts[i];
1471
1472 skip_prefix(arg, "--", &arg);
1473 opts->xopts[i] = xstrdup(arg);
1474 }
1475}
1476
5adf9bdc 1477static int read_populate_opts(struct replay_opts *opts)
043a4492 1478{
a1c75762
JS
1479 if (is_rebase_i(opts)) {
1480 struct strbuf buf = STRBUF_INIT;
1481
1482 if (read_oneliner(&buf, rebase_path_gpg_sign_opt(), 1)) {
1483 if (!starts_with(buf.buf, "-S"))
1484 strbuf_reset(&buf);
1485 else {
1486 free(opts->gpg_sign);
1487 opts->gpg_sign = xstrdup(buf.buf + 2);
1488 }
9b6d7a62
PW
1489 strbuf_reset(&buf);
1490 }
1491
1492 if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(), 1)) {
1493 if (!strcmp(buf.buf, "--rerere-autoupdate"))
1494 opts->allow_rerere_auto = RERERE_AUTOUPDATE;
1495 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
1496 opts->allow_rerere_auto = RERERE_NOAUTOUPDATE;
1497 strbuf_reset(&buf);
a1c75762 1498 }
a1c75762 1499
556907f1
JS
1500 if (file_exists(rebase_path_verbose()))
1501 opts->verbose = 1;
1502
ca6c6b45
JS
1503 read_strategy_opts(opts, &buf);
1504 strbuf_release(&buf);
1505
b5a67045 1506 return 0;
a1c75762 1507 }
b5a67045 1508
f932729c 1509 if (!file_exists(git_path_opts_file()))
0d00da7b
JS
1510 return 0;
1511 /*
1512 * The function git_parse_source(), called from git_config_from_file(),
1513 * may die() in case of a syntactically incorrect file. We do not care
1514 * about this case, though, because we wrote that file ourselves, so we
1515 * are pretty certain that it is syntactically correct.
1516 */
5adf9bdc 1517 if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
93b3df6f 1518 return error(_("malformed options sheet: '%s'"),
0d00da7b
JS
1519 git_path_opts_file());
1520 return 0;
043a4492
RR
1521}
1522
004fefa7 1523static int walk_revs_populate_todo(struct todo_list *todo_list,
043a4492
RR
1524 struct replay_opts *opts)
1525{
004fefa7
JS
1526 enum todo_command command = opts->action == REPLAY_PICK ?
1527 TODO_PICK : TODO_REVERT;
414697a9 1528 const char *command_string = todo_command_info[command].str;
043a4492 1529 struct commit *commit;
043a4492 1530
34b0528b
JS
1531 if (prepare_revs(opts))
1532 return -1;
043a4492 1533
004fefa7
JS
1534 while ((commit = get_revision(opts->revs))) {
1535 struct todo_item *item = append_new_todo(todo_list);
1536 const char *commit_buffer = get_commit_buffer(commit, NULL);
1537 const char *subject;
1538 int subject_len;
1539
1540 item->command = command;
1541 item->commit = commit;
c22f7dfb
JS
1542 item->arg = NULL;
1543 item->arg_len = 0;
004fefa7
JS
1544 item->offset_in_buf = todo_list->buf.len;
1545 subject_len = find_commit_subject(commit_buffer, &subject);
1546 strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
1547 short_commit_name(commit), subject_len, subject);
1548 unuse_commit_buffer(commit, commit_buffer);
1549 }
34b0528b 1550 return 0;
043a4492
RR
1551}
1552
1553static int create_seq_dir(void)
1554{
f932729c 1555 if (file_exists(git_path_seq_dir())) {
043a4492
RR
1556 error(_("a cherry-pick or revert is already in progress"));
1557 advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
1558 return -1;
a70d8f80 1559 } else if (mkdir(git_path_seq_dir(), 0777) < 0)
93b3df6f 1560 return error_errno(_("could not create sequencer directory '%s'"),
f6e82b0d 1561 git_path_seq_dir());
043a4492
RR
1562 return 0;
1563}
1564
311fd397 1565static int save_head(const char *head)
043a4492 1566{
043a4492
RR
1567 static struct lock_file head_lock;
1568 struct strbuf buf = STRBUF_INIT;
1569 int fd;
ed3f9a12 1570 ssize_t written;
043a4492 1571
311fd397
JS
1572 fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0);
1573 if (fd < 0) {
1574 rollback_lock_file(&head_lock);
93b3df6f 1575 return error_errno(_("could not lock HEAD"));
311fd397 1576 }
043a4492 1577 strbuf_addf(&buf, "%s\n", head);
ed3f9a12
RS
1578 written = write_in_full(fd, buf.buf, buf.len);
1579 strbuf_release(&buf);
1580 if (written < 0) {
311fd397 1581 rollback_lock_file(&head_lock);
93b3df6f 1582 return error_errno(_("could not write to '%s'"),
311fd397
JS
1583 git_path_head_file());
1584 }
1585 if (commit_lock_file(&head_lock) < 0) {
1586 rollback_lock_file(&head_lock);
93b3df6f 1587 return error(_("failed to finalize '%s'."), git_path_head_file());
311fd397
JS
1588 }
1589 return 0;
043a4492
RR
1590}
1591
1e41229d
SB
1592static int rollback_is_safe(void)
1593{
1594 struct strbuf sb = STRBUF_INIT;
1595 struct object_id expected_head, actual_head;
1596
1597 if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) {
1598 strbuf_trim(&sb);
1599 if (get_oid_hex(sb.buf, &expected_head)) {
1600 strbuf_release(&sb);
1601 die(_("could not parse %s"), git_path_abort_safety_file());
1602 }
1603 strbuf_release(&sb);
1604 }
1605 else if (errno == ENOENT)
1606 oidclr(&expected_head);
1607 else
1608 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
1609
1610 if (get_oid("HEAD", &actual_head))
1611 oidclr(&actual_head);
1612
1613 return !oidcmp(&actual_head, &expected_head);
1614}
1615
092bbcdf 1616static int reset_for_rollback(const struct object_id *oid)
043a4492
RR
1617{
1618 const char *argv[4]; /* reset --merge <arg> + NULL */
1e41229d 1619
043a4492
RR
1620 argv[0] = "reset";
1621 argv[1] = "--merge";
092bbcdf 1622 argv[2] = oid_to_hex(oid);
043a4492
RR
1623 argv[3] = NULL;
1624 return run_command_v_opt(argv, RUN_GIT_CMD);
1625}
1626
1627static int rollback_single_pick(void)
1628{
092bbcdf 1629 struct object_id head_oid;
043a4492 1630
f932729c
JK
1631 if (!file_exists(git_path_cherry_pick_head()) &&
1632 !file_exists(git_path_revert_head()))
043a4492 1633 return error(_("no cherry-pick or revert in progress"));
34c290a6 1634 if (read_ref_full("HEAD", 0, &head_oid, NULL))
043a4492 1635 return error(_("cannot resolve HEAD"));
092bbcdf 1636 if (is_null_oid(&head_oid))
043a4492 1637 return error(_("cannot abort from a branch yet to be born"));
092bbcdf 1638 return reset_for_rollback(&head_oid);
043a4492
RR
1639}
1640
2863584f 1641int sequencer_rollback(struct replay_opts *opts)
043a4492 1642{
043a4492 1643 FILE *f;
092bbcdf 1644 struct object_id oid;
043a4492 1645 struct strbuf buf = STRBUF_INIT;
092bbcdf 1646 const char *p;
043a4492 1647
f932729c 1648 f = fopen(git_path_head_file(), "r");
043a4492
RR
1649 if (!f && errno == ENOENT) {
1650 /*
1651 * There is no multiple-cherry-pick in progress.
1652 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
1653 * a single-cherry-pick in progress, abort that.
1654 */
1655 return rollback_single_pick();
1656 }
1657 if (!f)
f7ed1953 1658 return error_errno(_("cannot open '%s'"), git_path_head_file());
8f309aeb 1659 if (strbuf_getline_lf(&buf, f)) {
f7ed1953 1660 error(_("cannot read '%s': %s"), git_path_head_file(),
f932729c 1661 ferror(f) ? strerror(errno) : _("unexpected end of file"));
043a4492
RR
1662 fclose(f);
1663 goto fail;
1664 }
1665 fclose(f);
092bbcdf 1666 if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') {
043a4492 1667 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
f932729c 1668 git_path_head_file());
043a4492
RR
1669 goto fail;
1670 }
092bbcdf 1671 if (is_null_oid(&oid)) {
0f974e21
MG
1672 error(_("cannot abort from a branch yet to be born"));
1673 goto fail;
1674 }
1e41229d
SB
1675
1676 if (!rollback_is_safe()) {
1677 /* Do not error, just do not rollback */
1678 warning(_("You seem to have moved HEAD. "
1679 "Not rewinding, check your HEAD!"));
1680 } else
092bbcdf 1681 if (reset_for_rollback(&oid))
043a4492 1682 goto fail;
043a4492 1683 strbuf_release(&buf);
2863584f 1684 return sequencer_remove_state(opts);
043a4492
RR
1685fail:
1686 strbuf_release(&buf);
1687 return -1;
1688}
1689
004fefa7 1690static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
043a4492 1691{
043a4492 1692 static struct lock_file todo_lock;
004fefa7
JS
1693 const char *todo_path = get_todo_path(opts);
1694 int next = todo_list->current, offset, fd;
043a4492 1695
84583957
JS
1696 /*
1697 * rebase -i writes "git-rebase-todo" without the currently executing
1698 * command, appending it to "done" instead.
1699 */
1700 if (is_rebase_i(opts))
1701 next++;
1702
004fefa7 1703 fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
221675de 1704 if (fd < 0)
93b3df6f 1705 return error_errno(_("could not lock '%s'"), todo_path);
004fefa7
JS
1706 offset = next < todo_list->nr ?
1707 todo_list->items[next].offset_in_buf : todo_list->buf.len;
1708 if (write_in_full(fd, todo_list->buf.buf + offset,
1709 todo_list->buf.len - offset) < 0)
93b3df6f 1710 return error_errno(_("could not write to '%s'"), todo_path);
004fefa7 1711 if (commit_lock_file(&todo_lock) < 0)
93b3df6f 1712 return error(_("failed to finalize '%s'."), todo_path);
1df6df0c
JS
1713
1714 if (is_rebase_i(opts)) {
1715 const char *done_path = rebase_path_done();
1716 int fd = open(done_path, O_CREAT | O_WRONLY | O_APPEND, 0666);
1717 int prev_offset = !next ? 0 :
1718 todo_list->items[next - 1].offset_in_buf;
1719
1720 if (fd >= 0 && offset > prev_offset &&
1721 write_in_full(fd, todo_list->buf.buf + prev_offset,
1722 offset - prev_offset) < 0) {
1723 close(fd);
1724 return error_errno(_("could not write to '%s'"),
1725 done_path);
1726 }
1727 if (fd >= 0)
1728 close(fd);
1729 }
221675de 1730 return 0;
043a4492
RR
1731}
1732
88d5a271 1733static int save_opts(struct replay_opts *opts)
043a4492 1734{
f932729c 1735 const char *opts_file = git_path_opts_file();
88d5a271 1736 int res = 0;
043a4492
RR
1737
1738 if (opts->no_commit)
88d5a271 1739 res |= git_config_set_in_file_gently(opts_file, "options.no-commit", "true");
043a4492 1740 if (opts->edit)
88d5a271 1741 res |= git_config_set_in_file_gently(opts_file, "options.edit", "true");
043a4492 1742 if (opts->signoff)
88d5a271 1743 res |= git_config_set_in_file_gently(opts_file, "options.signoff", "true");
043a4492 1744 if (opts->record_origin)
88d5a271 1745 res |= git_config_set_in_file_gently(opts_file, "options.record-origin", "true");
043a4492 1746 if (opts->allow_ff)
88d5a271 1747 res |= git_config_set_in_file_gently(opts_file, "options.allow-ff", "true");
043a4492
RR
1748 if (opts->mainline) {
1749 struct strbuf buf = STRBUF_INIT;
1750 strbuf_addf(&buf, "%d", opts->mainline);
88d5a271 1751 res |= git_config_set_in_file_gently(opts_file, "options.mainline", buf.buf);
043a4492
RR
1752 strbuf_release(&buf);
1753 }
1754 if (opts->strategy)
88d5a271 1755 res |= git_config_set_in_file_gently(opts_file, "options.strategy", opts->strategy);
3253553e 1756 if (opts->gpg_sign)
88d5a271 1757 res |= git_config_set_in_file_gently(opts_file, "options.gpg-sign", opts->gpg_sign);
043a4492
RR
1758 if (opts->xopts) {
1759 int i;
1760 for (i = 0; i < opts->xopts_nr; i++)
88d5a271 1761 res |= git_config_set_multivar_in_file_gently(opts_file,
043a4492
RR
1762 "options.strategy-option",
1763 opts->xopts[i], "^$", 0);
1764 }
8d8cb4b0
PW
1765 if (opts->allow_rerere_auto)
1766 res |= git_config_set_in_file_gently(opts_file, "options.allow-rerere-auto",
1767 opts->allow_rerere_auto == RERERE_AUTOUPDATE ?
1768 "true" : "false");
88d5a271 1769 return res;
043a4492
RR
1770}
1771
56dc3ab0
JS
1772static int make_patch(struct commit *commit, struct replay_opts *opts)
1773{
1774 struct strbuf buf = STRBUF_INIT;
1775 struct rev_info log_tree_opt;
1776 const char *subject, *p;
1777 int res = 0;
1778
1779 p = short_commit_name(commit);
1780 if (write_message(p, strlen(p), rebase_path_stopped_sha(), 1) < 0)
1781 return -1;
1782
1783 strbuf_addf(&buf, "%s/patch", get_dir(opts));
1784 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
1785 init_revisions(&log_tree_opt, NULL);
1786 log_tree_opt.abbrev = 0;
1787 log_tree_opt.diff = 1;
1788 log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH;
1789 log_tree_opt.disable_stdin = 1;
1790 log_tree_opt.no_commit_id = 1;
1791 log_tree_opt.diffopt.file = fopen(buf.buf, "w");
1792 log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER;
1793 if (!log_tree_opt.diffopt.file)
1794 res |= error_errno(_("could not open '%s'"), buf.buf);
1795 else {
1796 res |= log_tree_commit(&log_tree_opt, commit);
1797 fclose(log_tree_opt.diffopt.file);
1798 }
1799 strbuf_reset(&buf);
1800
1801 strbuf_addf(&buf, "%s/message", get_dir(opts));
1802 if (!file_exists(buf.buf)) {
1803 const char *commit_buffer = get_commit_buffer(commit, NULL);
1804 find_commit_subject(commit_buffer, &subject);
1805 res |= write_message(subject, strlen(subject), buf.buf, 1);
1806 unuse_commit_buffer(commit, commit_buffer);
1807 }
1808 strbuf_release(&buf);
1809
1810 return res;
1811}
1812
1813static int intend_to_amend(void)
1814{
092bbcdf 1815 struct object_id head;
56dc3ab0
JS
1816 char *p;
1817
092bbcdf 1818 if (get_oid("HEAD", &head))
56dc3ab0
JS
1819 return error(_("cannot read HEAD"));
1820
092bbcdf 1821 p = oid_to_hex(&head);
56dc3ab0
JS
1822 return write_message(p, strlen(p), rebase_path_amend(), 1);
1823}
1824
1825static int error_with_patch(struct commit *commit,
1826 const char *subject, int subject_len,
1827 struct replay_opts *opts, int exit_code, int to_amend)
1828{
1829 if (make_patch(commit, opts))
1830 return -1;
1831
1832 if (to_amend) {
1833 if (intend_to_amend())
1834 return -1;
1835
1836 fprintf(stderr, "You can amend the commit now, with\n"
1837 "\n"
1838 " git commit --amend %s\n"
1839 "\n"
1840 "Once you are satisfied with your changes, run\n"
1841 "\n"
1842 " git rebase --continue\n", gpg_sign_opt_quoted(opts));
1843 } else if (exit_code)
1844 fprintf(stderr, "Could not apply %s... %.*s\n",
1845 short_commit_name(commit), subject_len, subject);
1846
1847 return exit_code;
1848}
1849
6e98de72
JS
1850static int error_failed_squash(struct commit *commit,
1851 struct replay_opts *opts, int subject_len, const char *subject)
1852{
1853 if (rename(rebase_path_squash_msg(), rebase_path_message()))
1854 return error(_("could not rename '%s' to '%s'"),
1855 rebase_path_squash_msg(), rebase_path_message());
1856 unlink(rebase_path_fixup_msg());
ca03e067
JK
1857 unlink(git_path_merge_msg());
1858 if (copy_file(git_path_merge_msg(), rebase_path_message(), 0666))
6e98de72 1859 return error(_("could not copy '%s' to '%s'"),
ca03e067 1860 rebase_path_message(), git_path_merge_msg());
6e98de72
JS
1861 return error_with_patch(commit, subject, subject_len, opts, 1, 0);
1862}
1863
311af526
JS
1864static int do_exec(const char *command_line)
1865{
09d7b6c6 1866 struct argv_array child_env = ARGV_ARRAY_INIT;
311af526
JS
1867 const char *child_argv[] = { NULL, NULL };
1868 int dirty, status;
1869
1870 fprintf(stderr, "Executing: %s\n", command_line);
1871 child_argv[0] = command_line;
09d7b6c6
JK
1872 argv_array_pushf(&child_env, "GIT_DIR=%s", absolute_path(get_git_dir()));
1873 status = run_command_v_opt_cd_env(child_argv, RUN_USING_SHELL, NULL,
1874 child_env.argv);
311af526
JS
1875
1876 /* force re-reading of the cache */
1877 if (discard_cache() < 0 || read_cache() < 0)
1878 return error(_("could not read index"));
1879
1880 dirty = require_clean_work_tree("rebase", NULL, 1, 1);
1881
1882 if (status) {
1883 warning(_("execution failed: %s\n%s"
1884 "You can fix the problem, and then run\n"
1885 "\n"
1886 " git rebase --continue\n"
1887 "\n"),
1888 command_line,
1889 dirty ? N_("and made changes to the index and/or the "
1890 "working tree\n") : "");
1891 if (status == 127)
1892 /* command not found */
1893 status = 1;
1894 } else if (dirty) {
1895 warning(_("execution succeeded: %s\nbut "
1896 "left changes to the index and/or the working tree\n"
1897 "Commit or stash your changes, and then run\n"
1898 "\n"
1899 " git rebase --continue\n"
1900 "\n"), command_line);
1901 status = 1;
1902 }
1903
09d7b6c6
JK
1904 argv_array_clear(&child_env);
1905
311af526
JS
1906 return status;
1907}
1908
6e98de72
JS
1909static int is_final_fixup(struct todo_list *todo_list)
1910{
1911 int i = todo_list->current;
1912
1913 if (!is_fixup(todo_list->items[i].command))
1914 return 0;
1915
1916 while (++i < todo_list->nr)
1917 if (is_fixup(todo_list->items[i].command))
1918 return 0;
1919 else if (!is_noop(todo_list->items[i].command))
1920 break;
1921 return 1;
1922}
1923
25cb8df9
JS
1924static enum todo_command peek_command(struct todo_list *todo_list, int offset)
1925{
1926 int i;
1927
1928 for (i = todo_list->current + offset; i < todo_list->nr; i++)
1929 if (!is_noop(todo_list->items[i].command))
1930 return todo_list->items[i].command;
1931
1932 return -1;
1933}
1934
796c7972
JS
1935static int apply_autostash(struct replay_opts *opts)
1936{
1937 struct strbuf stash_sha1 = STRBUF_INIT;
1938 struct child_process child = CHILD_PROCESS_INIT;
1939 int ret = 0;
1940
1941 if (!read_oneliner(&stash_sha1, rebase_path_autostash(), 1)) {
1942 strbuf_release(&stash_sha1);
1943 return 0;
1944 }
1945 strbuf_trim(&stash_sha1);
1946
1947 child.git_cmd = 1;
79a62269
PW
1948 child.no_stdout = 1;
1949 child.no_stderr = 1;
796c7972
JS
1950 argv_array_push(&child.args, "stash");
1951 argv_array_push(&child.args, "apply");
1952 argv_array_push(&child.args, stash_sha1.buf);
1953 if (!run_command(&child))
cdb866b3 1954 fprintf(stderr, _("Applied autostash.\n"));
796c7972
JS
1955 else {
1956 struct child_process store = CHILD_PROCESS_INIT;
1957
1958 store.git_cmd = 1;
1959 argv_array_push(&store.args, "stash");
1960 argv_array_push(&store.args, "store");
1961 argv_array_push(&store.args, "-m");
1962 argv_array_push(&store.args, "autostash");
1963 argv_array_push(&store.args, "-q");
1964 argv_array_push(&store.args, stash_sha1.buf);
1965 if (run_command(&store))
1966 ret = error(_("cannot store %s"), stash_sha1.buf);
1967 else
cdb866b3
JS
1968 fprintf(stderr,
1969 _("Applying autostash resulted in conflicts.\n"
1970 "Your changes are safe in the stash.\n"
1971 "You can run \"git stash pop\" or"
1972 " \"git stash drop\" at any time.\n"));
796c7972
JS
1973 }
1974
1975 strbuf_release(&stash_sha1);
1976 return ret;
1977}
1978
96e832a5
JS
1979static const char *reflog_message(struct replay_opts *opts,
1980 const char *sub_action, const char *fmt, ...)
1981{
1982 va_list ap;
1983 static struct strbuf buf = STRBUF_INIT;
1984
1985 va_start(ap, fmt);
1986 strbuf_reset(&buf);
1987 strbuf_addstr(&buf, action_name(opts));
1988 if (sub_action)
1989 strbuf_addf(&buf, " (%s)", sub_action);
1990 if (fmt) {
1991 strbuf_addstr(&buf, ": ");
1992 strbuf_vaddf(&buf, fmt, ap);
1993 }
1994 va_end(ap);
1995
1996 return buf.buf;
1997}
1998
004fefa7 1999static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts)
043a4492 2000{
56dc3ab0 2001 int res = 0;
043a4492
RR
2002
2003 setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
2004 if (opts->allow_ff)
2005 assert(!(opts->signoff || opts->no_commit ||
2006 opts->record_origin || opts->edit));
0d9c6dc9
JS
2007 if (read_and_refresh_cache(opts))
2008 return -1;
043a4492 2009
004fefa7
JS
2010 while (todo_list->current < todo_list->nr) {
2011 struct todo_item *item = todo_list->items + todo_list->current;
2012 if (save_todo(todo_list, opts))
221675de 2013 return -1;
6e98de72 2014 if (is_rebase_i(opts)) {
ef80069a
JS
2015 if (item->command != TODO_COMMENT) {
2016 FILE *f = fopen(rebase_path_msgnum(), "w");
2017
2018 todo_list->done_nr++;
2019
2020 if (f) {
2021 fprintf(f, "%d\n", todo_list->done_nr);
2022 fclose(f);
2023 }
968492e4 2024 fprintf(stderr, "Rebasing (%d/%d)%s",
ef80069a 2025 todo_list->done_nr,
968492e4
JS
2026 todo_list->total_nr,
2027 opts->verbose ? "\n" : "\r");
ef80069a 2028 }
6e98de72
JS
2029 unlink(rebase_path_message());
2030 unlink(rebase_path_author_script());
2031 unlink(rebase_path_stopped_sha());
2032 unlink(rebase_path_amend());
2033 }
2034 if (item->command <= TODO_SQUASH) {
8ab37ef2
JS
2035 if (is_rebase_i(opts))
2036 setenv("GIT_REFLOG_ACTION", reflog_message(opts,
2037 command_to_string(item->command), NULL),
2038 1);
25c43667 2039 res = do_pick_commit(item->command, item->commit,
6e98de72 2040 opts, is_final_fixup(todo_list));
9d7bf3cf
JS
2041 if (is_rebase_i(opts) && res < 0) {
2042 /* Reschedule */
2043 todo_list->current--;
2044 if (save_todo(todo_list, opts))
2045 return -1;
2046 }
56dc3ab0
JS
2047 if (item->command == TODO_EDIT) {
2048 struct commit *commit = item->commit;
2049 if (!res)
99429213 2050 fprintf(stderr,
a42e1b41 2051 _("Stopped at %s... %.*s\n"),
56dc3ab0
JS
2052 short_commit_name(commit),
2053 item->arg_len, item->arg);
2054 return error_with_patch(commit,
2055 item->arg, item->arg_len, opts, res,
2056 !res);
2057 }
25cb8df9
JS
2058 if (is_rebase_i(opts) && !res)
2059 record_in_rewritten(&item->commit->object.oid,
2060 peek_command(todo_list, 1));
6e98de72
JS
2061 if (res && is_fixup(item->command)) {
2062 if (res == 1)
2063 intend_to_amend();
2064 return error_failed_squash(item->commit, opts,
2065 item->arg_len, item->arg);
4a5146f9
JS
2066 } else if (res && is_rebase_i(opts))
2067 return res | error_with_patch(item->commit,
04efc8b5
JS
2068 item->arg, item->arg_len, opts, res,
2069 item->command == TODO_REWORD);
311af526
JS
2070 } else if (item->command == TODO_EXEC) {
2071 char *end_of_arg = (char *)(item->arg + item->arg_len);
2072 int saved = *end_of_arg;
54fd3243 2073 struct stat st;
311af526
JS
2074
2075 *end_of_arg = '\0';
2076 res = do_exec(item->arg);
2077 *end_of_arg = saved;
54fd3243
SH
2078
2079 /* Reread the todo file if it has changed. */
2080 if (res)
2081 ; /* fall through */
2082 else if (stat(get_todo_path(opts), &st))
2083 res = error_errno(_("could not stat '%s'"),
2084 get_todo_path(opts));
2085 else if (match_stat_data(&todo_list->stat, &st)) {
2086 todo_list_release(todo_list);
2087 if (read_populate_todo(todo_list, opts))
2088 res = -1; /* message was printed */
2089 /* `current` will be incremented below */
2090 todo_list->current = -1;
2091 }
56dc3ab0 2092 } else if (!is_noop(item->command))
25c43667
JS
2093 return error(_("unknown command %d"), item->command);
2094
004fefa7 2095 todo_list->current++;
043a4492
RR
2096 if (res)
2097 return res;
2098 }
2099
56dc3ab0 2100 if (is_rebase_i(opts)) {
4b83ce9f 2101 struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT;
25cb8df9 2102 struct stat st;
556907f1 2103
56dc3ab0
JS
2104 /* Stopped in the middle, as planned? */
2105 if (todo_list->current < todo_list->nr)
2106 return 0;
556907f1 2107
4b83ce9f
JS
2108 if (read_oneliner(&head_ref, rebase_path_head_name(), 0) &&
2109 starts_with(head_ref.buf, "refs/")) {
96e832a5 2110 const char *msg;
092bbcdf 2111 struct object_id head, orig;
4b83ce9f
JS
2112 int res;
2113
092bbcdf 2114 if (get_oid("HEAD", &head)) {
4b83ce9f
JS
2115 res = error(_("cannot read HEAD"));
2116cleanup_head_ref:
2117 strbuf_release(&head_ref);
2118 strbuf_release(&buf);
2119 return res;
2120 }
2121 if (!read_oneliner(&buf, rebase_path_orig_head(), 0) ||
092bbcdf 2122 get_oid_hex(buf.buf, &orig)) {
4b83ce9f
JS
2123 res = error(_("could not read orig-head"));
2124 goto cleanup_head_ref;
2125 }
4ab867b8 2126 strbuf_reset(&buf);
4b83ce9f
JS
2127 if (!read_oneliner(&buf, rebase_path_onto(), 0)) {
2128 res = error(_("could not read 'onto'"));
2129 goto cleanup_head_ref;
2130 }
96e832a5
JS
2131 msg = reflog_message(opts, "finish", "%s onto %s",
2132 head_ref.buf, buf.buf);
ae077771 2133 if (update_ref(msg, head_ref.buf, &head, &orig,
91774afc 2134 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) {
4b83ce9f
JS
2135 res = error(_("could not update %s"),
2136 head_ref.buf);
2137 goto cleanup_head_ref;
2138 }
96e832a5 2139 msg = reflog_message(opts, "finish", "returning to %s",
4b83ce9f 2140 head_ref.buf);
96e832a5 2141 if (create_symref("HEAD", head_ref.buf, msg)) {
4b83ce9f
JS
2142 res = error(_("could not update HEAD to %s"),
2143 head_ref.buf);
2144 goto cleanup_head_ref;
2145 }
2146 strbuf_reset(&buf);
2147 }
2148
556907f1
JS
2149 if (opts->verbose) {
2150 struct rev_info log_tree_opt;
2151 struct object_id orig, head;
2152
2153 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
2154 init_revisions(&log_tree_opt, NULL);
2155 log_tree_opt.diff = 1;
2156 log_tree_opt.diffopt.output_format =
2157 DIFF_FORMAT_DIFFSTAT;
2158 log_tree_opt.disable_stdin = 1;
2159
2160 if (read_oneliner(&buf, rebase_path_orig_head(), 0) &&
e82caf38 2161 !get_oid(buf.buf, &orig) &&
2162 !get_oid("HEAD", &head)) {
66f414f8
BW
2163 diff_tree_oid(&orig, &head, "",
2164 &log_tree_opt.diffopt);
556907f1
JS
2165 log_tree_diff_flush(&log_tree_opt);
2166 }
2167 }
25cb8df9
JS
2168 flush_rewritten_pending();
2169 if (!stat(rebase_path_rewritten_list(), &st) &&
2170 st.st_size > 0) {
2171 struct child_process child = CHILD_PROCESS_INIT;
79516045
JS
2172 const char *post_rewrite_hook =
2173 find_hook("post-rewrite");
25cb8df9
JS
2174
2175 child.in = open(rebase_path_rewritten_list(), O_RDONLY);
2176 child.git_cmd = 1;
2177 argv_array_push(&child.args, "notes");
2178 argv_array_push(&child.args, "copy");
2179 argv_array_push(&child.args, "--for-rewrite=rebase");
2180 /* we don't care if this copying failed */
2181 run_command(&child);
79516045
JS
2182
2183 if (post_rewrite_hook) {
2184 struct child_process hook = CHILD_PROCESS_INIT;
2185
2186 hook.in = open(rebase_path_rewritten_list(),
2187 O_RDONLY);
2188 hook.stdout_to_stderr = 1;
2189 argv_array_push(&hook.args, post_rewrite_hook);
2190 argv_array_push(&hook.args, "rebase");
2191 /* we don't care if this hook failed */
2192 run_command(&hook);
2193 }
25cb8df9 2194 }
796c7972 2195 apply_autostash(opts);
25cb8df9 2196
5da4966f
JS
2197 fprintf(stderr, "Successfully rebased and updated %s.\n",
2198 head_ref.buf);
2199
556907f1 2200 strbuf_release(&buf);
4b83ce9f 2201 strbuf_release(&head_ref);
56dc3ab0
JS
2202 }
2203
043a4492
RR
2204 /*
2205 * Sequence of picks finished successfully; cleanup by
2206 * removing the .git/sequencer directory
2207 */
2863584f 2208 return sequencer_remove_state(opts);
043a4492
RR
2209}
2210
2211static int continue_single_pick(void)
2212{
2213 const char *argv[] = { "commit", NULL };
2214
f932729c
JK
2215 if (!file_exists(git_path_cherry_pick_head()) &&
2216 !file_exists(git_path_revert_head()))
043a4492
RR
2217 return error(_("no cherry-pick or revert in progress"));
2218 return run_command_v_opt(argv, RUN_GIT_CMD);
2219}
2220
9d93ccd1
JS
2221static int commit_staged_changes(struct replay_opts *opts)
2222{
789b3eff 2223 unsigned int flags = ALLOW_EMPTY | EDIT_MSG;
9d93ccd1
JS
2224
2225 if (has_unstaged_changes(1))
2226 return error(_("cannot rebase: You have unstaged changes."));
52632209 2227 if (!has_uncommitted_changes(0)) {
ca03e067 2228 const char *cherry_pick_head = git_path_cherry_pick_head();
52632209
JS
2229
2230 if (file_exists(cherry_pick_head) && unlink(cherry_pick_head))
2231 return error(_("could not remove CHERRY_PICK_HEAD"));
9d93ccd1 2232 return 0;
52632209 2233 }
9d93ccd1
JS
2234
2235 if (file_exists(rebase_path_amend())) {
2236 struct strbuf rev = STRBUF_INIT;
092bbcdf 2237 struct object_id head, to_amend;
9d93ccd1 2238
092bbcdf 2239 if (get_oid("HEAD", &head))
9d93ccd1
JS
2240 return error(_("cannot amend non-existing commit"));
2241 if (!read_oneliner(&rev, rebase_path_amend(), 0))
2242 return error(_("invalid file: '%s'"), rebase_path_amend());
092bbcdf 2243 if (get_oid_hex(rev.buf, &to_amend))
9d93ccd1
JS
2244 return error(_("invalid contents: '%s'"),
2245 rebase_path_amend());
092bbcdf 2246 if (oidcmp(&head, &to_amend))
9d93ccd1
JS
2247 return error(_("\nYou have uncommitted changes in your "
2248 "working tree. Please, commit them\n"
2249 "first and then run 'git rebase "
2250 "--continue' again."));
2251
2252 strbuf_release(&rev);
789b3eff 2253 flags |= AMEND_MSG;
9d93ccd1
JS
2254 }
2255
789b3eff 2256 if (run_git_commit(rebase_path_message(), opts, flags))
9d93ccd1
JS
2257 return error(_("could not commit staged changes."));
2258 unlink(rebase_path_amend());
2259 return 0;
2260}
2261
2863584f 2262int sequencer_continue(struct replay_opts *opts)
043a4492 2263{
004fefa7
JS
2264 struct todo_list todo_list = TODO_LIST_INIT;
2265 int res;
043a4492 2266
2863584f
JS
2267 if (read_and_refresh_cache(opts))
2268 return -1;
2269
9d93ccd1
JS
2270 if (is_rebase_i(opts)) {
2271 if (commit_staged_changes(opts))
2272 return -1;
4258a6da 2273 } else if (!file_exists(get_todo_path(opts)))
043a4492 2274 return continue_single_pick();
004fefa7 2275 if (read_populate_opts(opts))
0ae42a03 2276 return -1;
004fefa7
JS
2277 if ((res = read_populate_todo(&todo_list, opts)))
2278 goto release_todo_list;
043a4492 2279
4258a6da
JS
2280 if (!is_rebase_i(opts)) {
2281 /* Verify that the conflict has been resolved */
2282 if (file_exists(git_path_cherry_pick_head()) ||
2283 file_exists(git_path_revert_head())) {
2284 res = continue_single_pick();
2285 if (res)
2286 goto release_todo_list;
2287 }
02f2f56b 2288 if (index_differs_from("HEAD", NULL, 0)) {
4258a6da 2289 res = error_dirty_index(opts);
004fefa7 2290 goto release_todo_list;
4258a6da
JS
2291 }
2292 todo_list.current++;
ca98c6d4
JS
2293 } else if (file_exists(rebase_path_stopped_sha())) {
2294 struct strbuf buf = STRBUF_INIT;
2295 struct object_id oid;
2296
2297 if (read_oneliner(&buf, rebase_path_stopped_sha(), 1) &&
e82caf38 2298 !get_oid_committish(buf.buf, &oid))
ca98c6d4
JS
2299 record_in_rewritten(&oid, peek_command(&todo_list, 0));
2300 strbuf_release(&buf);
043a4492 2301 }
4258a6da 2302
004fefa7
JS
2303 res = pick_commits(&todo_list, opts);
2304release_todo_list:
2305 todo_list_release(&todo_list);
2306 return res;
043a4492
RR
2307}
2308
2309static int single_pick(struct commit *cmit, struct replay_opts *opts)
2310{
2311 setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
004fefa7 2312 return do_pick_commit(opts->action == REPLAY_PICK ?
6e98de72 2313 TODO_PICK : TODO_REVERT, cmit, opts, 0);
043a4492
RR
2314}
2315
2316int sequencer_pick_revisions(struct replay_opts *opts)
2317{
004fefa7 2318 struct todo_list todo_list = TODO_LIST_INIT;
1e43ed98 2319 struct object_id oid;
004fefa7 2320 int i, res;
043a4492 2321
2863584f 2322 assert(opts->revs);
0d9c6dc9
JS
2323 if (read_and_refresh_cache(opts))
2324 return -1;
043a4492 2325
21246dbb 2326 for (i = 0; i < opts->revs->pending.nr; i++) {
1e43ed98 2327 struct object_id oid;
21246dbb
MV
2328 const char *name = opts->revs->pending.objects[i].name;
2329
2330 /* This happens when using --stdin. */
2331 if (!strlen(name))
2332 continue;
2333
1e43ed98 2334 if (!get_oid(name, &oid)) {
bc83266a 2335 if (!lookup_commit_reference_gently(&oid, 1)) {
1e43ed98 2336 enum object_type type = sha1_object_info(oid.hash, NULL);
b9b946d4
JS
2337 return error(_("%s: can't cherry-pick a %s"),
2338 name, typename(type));
7c0b0d8d 2339 }
21246dbb 2340 } else
b9b946d4 2341 return error(_("%s: bad revision"), name);
21246dbb
MV
2342 }
2343
043a4492
RR
2344 /*
2345 * If we were called as "git cherry-pick <commit>", just
2346 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
2347 * REVERT_HEAD, and don't touch the sequencer state.
2348 * This means it is possible to cherry-pick in the middle
2349 * of a cherry-pick sequence.
2350 */
2351 if (opts->revs->cmdline.nr == 1 &&
2352 opts->revs->cmdline.rev->whence == REV_CMD_REV &&
2353 opts->revs->no_walk &&
2354 !opts->revs->cmdline.rev->flags) {
2355 struct commit *cmit;
2356 if (prepare_revision_walk(opts->revs))
b9b946d4 2357 return error(_("revision walk setup failed"));
043a4492
RR
2358 cmit = get_revision(opts->revs);
2359 if (!cmit || get_revision(opts->revs))
b9b946d4 2360 return error("BUG: expected exactly one commit from walk");
043a4492
RR
2361 return single_pick(cmit, opts);
2362 }
2363
2364 /*
2365 * Start a new cherry-pick/ revert sequence; but
2366 * first, make sure that an existing one isn't in
2367 * progress
2368 */
2369
34b0528b
JS
2370 if (walk_revs_populate_todo(&todo_list, opts) ||
2371 create_seq_dir() < 0)
043a4492 2372 return -1;
1e43ed98 2373 if (get_oid("HEAD", &oid) && (opts->action == REPLAY_REVERT))
93b3df6f 2374 return error(_("can't revert as initial commit"));
1e43ed98 2375 if (save_head(oid_to_hex(&oid)))
311fd397 2376 return -1;
88d5a271
JS
2377 if (save_opts(opts))
2378 return -1;
1e41229d 2379 update_abort_safety_file();
004fefa7
JS
2380 res = pick_commits(&todo_list, opts);
2381 todo_list_release(&todo_list);
2382 return res;
043a4492 2383}
5ed75e2a 2384
bab4d109 2385void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag)
5ed75e2a 2386{
bab4d109 2387 unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
5ed75e2a 2388 struct strbuf sob = STRBUF_INIT;
bab4d109 2389 int has_footer;
5ed75e2a
MV
2390
2391 strbuf_addstr(&sob, sign_off_header);
2392 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
2393 getenv("GIT_COMMITTER_EMAIL")));
2394 strbuf_addch(&sob, '\n');
bab4d109 2395
44dc738a
JT
2396 if (!ignore_footer)
2397 strbuf_complete_line(msgbuf);
2398
bab4d109
BC
2399 /*
2400 * If the whole message buffer is equal to the sob, pretend that we
2401 * found a conforming footer with a matching sob
2402 */
2403 if (msgbuf->len - ignore_footer == sob.len &&
2404 !strncmp(msgbuf->buf, sob.buf, sob.len))
2405 has_footer = 3;
2406 else
2407 has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
2408
33f2f9ab
BC
2409 if (!has_footer) {
2410 const char *append_newlines = NULL;
2411 size_t len = msgbuf->len - ignore_footer;
2412
8c613fd5
BC
2413 if (!len) {
2414 /*
2415 * The buffer is completely empty. Leave foom for
2416 * the title and body to be filled in by the user.
2417 */
33f2f9ab 2418 append_newlines = "\n\n";
8c613fd5
BC
2419 } else if (len == 1) {
2420 /*
2421 * Buffer contains a single newline. Add another
2422 * so that we leave room for the title and body.
2423 */
2424 append_newlines = "\n";
2425 } else if (msgbuf->buf[len - 2] != '\n') {
2426 /*
2427 * Buffer ends with a single newline. Add another
2428 * so that there is an empty line between the message
2429 * body and the sob.
2430 */
33f2f9ab 2431 append_newlines = "\n";
8c613fd5 2432 } /* else, the buffer already ends with two newlines. */
33f2f9ab
BC
2433
2434 if (append_newlines)
2435 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
2436 append_newlines, strlen(append_newlines));
5ed75e2a 2437 }
bab4d109
BC
2438
2439 if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
2440 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
2441 sob.buf, sob.len);
2442
5ed75e2a
MV
2443 strbuf_release(&sob);
2444}
62db5247
JS
2445
2446int sequencer_make_script(int keep_empty, FILE *out,
2447 int argc, const char **argv)
2448{
2449 char *format = NULL;
2450 struct pretty_print_context pp = {0};
2451 struct strbuf buf = STRBUF_INIT;
2452 struct rev_info revs;
2453 struct commit *commit;
2454
2455 init_revisions(&revs, NULL);
2456 revs.verbose_header = 1;
2457 revs.max_parents = 1;
2458 revs.cherry_pick = 1;
2459 revs.limited = 1;
2460 revs.reverse = 1;
2461 revs.right_only = 1;
2462 revs.sort_order = REV_SORT_IN_GRAPH_ORDER;
2463 revs.topo_order = 1;
2464
2465 revs.pretty_given = 1;
2466 git_config_get_string("rebase.instructionFormat", &format);
2467 if (!format || !*format) {
2468 free(format);
2469 format = xstrdup("%s");
2470 }
2471 get_commit_format(format, &revs);
2472 free(format);
2473 pp.fmt = revs.commit_format;
2474 pp.output_encoding = get_log_output_encoding();
2475
2476 if (setup_revisions(argc, argv, &revs, NULL) > 1)
2477 return error(_("make_script: unhandled options"));
2478
2479 if (prepare_revision_walk(&revs) < 0)
2480 return error(_("make_script: error preparing revisions"));
2481
2482 while ((commit = get_revision(&revs))) {
2483 strbuf_reset(&buf);
2484 if (!keep_empty && is_original_commit_empty(commit))
2485 strbuf_addf(&buf, "%c ", comment_line_char);
2486 strbuf_addf(&buf, "pick %s ", oid_to_hex(&commit->object.oid));
2487 pretty_print_commit(&pp, commit, &buf);
2488 strbuf_addch(&buf, '\n');
2489 fputs(buf.buf, out);
2490 }
2491 strbuf_release(&buf);
2492 return 0;
2493}
3546c8d9
JS
2494
2495
2496int transform_todo_ids(int shorten_ids)
2497{
2498 const char *todo_file = rebase_path_todo();
2499 struct todo_list todo_list = TODO_LIST_INIT;
2500 int fd, res, i;
2501 FILE *out;
2502
2503 strbuf_reset(&todo_list.buf);
2504 fd = open(todo_file, O_RDONLY);
2505 if (fd < 0)
2506 return error_errno(_("could not open '%s'"), todo_file);
2507 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2508 close(fd);
2509 return error(_("could not read '%s'."), todo_file);
2510 }
2511 close(fd);
2512
2513 res = parse_insn_buffer(todo_list.buf.buf, &todo_list);
2514 if (res) {
2515 todo_list_release(&todo_list);
2516 return error(_("unusable todo list: '%s'"), todo_file);
2517 }
2518
2519 out = fopen(todo_file, "w");
2520 if (!out) {
2521 todo_list_release(&todo_list);
2522 return error(_("unable to open '%s' for writing"), todo_file);
2523 }
2524 for (i = 0; i < todo_list.nr; i++) {
2525 struct todo_item *item = todo_list.items + i;
2526 int bol = item->offset_in_buf;
2527 const char *p = todo_list.buf.buf + bol;
2528 int eol = i + 1 < todo_list.nr ?
2529 todo_list.items[i + 1].offset_in_buf :
2530 todo_list.buf.len;
2531
2532 if (item->command >= TODO_EXEC && item->command != TODO_DROP)
2533 fwrite(p, eol - bol, 1, out);
2534 else {
2535 const char *id = shorten_ids ?
2536 short_commit_name(item->commit) :
2537 oid_to_hex(&item->commit->object.oid);
2538 int len;
2539
2540 p += strspn(p, " \t"); /* left-trim command */
2541 len = strcspn(p, " \t"); /* length of command */
2542
2543 fprintf(out, "%.*s %s %.*s\n",
2544 len, p, id, item->arg_len, item->arg);
2545 }
2546 }
2547 fclose(out);
2548 todo_list_release(&todo_list);
2549 return 0;
2550}
94399949
JS
2551
2552enum check_level {
2553 CHECK_IGNORE = 0, CHECK_WARN, CHECK_ERROR
2554};
2555
2556static enum check_level get_missing_commit_check_level(void)
2557{
2558 const char *value;
2559
2560 if (git_config_get_value("rebase.missingcommitscheck", &value) ||
2561 !strcasecmp("ignore", value))
2562 return CHECK_IGNORE;
2563 if (!strcasecmp("warn", value))
2564 return CHECK_WARN;
2565 if (!strcasecmp("error", value))
2566 return CHECK_ERROR;
dfab1eac 2567 warning(_("unrecognized setting %s for option "
94399949
JS
2568 "rebase.missingCommitsCheck. Ignoring."), value);
2569 return CHECK_IGNORE;
2570}
2571
2572/*
2573 * Check if the user dropped some commits by mistake
2574 * Behaviour determined by rebase.missingCommitsCheck.
2575 * Check if there is an unrecognized command or a
2576 * bad SHA-1 in a command.
2577 */
2578int check_todo_list(void)
2579{
2580 enum check_level check_level = get_missing_commit_check_level();
2581 struct strbuf todo_file = STRBUF_INIT;
2582 struct todo_list todo_list = TODO_LIST_INIT;
2583 struct strbuf missing = STRBUF_INIT;
2584 int advise_to_edit_todo = 0, res = 0, fd, i;
2585
2586 strbuf_addstr(&todo_file, rebase_path_todo());
2587 fd = open(todo_file.buf, O_RDONLY);
2588 if (fd < 0) {
2589 res = error_errno(_("could not open '%s'"), todo_file.buf);
2590 goto leave_check;
2591 }
2592 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2593 close(fd);
2594 res = error(_("could not read '%s'."), todo_file.buf);
2595 goto leave_check;
2596 }
2597 close(fd);
2598 advise_to_edit_todo = res =
2599 parse_insn_buffer(todo_list.buf.buf, &todo_list);
2600
2601 if (res || check_level == CHECK_IGNORE)
2602 goto leave_check;
2603
2604 /* Mark the commits in git-rebase-todo as seen */
2605 for (i = 0; i < todo_list.nr; i++) {
2606 struct commit *commit = todo_list.items[i].commit;
2607 if (commit)
2608 commit->util = (void *)1;
2609 }
2610
2611 todo_list_release(&todo_list);
2612 strbuf_addstr(&todo_file, ".backup");
2613 fd = open(todo_file.buf, O_RDONLY);
2614 if (fd < 0) {
2615 res = error_errno(_("could not open '%s'"), todo_file.buf);
2616 goto leave_check;
2617 }
2618 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2619 close(fd);
2620 res = error(_("could not read '%s'."), todo_file.buf);
2621 goto leave_check;
2622 }
2623 close(fd);
2624 strbuf_release(&todo_file);
2625 res = !!parse_insn_buffer(todo_list.buf.buf, &todo_list);
2626
2627 /* Find commits in git-rebase-todo.backup yet unseen */
2628 for (i = todo_list.nr - 1; i >= 0; i--) {
2629 struct todo_item *item = todo_list.items + i;
2630 struct commit *commit = item->commit;
2631 if (commit && !commit->util) {
2632 strbuf_addf(&missing, " - %s %.*s\n",
2633 short_commit_name(commit),
2634 item->arg_len, item->arg);
2635 commit->util = (void *)1;
2636 }
2637 }
2638
2639 /* Warn about missing commits */
2640 if (!missing.len)
2641 goto leave_check;
2642
2643 if (check_level == CHECK_ERROR)
2644 advise_to_edit_todo = res = 1;
2645
2646 fprintf(stderr,
2647 _("Warning: some commits may have been dropped accidentally.\n"
2648 "Dropped commits (newer to older):\n"));
2649
2650 /* Make the list user-friendly and display */
2651 fputs(missing.buf, stderr);
2652 strbuf_release(&missing);
2653
2654 fprintf(stderr, _("To avoid this message, use \"drop\" to "
2655 "explicitly remove a commit.\n\n"
2656 "Use 'git config rebase.missingCommitsCheck' to change "
2657 "the level of warnings.\n"
2658 "The possible behaviours are: ignore, warn, error.\n\n"));
2659
2660leave_check:
2661 strbuf_release(&todo_file);
2662 todo_list_release(&todo_list);
2663
2664 if (advise_to_edit_todo)
2665 fprintf(stderr,
2666 _("You can fix this with 'git rebase --edit-todo' "
2667 "and then run 'git rebase --continue'.\n"
2668 "Or you can abort the rebase with 'git rebase"
2669 " --abort'.\n"));
2670
2671 return res;
2672}
cdac2b01 2673
73646bfd
RS
2674static int rewrite_file(const char *path, const char *buf, size_t len)
2675{
2676 int rc = 0;
c8cee96e 2677 int fd = open(path, O_WRONLY | O_TRUNC);
73646bfd
RS
2678 if (fd < 0)
2679 return error_errno(_("could not open '%s' for writing"), path);
2680 if (write_in_full(fd, buf, len) < 0)
2681 rc = error_errno(_("could not write to '%s'"), path);
9360ec00
SR
2682 if (close(fd) && !rc)
2683 rc = error_errno(_("could not close '%s'"), path);
73646bfd
RS
2684 return rc;
2685}
2686
cdac2b01
JS
2687/* skip picking commits whose parents are unchanged */
2688int skip_unnecessary_picks(void)
2689{
2690 const char *todo_file = rebase_path_todo();
2691 struct strbuf buf = STRBUF_INIT;
2692 struct todo_list todo_list = TODO_LIST_INIT;
2693 struct object_id onto_oid, *oid = &onto_oid, *parent_oid;
2694 int fd, i;
2695
2696 if (!read_oneliner(&buf, rebase_path_onto(), 0))
2697 return error(_("could not read 'onto'"));
2698 if (get_oid(buf.buf, &onto_oid)) {
2699 strbuf_release(&buf);
2700 return error(_("need a HEAD to fixup"));
2701 }
2702 strbuf_release(&buf);
2703
2704 fd = open(todo_file, O_RDONLY);
2705 if (fd < 0) {
2706 return error_errno(_("could not open '%s'"), todo_file);
2707 }
2708 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2709 close(fd);
2710 return error(_("could not read '%s'."), todo_file);
2711 }
2712 close(fd);
2713 if (parse_insn_buffer(todo_list.buf.buf, &todo_list) < 0) {
2714 todo_list_release(&todo_list);
2715 return -1;
2716 }
2717
2718 for (i = 0; i < todo_list.nr; i++) {
2719 struct todo_item *item = todo_list.items + i;
2720
2721 if (item->command >= TODO_NOOP)
2722 continue;
2723 if (item->command != TODO_PICK)
2724 break;
2725 if (parse_commit(item->commit)) {
2726 todo_list_release(&todo_list);
2727 return error(_("could not parse commit '%s'"),
2728 oid_to_hex(&item->commit->object.oid));
2729 }
2730 if (!item->commit->parents)
2731 break; /* root commit */
2732 if (item->commit->parents->next)
2733 break; /* merge commit */
2734 parent_oid = &item->commit->parents->item->object.oid;
2735 if (hashcmp(parent_oid->hash, oid->hash))
2736 break;
2737 oid = &item->commit->object.oid;
2738 }
2739 if (i > 0) {
2740 int offset = i < todo_list.nr ?
2741 todo_list.items[i].offset_in_buf : todo_list.buf.len;
2742 const char *done_path = rebase_path_done();
2743
2744 fd = open(done_path, O_CREAT | O_WRONLY | O_APPEND, 0666);
2745 if (fd < 0) {
2746 error_errno(_("could not open '%s' for writing"),
2747 done_path);
2748 todo_list_release(&todo_list);
2749 return -1;
2750 }
2751 if (write_in_full(fd, todo_list.buf.buf, offset) < 0) {
2752 error_errno(_("could not write to '%s'"), done_path);
2753 todo_list_release(&todo_list);
2754 close(fd);
2755 return -1;
2756 }
2757 close(fd);
2758
73646bfd
RS
2759 if (rewrite_file(rebase_path_todo(), todo_list.buf.buf + offset,
2760 todo_list.buf.len - offset) < 0) {
cdac2b01 2761 todo_list_release(&todo_list);
cdac2b01
JS
2762 return -1;
2763 }
cdac2b01
JS
2764
2765 todo_list.current = i;
2766 if (is_fixup(peek_command(&todo_list, 0)))
2767 record_in_rewritten(oid, peek_command(&todo_list, 0));
2768 }
2769
2770 todo_list_release(&todo_list);
2771 printf("%s\n", oid_to_hex(oid));
2772
2773 return 0;
2774}
c44a4c65
JS
2775
2776struct subject2item_entry {
2777 struct hashmap_entry entry;
2778 int i;
2779 char subject[FLEX_ARRAY];
2780};
2781
2782static int subject2item_cmp(const void *fndata,
2783 const struct subject2item_entry *a,
2784 const struct subject2item_entry *b, const void *key)
2785{
2786 return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
2787}
2788
2789/*
2790 * Rearrange the todo list that has both "pick commit-id msg" and "pick
2791 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
2792 * after the former, and change "pick" to "fixup"/"squash".
2793 *
2794 * Note that if the config has specified a custom instruction format, each log
2795 * message will have to be retrieved from the commit (as the oneline in the
2796 * script cannot be trusted) in order to normalize the autosquash arrangement.
2797 */
2798int rearrange_squash(void)
2799{
2800 const char *todo_file = rebase_path_todo();
2801 struct todo_list todo_list = TODO_LIST_INIT;
2802 struct hashmap subject2item;
2803 int res = 0, rearranged = 0, *next, *tail, fd, i;
2804 char **subjects;
2805
2806 fd = open(todo_file, O_RDONLY);
2807 if (fd < 0)
2808 return error_errno(_("could not open '%s'"), todo_file);
2809 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2810 close(fd);
2811 return error(_("could not read '%s'."), todo_file);
2812 }
2813 close(fd);
2814 if (parse_insn_buffer(todo_list.buf.buf, &todo_list) < 0) {
2815 todo_list_release(&todo_list);
2816 return -1;
2817 }
2818
2819 /*
2820 * The hashmap maps onelines to the respective todo list index.
2821 *
2822 * If any items need to be rearranged, the next[i] value will indicate
2823 * which item was moved directly after the i'th.
2824 *
2825 * In that case, last[i] will indicate the index of the latest item to
2826 * be moved to appear after the i'th.
2827 */
2828 hashmap_init(&subject2item, (hashmap_cmp_fn) subject2item_cmp,
2829 NULL, todo_list.nr);
2830 ALLOC_ARRAY(next, todo_list.nr);
2831 ALLOC_ARRAY(tail, todo_list.nr);
2832 ALLOC_ARRAY(subjects, todo_list.nr);
2833 for (i = 0; i < todo_list.nr; i++) {
2834 struct strbuf buf = STRBUF_INIT;
2835 struct todo_item *item = todo_list.items + i;
2836 const char *commit_buffer, *subject, *p;
2837 size_t subject_len;
2838 int i2 = -1;
2839 struct subject2item_entry *entry;
2840
2841 next[i] = tail[i] = -1;
2842 if (item->command >= TODO_EXEC) {
2843 subjects[i] = NULL;
2844 continue;
2845 }
2846
2847 if (is_fixup(item->command)) {
2848 todo_list_release(&todo_list);
2849 return error(_("the script was already rearranged."));
2850 }
2851
2852 item->commit->util = item;
2853
2854 parse_commit(item->commit);
2855 commit_buffer = get_commit_buffer(item->commit, NULL);
2856 find_commit_subject(commit_buffer, &subject);
2857 format_subject(&buf, subject, " ");
2858 subject = subjects[i] = strbuf_detach(&buf, &subject_len);
2859 unuse_commit_buffer(item->commit, commit_buffer);
2860 if ((skip_prefix(subject, "fixup! ", &p) ||
2861 skip_prefix(subject, "squash! ", &p))) {
2862 struct commit *commit2;
2863
2864 for (;;) {
2865 while (isspace(*p))
2866 p++;
2867 if (!skip_prefix(p, "fixup! ", &p) &&
2868 !skip_prefix(p, "squash! ", &p))
2869 break;
2870 }
2871
2872 if ((entry = hashmap_get_from_hash(&subject2item,
2873 strhash(p), p)))
2874 /* found by title */
2875 i2 = entry->i;
2876 else if (!strchr(p, ' ') &&
2877 (commit2 =
2878 lookup_commit_reference_by_name(p)) &&
2879 commit2->util)
2880 /* found by commit name */
2881 i2 = (struct todo_item *)commit2->util
2882 - todo_list.items;
2883 else {
2884 /* copy can be a prefix of the commit subject */
2885 for (i2 = 0; i2 < i; i2++)
2886 if (subjects[i2] &&
2887 starts_with(subjects[i2], p))
2888 break;
2889 if (i2 == i)
2890 i2 = -1;
2891 }
2892 }
2893 if (i2 >= 0) {
2894 rearranged = 1;
2895 todo_list.items[i].command =
2896 starts_with(subject, "fixup!") ?
2897 TODO_FIXUP : TODO_SQUASH;
2898 if (next[i2] < 0)
2899 next[i2] = i;
2900 else
2901 next[tail[i2]] = i;
2902 tail[i2] = i;
2903 } else if (!hashmap_get_from_hash(&subject2item,
2904 strhash(subject), subject)) {
2905 FLEX_ALLOC_MEM(entry, subject, subject, subject_len);
2906 entry->i = i;
2907 hashmap_entry_init(entry, strhash(entry->subject));
2908 hashmap_put(&subject2item, entry);
2909 }
2910 }
2911
2912 if (rearranged) {
2913 struct strbuf buf = STRBUF_INIT;
2914
2915 for (i = 0; i < todo_list.nr; i++) {
2916 enum todo_command command = todo_list.items[i].command;
2917 int cur = i;
2918
2919 /*
2920 * Initially, all commands are 'pick's. If it is a
2921 * fixup or a squash now, we have rearranged it.
2922 */
2923 if (is_fixup(command))
2924 continue;
2925
2926 while (cur >= 0) {
2927 int offset = todo_list.items[cur].offset_in_buf;
2928 int end_offset = cur + 1 < todo_list.nr ?
2929 todo_list.items[cur + 1].offset_in_buf :
2930 todo_list.buf.len;
2931 char *bol = todo_list.buf.buf + offset;
2932 char *eol = todo_list.buf.buf + end_offset;
2933
2934 /* replace 'pick', by 'fixup' or 'squash' */
2935 command = todo_list.items[cur].command;
2936 if (is_fixup(command)) {
2937 strbuf_addstr(&buf,
2938 todo_command_info[command].str);
2939 bol += strcspn(bol, " \t");
2940 }
2941
2942 strbuf_add(&buf, bol, eol - bol);
2943
2944 cur = next[cur];
2945 }
2946 }
2947
73646bfd 2948 res = rewrite_file(todo_file, buf.buf, buf.len);
c44a4c65
JS
2949 strbuf_release(&buf);
2950 }
2951
2952 free(next);
2953 free(tail);
2954 for (i = 0; i < todo_list.nr; i++)
2955 free(subjects[i]);
2956 free(subjects);
2957 hashmap_free(&subject2item, 1);
2958 todo_list_release(&todo_list);
2959
2960 return res;
2961}