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