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