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