]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/rebase.c
fast-rebase: demonstrate merge-ort's API via new test-tool command
[thirdparty/git.git] / builtin / rebase.c
CommitLineData
55071ea2
PK
1/*
2 * "git rebase" builtin command
3 *
4 * Copyright (c) 2018 Pratik Karki
5 */
6
f8adbec9 7#define USE_THE_INDEX_COMPATIBILITY_MACROS
55071ea2
PK
8#include "builtin.h"
9#include "run-command.h"
10#include "exec-cmd.h"
dbbcd44f 11#include "strvec.h"
55071ea2 12#include "dir.h"
ac7f467f
PK
13#include "packfile.h"
14#include "refs.h"
15#include "quote.h"
16#include "config.h"
17#include "cache-tree.h"
18#include "unpack-trees.h"
19#include "lockfile.h"
f28d40d3 20#include "parse-options.h"
075bc852 21#include "commit.h"
bff014da 22#include "diff.h"
e0333e5c 23#include "wt-status.h"
9a48a615 24#include "revision.h"
e0720a38 25#include "commit-reach.h"
122420c2 26#include "rerere.h"
5aec9271 27#include "branch.h"
0609b741
PW
28#include "sequencer.h"
29#include "rebase-interactive.h"
b309a971 30#include "reset.h"
f28d40d3 31
f213f069 32#define DEFAULT_REFLOG_ACTION "rebase"
f28d40d3
PK
33
34static char const * const builtin_rebase_usage[] = {
414d924b
DL
35 N_("git rebase [-i] [options] [--exec <cmd>] "
36 "[--onto <newbase> | --keep-base] [<upstream> [<branch>]]"),
f28d40d3
PK
37 N_("git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] "
38 "--root [<branch>]"),
39 N_("git rebase --continue | --abort | --skip | --edit-todo"),
40 NULL
41};
ac7f467f 42
0609b741
PW
43static GIT_PATH_FUNC(path_squash_onto, "rebase-merge/squash-onto")
44static GIT_PATH_FUNC(path_interactive, "rebase-merge/interactive")
ac7f467f
PK
45static GIT_PATH_FUNC(apply_dir, "rebase-apply")
46static GIT_PATH_FUNC(merge_dir, "rebase-merge")
47
48enum rebase_type {
49 REBASE_UNSPECIFIED = -1,
10cdb9f3 50 REBASE_APPLY,
ac7f467f 51 REBASE_MERGE,
ac7f467f
PK
52 REBASE_PRESERVE_MERGES
53};
55071ea2 54
e98c4269
EN
55enum empty_type {
56 EMPTY_UNSPECIFIED = -1,
57 EMPTY_DROP,
58 EMPTY_KEEP,
59 EMPTY_ASK
60};
61
ac7f467f
PK
62struct rebase_options {
63 enum rebase_type type;
e98c4269 64 enum empty_type empty;
8295ed69 65 const char *default_backend;
ac7f467f
PK
66 const char *state_dir;
67 struct commit *upstream;
68 const char *upstream_name;
06e4775a 69 const char *upstream_arg;
ac7f467f
PK
70 char *head_name;
71 struct object_id orig_head;
72 struct commit *onto;
73 const char *onto_name;
74 const char *revisions;
e65123a7 75 const char *switch_to;
e1fac531 76 int root, root_with_onto;
9dba809a 77 struct object_id *squash_onto;
ac7f467f
PK
78 struct commit *restrict_revision;
79 int dont_finish_rebase;
b4c8eb02
PK
80 enum {
81 REBASE_NO_QUIET = 1<<0,
bff014da
PK
82 REBASE_VERBOSE = 1<<1,
83 REBASE_DIFFSTAT = 1<<2,
1ed9c14f 84 REBASE_FORCE = 1<<3,
c54dacb5 85 REBASE_INTERACTIVE_EXPLICIT = 1<<4,
b4c8eb02 86 } flags;
22f9b7f3 87 struct strvec git_am_opts;
f9573628 88 const char *action;
73d51ed0 89 int signoff;
ead98c11 90 int allow_rerere_autoupdate;
b9cbd295 91 int keep_empty;
051910a9 92 int autosquash;
12026a41 93 char *gpg_sign_opt;
6defce2b 94 int autostash;
7573cec5 95 int committer_date_is_author_date;
a3894aad 96 int ignore_date;
68e46d78 97 char *cmd;
9b3a448b 98 int allow_empty_message;
3c3588c7 99 int rebase_merges, rebase_cousins;
ba1905a5 100 char *strategy, *strategy_opts;
cda614e4 101 struct strbuf git_format_patch_opt;
d421afa0 102 int reschedule_failed_exec;
d03ebd41 103 int use_legacy_rebase;
0fcb4f6b 104 int reapply_cherry_picks;
ac7f467f
PK
105};
106
73fdc535
PW
107#define REBASE_OPTIONS_INIT { \
108 .type = REBASE_UNSPECIFIED, \
e98c4269 109 .empty = EMPTY_UNSPECIFIED, \
b9cbd295 110 .keep_empty = 1, \
2ac0d627 111 .default_backend = "merge", \
73fdc535 112 .flags = REBASE_NO_QUIET, \
22f9b7f3 113 .git_am_opts = STRVEC_INIT, \
73fdc535
PW
114 .git_format_patch_opt = STRBUF_INIT \
115 }
116
117static struct replay_opts get_replay_opts(const struct rebase_options *opts)
118{
119 struct replay_opts replay = REPLAY_OPTS_INIT;
120
121 replay.action = REPLAY_INTERACTIVE_REBASE;
122 sequencer_init_config(&replay);
123
124 replay.signoff = opts->signoff;
125 replay.allow_ff = !(opts->flags & REBASE_FORCE);
126 if (opts->allow_rerere_autoupdate)
127 replay.allow_rerere_auto = opts->allow_rerere_autoupdate;
128 replay.allow_empty = 1;
129 replay.allow_empty_message = opts->allow_empty_message;
e98c4269
EN
130 replay.drop_redundant_commits = (opts->empty == EMPTY_DROP);
131 replay.keep_redundant_commits = (opts->empty == EMPTY_KEEP);
55d2b6d7 132 replay.quiet = !(opts->flags & REBASE_NO_QUIET);
73fdc535
PW
133 replay.verbose = opts->flags & REBASE_VERBOSE;
134 replay.reschedule_failed_exec = opts->reschedule_failed_exec;
7573cec5
PW
135 replay.committer_date_is_author_date =
136 opts->committer_date_is_author_date;
a3894aad 137 replay.ignore_date = opts->ignore_date;
73fdc535
PW
138 replay.gpg_sign = xstrdup_or_null(opts->gpg_sign_opt);
139 replay.strategy = opts->strategy;
ef484add 140
0ea0847e 141 if (opts->strategy_opts)
4d924528 142 parse_strategy_opts(&replay, opts->strategy_opts);
73fdc535 143
a2dd67f1
AG
144 if (opts->squash_onto) {
145 oidcpy(&replay.squash_onto, opts->squash_onto);
146 replay.have_squash_onto = 1;
147 }
148
73fdc535
PW
149 return replay;
150}
151
297b1e17
PW
152enum action {
153 ACTION_NONE = 0,
154 ACTION_CONTINUE,
155 ACTION_SKIP,
156 ACTION_ABORT,
157 ACTION_QUIT,
158 ACTION_EDIT_TODO,
159 ACTION_SHOW_CURRENT_PATCH,
160 ACTION_SHORTEN_OIDS,
161 ACTION_EXPAND_OIDS,
162 ACTION_CHECK_TODO_LIST,
163 ACTION_REARRANGE_SQUASH,
164 ACTION_ADD_EXEC
165};
166
167static const char *action_names[] = { "undefined",
168 "continue",
169 "skip",
170 "abort",
171 "quit",
172 "edit_todo",
173 "show_current_patch" };
174
0609b741
PW
175static int add_exec_commands(struct string_list *commands)
176{
177 const char *todo_file = rebase_path_todo();
178 struct todo_list todo_list = TODO_LIST_INIT;
179 int res;
180
181 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
182 return error_errno(_("could not read '%s'."), todo_file);
183
184 if (todo_list_parse_insn_buffer(the_repository, todo_list.buf.buf,
185 &todo_list)) {
186 todo_list_release(&todo_list);
187 return error(_("unusable todo list: '%s'"), todo_file);
188 }
189
190 todo_list_add_exec_commands(&todo_list, commands);
191 res = todo_list_write_to_file(the_repository, &todo_list,
192 todo_file, NULL, NULL, -1, 0);
193 todo_list_release(&todo_list);
194
195 if (res)
196 return error_errno(_("could not write '%s'."), todo_file);
197 return 0;
198}
199
200static int rearrange_squash_in_todo_file(void)
201{
202 const char *todo_file = rebase_path_todo();
203 struct todo_list todo_list = TODO_LIST_INIT;
204 int res = 0;
205
206 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
207 return error_errno(_("could not read '%s'."), todo_file);
208 if (todo_list_parse_insn_buffer(the_repository, todo_list.buf.buf,
209 &todo_list)) {
210 todo_list_release(&todo_list);
211 return error(_("unusable todo list: '%s'"), todo_file);
212 }
213
214 res = todo_list_rearrange_squash(&todo_list);
215 if (!res)
216 res = todo_list_write_to_file(the_repository, &todo_list,
217 todo_file, NULL, NULL, -1, 0);
218
219 todo_list_release(&todo_list);
220
221 if (res)
222 return error_errno(_("could not write '%s'."), todo_file);
223 return 0;
224}
225
226static int transform_todo_file(unsigned flags)
227{
228 const char *todo_file = rebase_path_todo();
229 struct todo_list todo_list = TODO_LIST_INIT;
230 int res;
231
232 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
233 return error_errno(_("could not read '%s'."), todo_file);
234
235 if (todo_list_parse_insn_buffer(the_repository, todo_list.buf.buf,
236 &todo_list)) {
237 todo_list_release(&todo_list);
238 return error(_("unusable todo list: '%s'"), todo_file);
239 }
240
241 res = todo_list_write_to_file(the_repository, &todo_list, todo_file,
242 NULL, NULL, -1, flags);
243 todo_list_release(&todo_list);
244
245 if (res)
246 return error_errno(_("could not write '%s'."), todo_file);
247 return 0;
248}
249
250static int edit_todo_file(unsigned flags)
251{
252 const char *todo_file = rebase_path_todo();
253 struct todo_list todo_list = TODO_LIST_INIT,
254 new_todo = TODO_LIST_INIT;
255 int res = 0;
256
257 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
258 return error_errno(_("could not read '%s'."), todo_file);
259
260 strbuf_stripspace(&todo_list.buf, 1);
261 res = edit_todo_list(the_repository, &todo_list, &new_todo, NULL, NULL, flags);
262 if (!res && todo_list_write_to_file(the_repository, &new_todo, todo_file,
263 NULL, NULL, -1, flags & ~(TODO_LIST_SHORTEN_IDS)))
264 res = error_errno(_("could not write '%s'"), todo_file);
265
266 todo_list_release(&todo_list);
267 todo_list_release(&new_todo);
268
269 return res;
270}
271
7d3488eb 272static int get_revision_ranges(struct commit *upstream, struct commit *onto,
767a9c41 273 struct object_id *orig_head, const char **head_hash,
0609b741
PW
274 char **revisions, char **shortrevisions)
275{
7d3488eb
PW
276 struct commit *base_rev = upstream ? upstream : onto;
277 const char *shorthead;
0609b741 278
767a9c41 279 *head_hash = find_unique_abbrev(orig_head, GIT_MAX_HEXSZ);
7d3488eb
PW
280 *revisions = xstrfmt("%s...%s", oid_to_hex(&base_rev->object.oid),
281 *head_hash);
0609b741 282
767a9c41 283 shorthead = find_unique_abbrev(orig_head, DEFAULT_ABBREV);
0609b741
PW
284
285 if (upstream) {
286 const char *shortrev;
0609b741 287
7d3488eb
PW
288 shortrev = find_unique_abbrev(&base_rev->object.oid,
289 DEFAULT_ABBREV);
0609b741
PW
290
291 *shortrevisions = xstrfmt("%s..%s", shortrev, shorthead);
292 } else
293 *shortrevisions = xstrdup(shorthead);
294
295 return 0;
296}
297
298static int init_basic_state(struct replay_opts *opts, const char *head_name,
7d3488eb 299 struct commit *onto, const char *orig_head)
0609b741
PW
300{
301 FILE *interactive;
302
c44c2462
PW
303 if (!is_directory(merge_dir()) && mkdir_in_gitdir(merge_dir()))
304 return error_errno(_("could not create temporary %s"), merge_dir());
0609b741
PW
305
306 delete_reflog("REBASE_HEAD");
307
308 interactive = fopen(path_interactive(), "w");
309 if (!interactive)
310 return error_errno(_("could not mark as interactive"));
311 fclose(interactive);
312
313 return write_basic_state(opts, head_name, onto, orig_head);
314}
315
0ea0847e
PW
316static void split_exec_commands(const char *cmd, struct string_list *commands)
317{
318 if (cmd && *cmd) {
319 string_list_split(commands, cmd, '\n', -1);
320
321 /* rebase.c adds a new line to cmd after every command,
322 * so here the last command is always empty */
323 string_list_remove_empty_items(commands, 0);
324 }
325}
326
327static int do_interactive_rebase(struct rebase_options *opts, unsigned flags)
0609b741
PW
328{
329 int ret;
330 const char *head_hash = NULL;
331 char *revisions = NULL, *shortrevisions = NULL;
22f9b7f3 332 struct strvec make_script_args = STRVEC_INIT;
0609b741 333 struct todo_list todo_list = TODO_LIST_INIT;
0ea0847e
PW
334 struct replay_opts replay = get_replay_opts(opts);
335 struct string_list commands = STRING_LIST_INIT_DUP;
0609b741 336
767a9c41
AG
337 if (get_revision_ranges(opts->upstream, opts->onto, &opts->orig_head,
338 &head_hash, &revisions, &shortrevisions))
0609b741
PW
339 return -1;
340
460bc3ce
PW
341 if (init_basic_state(&replay,
342 opts->head_name ? opts->head_name : "detached HEAD",
343 opts->onto, head_hash)) {
0609b741
PW
344 free(revisions);
345 free(shortrevisions);
346
347 return -1;
348 }
349
0ea0847e 350 if (!opts->upstream && opts->squash_onto)
33898531 351 write_file(path_squash_onto(), "%s\n",
0ea0847e 352 oid_to_hex(opts->squash_onto));
0609b741 353
22f9b7f3 354 strvec_pushl(&make_script_args, "", revisions, NULL);
0ea0847e 355 if (opts->restrict_revision)
22f9b7f3 356 strvec_pushf(&make_script_args, "^%s",
f6d8942b 357 oid_to_hex(&opts->restrict_revision->object.oid));
0609b741
PW
358
359 ret = sequencer_make_script(the_repository, &todo_list.buf,
d70a9eb6 360 make_script_args.nr, make_script_args.v,
0609b741
PW
361 flags);
362
363 if (ret)
364 error(_("could not generate todo list"));
365 else {
366 discard_cache();
367 if (todo_list_parse_insn_buffer(the_repository, todo_list.buf.buf,
368 &todo_list))
369 BUG("unusable todo list");
370
0ea0847e
PW
371 split_exec_commands(opts->cmd, &commands);
372 ret = complete_action(the_repository, &replay, flags,
373 shortrevisions, opts->onto_name, opts->onto, head_hash,
374 &commands, opts->autosquash, &todo_list);
0609b741
PW
375 }
376
0ea0847e 377 string_list_clear(&commands, 0);
0609b741
PW
378 free(revisions);
379 free(shortrevisions);
380 todo_list_release(&todo_list);
22f9b7f3 381 strvec_clear(&make_script_args);
0609b741
PW
382
383 return ret;
384}
385
10cdb9f3 386static int run_sequencer_rebase(struct rebase_options *opts,
460bc3ce
PW
387 enum action command)
388{
389 unsigned flags = 0;
390 int abbreviate_commands = 0, ret = 0;
391
392 git_config_get_bool("rebase.abbreviatecommands", &abbreviate_commands);
393
b9cbd295 394 flags |= opts->keep_empty ? TODO_LIST_KEEP_EMPTY : 0;
460bc3ce
PW
395 flags |= abbreviate_commands ? TODO_LIST_ABBREVIATE_CMDS : 0;
396 flags |= opts->rebase_merges ? TODO_LIST_REBASE_MERGES : 0;
397 flags |= opts->rebase_cousins > 0 ? TODO_LIST_REBASE_COUSINS : 0;
e1fac531 398 flags |= opts->root_with_onto ? TODO_LIST_ROOT_WITH_ONTO : 0;
460bc3ce 399 flags |= command == ACTION_SHORTEN_OIDS ? TODO_LIST_SHORTEN_IDS : 0;
0fcb4f6b 400 flags |= opts->reapply_cherry_picks ? TODO_LIST_REAPPLY_CHERRY_PICKS : 0;
460bc3ce
PW
401
402 switch (command) {
403 case ACTION_NONE: {
404 if (!opts->onto && !opts->upstream)
405 die(_("a base commit must be provided with --upstream or --onto"));
406
407 ret = do_interactive_rebase(opts, flags);
408 break;
409 }
410 case ACTION_SKIP: {
411 struct string_list merge_rr = STRING_LIST_INIT_DUP;
412
413 rerere_clear(the_repository, &merge_rr);
414 }
415 /* fallthrough */
416 case ACTION_CONTINUE: {
417 struct replay_opts replay_opts = get_replay_opts(opts);
418
419 ret = sequencer_continue(the_repository, &replay_opts);
420 break;
421 }
422 case ACTION_EDIT_TODO:
423 ret = edit_todo_file(flags);
424 break;
425 case ACTION_SHOW_CURRENT_PATCH: {
426 struct child_process cmd = CHILD_PROCESS_INIT;
427
428 cmd.git_cmd = 1;
22f9b7f3 429 strvec_pushl(&cmd.args, "show", "REBASE_HEAD", "--", NULL);
460bc3ce
PW
430 ret = run_command(&cmd);
431
432 break;
433 }
434 case ACTION_SHORTEN_OIDS:
435 case ACTION_EXPAND_OIDS:
436 ret = transform_todo_file(flags);
437 break;
438 case ACTION_CHECK_TODO_LIST:
439 ret = check_todo_list_from_file(the_repository);
440 break;
441 case ACTION_REARRANGE_SQUASH:
442 ret = rearrange_squash_in_todo_file();
443 break;
444 case ACTION_ADD_EXEC: {
445 struct string_list commands = STRING_LIST_INIT_DUP;
446
447 split_exec_commands(opts->cmd, &commands);
448 ret = add_exec_commands(&commands);
449 string_list_clear(&commands, 0);
450 break;
451 }
452 default:
453 BUG("invalid command '%d'", command);
454 }
455
456 return ret;
457}
458
b9cbd295 459static void imply_merge(struct rebase_options *opts, const char *option);
d48e5e21
EN
460static int parse_opt_keep_empty(const struct option *opt, const char *arg,
461 int unset)
462{
463 struct rebase_options *opts = opt->value;
464
465 BUG_ON_OPT_ARG(arg);
466
b9cbd295
EN
467 imply_merge(opts, unset ? "--no-keep-empty" : "--keep-empty");
468 opts->keep_empty = !unset;
10cdb9f3 469 opts->type = REBASE_MERGE;
d48e5e21
EN
470 return 0;
471}
472
0609b741
PW
473static const char * const builtin_rebase_interactive_usage[] = {
474 N_("git rebase--interactive [<options>]"),
475 NULL
476};
477
478int cmd_rebase__interactive(int argc, const char **argv, const char *prefix)
479{
73fdc535 480 struct rebase_options opts = REBASE_OPTIONS_INIT;
33898531 481 struct object_id squash_onto = null_oid;
297b1e17 482 enum action command = ACTION_NONE;
0609b741 483 struct option options[] = {
73fdc535
PW
484 OPT_NEGBIT(0, "ff", &opts.flags, N_("allow fast-forward"),
485 REBASE_FORCE),
203c8533 486 OPT_CALLBACK_F('k', "keep-empty", &options, NULL,
b9cbd295 487 N_("keep commits which start empty"),
d48e5e21 488 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN,
203c8533 489 parse_opt_keep_empty),
22a69fda
EN
490 OPT_BOOL_F(0, "allow-empty-message", &opts.allow_empty_message,
491 N_("allow commits with empty messages"),
492 PARSE_OPT_HIDDEN),
73fdc535
PW
493 OPT_BOOL(0, "rebase-merges", &opts.rebase_merges, N_("rebase merge commits")),
494 OPT_BOOL(0, "rebase-cousins", &opts.rebase_cousins,
0609b741 495 N_("keep original branch points of cousins")),
73fdc535 496 OPT_BOOL(0, "autosquash", &opts.autosquash,
0609b741
PW
497 N_("move commits that begin with squash!/fixup!")),
498 OPT_BOOL(0, "signoff", &opts.signoff, N_("sign commits")),
73fdc535
PW
499 OPT_BIT('v', "verbose", &opts.flags,
500 N_("display a diffstat of what changed upstream"),
501 REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT),
0609b741 502 OPT_CMDMODE(0, "continue", &command, N_("continue rebase"),
297b1e17
PW
503 ACTION_CONTINUE),
504 OPT_CMDMODE(0, "skip", &command, N_("skip commit"), ACTION_SKIP),
0609b741 505 OPT_CMDMODE(0, "edit-todo", &command, N_("edit the todo list"),
297b1e17 506 ACTION_EDIT_TODO),
0609b741 507 OPT_CMDMODE(0, "show-current-patch", &command, N_("show the current patch"),
297b1e17 508 ACTION_SHOW_CURRENT_PATCH),
0609b741 509 OPT_CMDMODE(0, "shorten-ids", &command,
297b1e17 510 N_("shorten commit ids in the todo list"), ACTION_SHORTEN_OIDS),
0609b741 511 OPT_CMDMODE(0, "expand-ids", &command,
297b1e17 512 N_("expand commit ids in the todo list"), ACTION_EXPAND_OIDS),
0609b741 513 OPT_CMDMODE(0, "check-todo-list", &command,
297b1e17 514 N_("check the todo list"), ACTION_CHECK_TODO_LIST),
0609b741 515 OPT_CMDMODE(0, "rearrange-squash", &command,
297b1e17 516 N_("rearrange fixup/squash lines"), ACTION_REARRANGE_SQUASH),
0609b741 517 OPT_CMDMODE(0, "add-exec-commands", &command,
297b1e17 518 N_("insert exec commands in todo list"), ACTION_ADD_EXEC),
73fdc535 519 { OPTION_CALLBACK, 0, "onto", &opts.onto, N_("onto"), N_("onto"),
7d3488eb 520 PARSE_OPT_NONEG, parse_opt_commit, 0 },
73fdc535 521 { OPTION_CALLBACK, 0, "restrict-revision", &opts.restrict_revision,
7d3488eb
PW
522 N_("restrict-revision"), N_("restrict revision"),
523 PARSE_OPT_NONEG, parse_opt_commit, 0 },
33898531
PW
524 { OPTION_CALLBACK, 0, "squash-onto", &squash_onto, N_("squash-onto"),
525 N_("squash onto"), PARSE_OPT_NONEG, parse_opt_object_id, 0 },
73fdc535 526 { OPTION_CALLBACK, 0, "upstream", &opts.upstream, N_("upstream"),
7d3488eb
PW
527 N_("the upstream commit"), PARSE_OPT_NONEG, parse_opt_commit,
528 0 },
73fdc535
PW
529 OPT_STRING(0, "head-name", &opts.head_name, N_("head-name"), N_("head name")),
530 { OPTION_STRING, 'S', "gpg-sign", &opts.gpg_sign_opt, N_("key-id"),
0609b741
PW
531 N_("GPG-sign commits"),
532 PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
533 OPT_STRING(0, "strategy", &opts.strategy, N_("strategy"),
534 N_("rebase strategy")),
73fdc535 535 OPT_STRING(0, "strategy-opts", &opts.strategy_opts, N_("strategy-opts"),
0609b741 536 N_("strategy options")),
73fdc535 537 OPT_STRING(0, "switch-to", &opts.switch_to, N_("switch-to"),
0609b741 538 N_("the branch or commit to checkout")),
73fdc535
PW
539 OPT_STRING(0, "onto-name", &opts.onto_name, N_("onto-name"), N_("onto name")),
540 OPT_STRING(0, "cmd", &opts.cmd, N_("cmd"), N_("the command to run")),
541 OPT_RERERE_AUTOUPDATE(&opts.allow_rerere_autoupdate),
0609b741
PW
542 OPT_BOOL(0, "reschedule-failed-exec", &opts.reschedule_failed_exec,
543 N_("automatically re-schedule any `exec` that fails")),
544 OPT_END()
545 };
546
73fdc535 547 opts.rebase_cousins = -1;
0609b741 548
0609b741
PW
549 if (argc == 1)
550 usage_with_options(builtin_rebase_interactive_usage, options);
551
c0e78f7e 552 argc = parse_options(argc, argv, prefix, options,
0609b741
PW
553 builtin_rebase_interactive_usage, PARSE_OPT_KEEP_ARGV0);
554
33898531 555 if (!is_null_oid(&squash_onto))
73fdc535 556 opts.squash_onto = &squash_onto;
33898531 557
73fdc535 558 if (opts.rebase_cousins >= 0 && !opts.rebase_merges)
0609b741
PW
559 warning(_("--[no-]rebase-cousins has no effect without "
560 "--rebase-merges"));
561
10cdb9f3 562 return !!run_sequencer_rebase(&opts, command);
0609b741
PW
563}
564
10cdb9f3 565static int is_merge(struct rebase_options *opts)
9a48a615 566{
10cdb9f3 567 return opts->type == REBASE_MERGE ||
9a48a615
PK
568 opts->type == REBASE_PRESERVE_MERGES;
569}
570
10cdb9f3 571static void imply_merge(struct rebase_options *opts, const char *option)
002ee2fe
PK
572{
573 switch (opts->type) {
10cdb9f3 574 case REBASE_APPLY:
50ed7614 575 die(_("%s requires the merge backend"), option);
002ee2fe 576 break;
10cdb9f3 577 case REBASE_MERGE:
002ee2fe
PK
578 case REBASE_PRESERVE_MERGES:
579 break;
002ee2fe 580 default:
10cdb9f3 581 opts->type = REBASE_MERGE; /* implied */
002ee2fe
PK
582 break;
583 }
584}
585
ac7f467f
PK
586/* Returns the filename prefixed by the state_dir */
587static const char *state_dir_path(const char *filename, struct rebase_options *opts)
588{
589 static struct strbuf path = STRBUF_INIT;
590 static size_t prefix_len;
591
592 if (!prefix_len) {
593 strbuf_addf(&path, "%s/", opts->state_dir);
594 prefix_len = path.len;
595 }
596
597 strbuf_setlen(&path, prefix_len);
598 strbuf_addstr(&path, filename);
599 return path.buf;
600}
601
f9573628
PK
602/* Initialize the rebase options from the state directory. */
603static int read_basic_state(struct rebase_options *opts)
604{
605 struct strbuf head_name = STRBUF_INIT;
606 struct strbuf buf = STRBUF_INIT;
607 struct object_id oid;
608
efcf6cf0
DL
609 if (!read_oneliner(&head_name, state_dir_path("head-name", opts),
610 READ_ONELINER_WARN_MISSING) ||
611 !read_oneliner(&buf, state_dir_path("onto", opts),
612 READ_ONELINER_WARN_MISSING))
f9573628
PK
613 return -1;
614 opts->head_name = starts_with(head_name.buf, "refs/") ?
615 xstrdup(head_name.buf) : NULL;
616 strbuf_release(&head_name);
617 if (get_oid(buf.buf, &oid))
618 return error(_("could not get 'onto': '%s'"), buf.buf);
619 opts->onto = lookup_commit_or_die(&oid, buf.buf);
620
621 /*
622 * We always write to orig-head, but interactive rebase used to write to
623 * head. Fall back to reading from head to cover for the case that the
624 * user upgraded git with an ongoing interactive rebase.
625 */
626 strbuf_reset(&buf);
627 if (file_exists(state_dir_path("orig-head", opts))) {
efcf6cf0
DL
628 if (!read_oneliner(&buf, state_dir_path("orig-head", opts),
629 READ_ONELINER_WARN_MISSING))
f9573628 630 return -1;
efcf6cf0
DL
631 } else if (!read_oneliner(&buf, state_dir_path("head", opts),
632 READ_ONELINER_WARN_MISSING))
f9573628
PK
633 return -1;
634 if (get_oid(buf.buf, &opts->orig_head))
635 return error(_("invalid orig-head: '%s'"), buf.buf);
636
899b49c4 637 if (file_exists(state_dir_path("quiet", opts)))
f9573628
PK
638 opts->flags &= ~REBASE_NO_QUIET;
639 else
640 opts->flags |= REBASE_NO_QUIET;
641
642 if (file_exists(state_dir_path("verbose", opts)))
643 opts->flags |= REBASE_VERBOSE;
644
73d51ed0
PK
645 if (file_exists(state_dir_path("signoff", opts))) {
646 opts->signoff = 1;
647 opts->flags |= REBASE_FORCE;
648 }
649
ead98c11
PK
650 if (file_exists(state_dir_path("allow_rerere_autoupdate", opts))) {
651 strbuf_reset(&buf);
efcf6cf0
DL
652 if (!read_oneliner(&buf, state_dir_path("allow_rerere_autoupdate", opts),
653 READ_ONELINER_WARN_MISSING))
ead98c11
PK
654 return -1;
655 if (!strcmp(buf.buf, "--rerere-autoupdate"))
6023c928 656 opts->allow_rerere_autoupdate = RERERE_AUTOUPDATE;
ead98c11 657 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
6023c928 658 opts->allow_rerere_autoupdate = RERERE_NOAUTOUPDATE;
ead98c11
PK
659 else
660 warning(_("ignoring invalid allow_rerere_autoupdate: "
661 "'%s'"), buf.buf);
6023c928 662 }
ead98c11 663
12026a41
PK
664 if (file_exists(state_dir_path("gpg_sign_opt", opts))) {
665 strbuf_reset(&buf);
efcf6cf0
DL
666 if (!read_oneliner(&buf, state_dir_path("gpg_sign_opt", opts),
667 READ_ONELINER_WARN_MISSING))
12026a41
PK
668 return -1;
669 free(opts->gpg_sign_opt);
670 opts->gpg_sign_opt = xstrdup(buf.buf);
671 }
672
ba1905a5
PK
673 if (file_exists(state_dir_path("strategy", opts))) {
674 strbuf_reset(&buf);
efcf6cf0
DL
675 if (!read_oneliner(&buf, state_dir_path("strategy", opts),
676 READ_ONELINER_WARN_MISSING))
ba1905a5
PK
677 return -1;
678 free(opts->strategy);
679 opts->strategy = xstrdup(buf.buf);
680 }
681
682 if (file_exists(state_dir_path("strategy_opts", opts))) {
683 strbuf_reset(&buf);
efcf6cf0
DL
684 if (!read_oneliner(&buf, state_dir_path("strategy_opts", opts),
685 READ_ONELINER_WARN_MISSING))
ba1905a5
PK
686 return -1;
687 free(opts->strategy_opts);
688 opts->strategy_opts = xstrdup(buf.buf);
689 }
690
f9573628
PK
691 strbuf_release(&buf);
692
693 return 0;
694}
695
28dc09de 696static int rebase_write_basic_state(struct rebase_options *opts)
21853626
JS
697{
698 write_file(state_dir_path("head-name", opts), "%s",
699 opts->head_name ? opts->head_name : "detached HEAD");
700 write_file(state_dir_path("onto", opts), "%s",
701 opts->onto ? oid_to_hex(&opts->onto->object.oid) : "");
702 write_file(state_dir_path("orig-head", opts), "%s",
703 oid_to_hex(&opts->orig_head));
8a997ed1
EN
704 if (!(opts->flags & REBASE_NO_QUIET))
705 write_file(state_dir_path("quiet", opts), "%s", "");
21853626
JS
706 if (opts->flags & REBASE_VERBOSE)
707 write_file(state_dir_path("verbose", opts), "%s", "");
708 if (opts->strategy)
709 write_file(state_dir_path("strategy", opts), "%s",
710 opts->strategy);
711 if (opts->strategy_opts)
712 write_file(state_dir_path("strategy_opts", opts), "%s",
713 opts->strategy_opts);
6023c928 714 if (opts->allow_rerere_autoupdate > 0)
21853626
JS
715 write_file(state_dir_path("allow_rerere_autoupdate", opts),
716 "-%s-rerere-autoupdate",
6023c928
PW
717 opts->allow_rerere_autoupdate == RERERE_AUTOUPDATE ?
718 "" : "-no");
21853626
JS
719 if (opts->gpg_sign_opt)
720 write_file(state_dir_path("gpg_sign_opt", opts), "%s",
721 opts->gpg_sign_opt);
722 if (opts->signoff)
4fe7e43c 723 write_file(state_dir_path("signoff", opts), "--signoff");
21853626
JS
724
725 return 0;
726}
727
ac7f467f
PK
728static int finish_rebase(struct rebase_options *opts)
729{
730 struct strbuf dir = STRBUF_INIT;
d3fce47d 731 int ret = 0;
ac7f467f
PK
732
733 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
86ed00af 734 apply_autostash(state_dir_path("autostash", opts));
2d511cfc 735 close_object_store(the_repository->objects);
ac7f467f 736 /*
a95ce124 737 * We ignore errors in 'git maintenance run --auto', since the
ac7f467f
PK
738 * user should see them.
739 */
a95ce124 740 run_auto_maintenance(!(opts->flags & (REBASE_NO_QUIET|REBASE_VERBOSE)));
10cdb9f3 741 if (opts->type == REBASE_MERGE) {
d559f502 742 struct replay_opts replay = REPLAY_OPTS_INIT;
ac7f467f 743
d559f502
PW
744 replay.action = REPLAY_INTERACTIVE_REBASE;
745 ret = sequencer_remove_state(&replay);
746 } else {
747 strbuf_addstr(&dir, opts->state_dir);
748 if (remove_dir_recursively(&dir, 0))
749 ret = error(_("could not remove '%s'"),
750 opts->state_dir);
751 strbuf_release(&dir);
752 }
ac7f467f 753
d3fce47d 754 return ret;
ac7f467f
PK
755}
756
757static struct commit *peel_committish(const char *name)
758{
759 struct object *obj;
760 struct object_id oid;
761
762 if (get_oid(name, &oid))
763 return NULL;
764 obj = parse_object(the_repository, &oid);
765 return (struct commit *)peel_to_type(name, 0, obj, OBJ_COMMIT);
766}
767
768static void add_var(struct strbuf *buf, const char *name, const char *value)
769{
770 if (!value)
771 strbuf_addf(buf, "unset %s; ", name);
772 else {
773 strbuf_addf(buf, "%s=", name);
774 sq_quote_buf(buf, value);
775 strbuf_addstr(buf, "; ");
776 }
777}
778
21853626
JS
779static int move_to_original_branch(struct rebase_options *opts)
780{
781 struct strbuf orig_head_reflog = STRBUF_INIT, head_reflog = STRBUF_INIT;
782 int ret;
783
784 if (!opts->head_name)
785 return 0; /* nothing to move back to */
786
787 if (!opts->onto)
788 BUG("move_to_original_branch without onto");
789
790 strbuf_addf(&orig_head_reflog, "rebase finished: %s onto %s",
791 opts->head_name, oid_to_hex(&opts->onto->object.oid));
792 strbuf_addf(&head_reflog, "rebase finished: returning to %s",
793 opts->head_name);
f213f069
DL
794 ret = reset_head(the_repository, NULL, "", opts->head_name,
795 RESET_HEAD_REFS_ONLY,
796 orig_head_reflog.buf, head_reflog.buf,
797 DEFAULT_REFLOG_ACTION);
21853626
JS
798
799 strbuf_release(&orig_head_reflog);
800 strbuf_release(&head_reflog);
801 return ret;
802}
803
bc24382c
JS
804static const char *resolvemsg =
805N_("Resolve all conflicts manually, mark them as resolved with\n"
806"\"git add/rm <conflicted_files>\", then run \"git rebase --continue\".\n"
807"You can instead skip this commit: run \"git rebase --skip\".\n"
808"To abort and get back to the state before \"git rebase\", run "
809"\"git rebase --abort\".");
810
21853626
JS
811static int run_am(struct rebase_options *opts)
812{
813 struct child_process am = CHILD_PROCESS_INIT;
814 struct child_process format_patch = CHILD_PROCESS_INIT;
815 struct strbuf revisions = STRBUF_INIT;
816 int status;
817 char *rebased_patches;
818
819 am.git_cmd = 1;
22f9b7f3 820 strvec_push(&am.args, "am");
21853626
JS
821
822 if (opts->action && !strcmp("continue", opts->action)) {
22f9b7f3
JK
823 strvec_push(&am.args, "--resolved");
824 strvec_pushf(&am.args, "--resolvemsg=%s", resolvemsg);
21853626 825 if (opts->gpg_sign_opt)
22f9b7f3 826 strvec_push(&am.args, opts->gpg_sign_opt);
21853626
JS
827 status = run_command(&am);
828 if (status)
829 return status;
830
831 return move_to_original_branch(opts);
832 }
833 if (opts->action && !strcmp("skip", opts->action)) {
22f9b7f3
JK
834 strvec_push(&am.args, "--skip");
835 strvec_pushf(&am.args, "--resolvemsg=%s", resolvemsg);
21853626
JS
836 status = run_command(&am);
837 if (status)
838 return status;
839
840 return move_to_original_branch(opts);
841 }
842 if (opts->action && !strcmp("show-current-patch", opts->action)) {
22f9b7f3 843 strvec_push(&am.args, "--show-current-patch");
21853626
JS
844 return run_command(&am);
845 }
846
847 strbuf_addf(&revisions, "%s...%s",
848 oid_to_hex(opts->root ?
849 /* this is now equivalent to !opts->upstream */
850 &opts->onto->object.oid :
851 &opts->upstream->object.oid),
852 oid_to_hex(&opts->orig_head));
853
854 rebased_patches = xstrdup(git_path("rebased-patches"));
855 format_patch.out = open(rebased_patches,
856 O_WRONLY | O_CREAT | O_TRUNC, 0666);
857 if (format_patch.out < 0) {
858 status = error_errno(_("could not open '%s' for writing"),
859 rebased_patches);
860 free(rebased_patches);
22f9b7f3 861 strvec_clear(&am.args);
21853626
JS
862 return status;
863 }
864
865 format_patch.git_cmd = 1;
22f9b7f3 866 strvec_pushl(&format_patch.args, "format-patch", "-k", "--stdout",
f6d8942b
JK
867 "--full-index", "--cherry-pick", "--right-only",
868 "--src-prefix=a/", "--dst-prefix=b/", "--no-renames",
869 "--no-cover-letter", "--pretty=mboxrd", "--topo-order",
870 "--no-base", NULL);
21853626 871 if (opts->git_format_patch_opt.len)
22f9b7f3 872 strvec_split(&format_patch.args,
f6d8942b 873 opts->git_format_patch_opt.buf);
22f9b7f3 874 strvec_push(&format_patch.args, revisions.buf);
21853626 875 if (opts->restrict_revision)
22f9b7f3 876 strvec_pushf(&format_patch.args, "^%s",
f6d8942b 877 oid_to_hex(&opts->restrict_revision->object.oid));
21853626
JS
878
879 status = run_command(&format_patch);
880 if (status) {
881 unlink(rebased_patches);
882 free(rebased_patches);
22f9b7f3 883 strvec_clear(&am.args);
21853626 884
f213f069
DL
885 reset_head(the_repository, &opts->orig_head, "checkout",
886 opts->head_name, 0,
887 "HEAD", NULL, DEFAULT_REFLOG_ACTION);
21853626
JS
888 error(_("\ngit encountered an error while preparing the "
889 "patches to replay\n"
890 "these revisions:\n"
891 "\n %s\n\n"
892 "As a result, git cannot rebase them."),
893 opts->revisions);
894
895 strbuf_release(&revisions);
896 return status;
897 }
898 strbuf_release(&revisions);
899
900 am.in = open(rebased_patches, O_RDONLY);
901 if (am.in < 0) {
902 status = error_errno(_("could not open '%s' for reading"),
903 rebased_patches);
904 free(rebased_patches);
22f9b7f3 905 strvec_clear(&am.args);
21853626
JS
906 return status;
907 }
908
d70a9eb6 909 strvec_pushv(&am.args, opts->git_am_opts.v);
22f9b7f3
JK
910 strvec_push(&am.args, "--rebasing");
911 strvec_pushf(&am.args, "--resolvemsg=%s", resolvemsg);
912 strvec_push(&am.args, "--patch-format=mboxrd");
6023c928 913 if (opts->allow_rerere_autoupdate == RERERE_AUTOUPDATE)
22f9b7f3 914 strvec_push(&am.args, "--rerere-autoupdate");
6023c928 915 else if (opts->allow_rerere_autoupdate == RERERE_NOAUTOUPDATE)
22f9b7f3 916 strvec_push(&am.args, "--no-rerere-autoupdate");
21853626 917 if (opts->gpg_sign_opt)
22f9b7f3 918 strvec_push(&am.args, opts->gpg_sign_opt);
21853626
JS
919 status = run_command(&am);
920 unlink(rebased_patches);
921 free(rebased_patches);
922
923 if (!status) {
924 return move_to_original_branch(opts);
925 }
926
927 if (is_directory(opts->state_dir))
28dc09de 928 rebase_write_basic_state(opts);
21853626
JS
929
930 return status;
931}
932
460bc3ce 933static int run_specific_rebase(struct rebase_options *opts, enum action action)
ac7f467f
PK
934{
935 const char *argv[] = { NULL, NULL };
f5769680 936 struct strbuf script_snippet = STRBUF_INIT, buf = STRBUF_INIT;
ac7f467f
PK
937 int status;
938 const char *backend, *backend_func;
939
10cdb9f3
EN
940 if (opts->type == REBASE_MERGE) {
941 /* Run sequencer-based rebase */
460bc3ce 942 setenv("GIT_CHERRY_PICK_HELP", resolvemsg, 1);
bc24382c 943 if (!(opts->flags & REBASE_INTERACTIVE_EXPLICIT)) {
460bc3ce 944 setenv("GIT_SEQUENCE_EDITOR", ":", 1);
bc24382c
JS
945 opts->autosquash = 0;
946 }
460bc3ce
PW
947 if (opts->gpg_sign_opt) {
948 /* remove the leading "-S" */
949 char *tmp = xstrdup(opts->gpg_sign_opt + 2);
950 free(opts->gpg_sign_opt);
951 opts->gpg_sign_opt = tmp;
952 }
bc24382c 953
10cdb9f3 954 status = run_sequencer_rebase(opts, action);
bc24382c
JS
955 goto finished_rebase;
956 }
957
10cdb9f3 958 if (opts->type == REBASE_APPLY) {
21853626
JS
959 status = run_am(opts);
960 goto finished_rebase;
961 }
962
ac7f467f
PK
963 add_var(&script_snippet, "GIT_DIR", absolute_path(get_git_dir()));
964 add_var(&script_snippet, "state_dir", opts->state_dir);
965
966 add_var(&script_snippet, "upstream_name", opts->upstream_name);
f9573628
PK
967 add_var(&script_snippet, "upstream", opts->upstream ?
968 oid_to_hex(&opts->upstream->object.oid) : NULL);
d4c569f8
PK
969 add_var(&script_snippet, "head_name",
970 opts->head_name ? opts->head_name : "detached HEAD");
ac7f467f 971 add_var(&script_snippet, "orig_head", oid_to_hex(&opts->orig_head));
f9573628
PK
972 add_var(&script_snippet, "onto", opts->onto ?
973 oid_to_hex(&opts->onto->object.oid) : NULL);
ac7f467f
PK
974 add_var(&script_snippet, "onto_name", opts->onto_name);
975 add_var(&script_snippet, "revisions", opts->revisions);
976 add_var(&script_snippet, "restrict_revision", opts->restrict_revision ?
977 oid_to_hex(&opts->restrict_revision->object.oid) : NULL);
d70a9eb6 978 sq_quote_argv_pretty(&buf, opts->git_am_opts.v);
f5769680
JS
979 add_var(&script_snippet, "git_am_opt", buf.buf);
980 strbuf_release(&buf);
bff014da
PK
981 add_var(&script_snippet, "verbose",
982 opts->flags & REBASE_VERBOSE ? "t" : "");
983 add_var(&script_snippet, "diffstat",
984 opts->flags & REBASE_DIFFSTAT ? "t" : "");
1ed9c14f
PK
985 add_var(&script_snippet, "force_rebase",
986 opts->flags & REBASE_FORCE ? "t" : "");
e65123a7
PK
987 if (opts->switch_to)
988 add_var(&script_snippet, "switch_to", opts->switch_to);
f9573628 989 add_var(&script_snippet, "action", opts->action ? opts->action : "");
73d51ed0 990 add_var(&script_snippet, "signoff", opts->signoff ? "--signoff" : "");
ead98c11 991 add_var(&script_snippet, "allow_rerere_autoupdate",
ead98c11 992 opts->allow_rerere_autoupdate ?
6023c928
PW
993 opts->allow_rerere_autoupdate == RERERE_AUTOUPDATE ?
994 "--rerere-autoupdate" : "--no-rerere-autoupdate" : "");
b9cbd295 995 add_var(&script_snippet, "keep_empty", opts->keep_empty ? "yes" : "");
051910a9 996 add_var(&script_snippet, "autosquash", opts->autosquash ? "t" : "");
12026a41 997 add_var(&script_snippet, "gpg_sign_opt", opts->gpg_sign_opt);
68e46d78 998 add_var(&script_snippet, "cmd", opts->cmd);
9b3a448b
PK
999 add_var(&script_snippet, "allow_empty_message",
1000 opts->allow_empty_message ? "--allow-empty-message" : "");
3c3588c7
PK
1001 add_var(&script_snippet, "rebase_merges",
1002 opts->rebase_merges ? "t" : "");
1003 add_var(&script_snippet, "rebase_cousins",
1004 opts->rebase_cousins ? "t" : "");
ba1905a5
PK
1005 add_var(&script_snippet, "strategy", opts->strategy);
1006 add_var(&script_snippet, "strategy_opts", opts->strategy_opts);
9dba809a
PK
1007 add_var(&script_snippet, "rebase_root", opts->root ? "t" : "");
1008 add_var(&script_snippet, "squash_onto",
1009 opts->squash_onto ? oid_to_hex(opts->squash_onto) : "");
cda614e4
PK
1010 add_var(&script_snippet, "git_format_patch_opt",
1011 opts->git_format_patch_opt.buf);
ac7f467f 1012
10cdb9f3 1013 if (is_merge(opts) &&
3dba9d08
PK
1014 !(opts->flags & REBASE_INTERACTIVE_EXPLICIT)) {
1015 strbuf_addstr(&script_snippet,
891d4a03 1016 "GIT_SEQUENCE_EDITOR=:; export GIT_SEQUENCE_EDITOR; ");
3dba9d08
PK
1017 opts->autosquash = 0;
1018 }
ac7f467f
PK
1019
1020 switch (opts->type) {
ac7f467f
PK
1021 case REBASE_PRESERVE_MERGES:
1022 backend = "git-rebase--preserve-merges";
1023 backend_func = "git_rebase__preserve_merges";
1024 break;
1025 default:
1026 BUG("Unhandled rebase type %d", opts->type);
1027 break;
1028 }
1029
1030 strbuf_addf(&script_snippet,
082ef75b 1031 ". git-sh-setup && . %s && %s", backend, backend_func);
ac7f467f
PK
1032 argv[0] = script_snippet.buf;
1033
1034 status = run_command_v_opt(argv, RUN_USING_SHELL);
bc24382c 1035finished_rebase:
ac7f467f
PK
1036 if (opts->dont_finish_rebase)
1037 ; /* do nothing */
10cdb9f3
EN
1038 else if (opts->type == REBASE_MERGE)
1039 ; /* merge backend cleans up after itself */
ac7f467f
PK
1040 else if (status == 0) {
1041 if (!file_exists(state_dir_path("stopped-sha", opts)))
1042 finish_rebase(opts);
1043 } else if (status == 2) {
1044 struct strbuf dir = STRBUF_INIT;
1045
86ed00af 1046 apply_autostash(state_dir_path("autostash", opts));
ac7f467f
PK
1047 strbuf_addstr(&dir, opts->state_dir);
1048 remove_dir_recursively(&dir, 0);
1049 strbuf_release(&dir);
1050 die("Nothing to do");
1051 }
1052
1053 strbuf_release(&script_snippet);
1054
1055 return status ? -1 : 0;
1056}
1057
bff014da
PK
1058static int rebase_config(const char *var, const char *value, void *data)
1059{
1060 struct rebase_options *opts = data;
1061
1062 if (!strcmp(var, "rebase.stat")) {
1063 if (git_config_bool(var, value))
1064 opts->flags |= REBASE_DIFFSTAT;
1065 else
4c785c0e 1066 opts->flags &= ~REBASE_DIFFSTAT;
bff014da
PK
1067 return 0;
1068 }
1069
051910a9
PK
1070 if (!strcmp(var, "rebase.autosquash")) {
1071 opts->autosquash = git_config_bool(var, value);
1072 return 0;
1073 }
1074
12026a41
PK
1075 if (!strcmp(var, "commit.gpgsign")) {
1076 free(opts->gpg_sign_opt);
1077 opts->gpg_sign_opt = git_config_bool(var, value) ?
1078 xstrdup("-S") : NULL;
1079 return 0;
1080 }
1081
6defce2b
PK
1082 if (!strcmp(var, "rebase.autostash")) {
1083 opts->autostash = git_config_bool(var, value);
1084 return 0;
1085 }
1086
969de3ff
JS
1087 if (!strcmp(var, "rebase.reschedulefailedexec")) {
1088 opts->reschedule_failed_exec = git_config_bool(var, value);
1089 return 0;
1090 }
1091
d03ebd41
ÆAB
1092 if (!strcmp(var, "rebase.usebuiltin")) {
1093 opts->use_legacy_rebase = !git_config_bool(var, value);
1094 return 0;
1095 }
1096
8295ed69
EN
1097 if (!strcmp(var, "rebase.backend")) {
1098 return git_config_string(&opts->default_backend, var, value);
1099 }
1100
bff014da
PK
1101 return git_default_config(var, value, data);
1102}
1103
9a48a615
PK
1104/*
1105 * Determines whether the commits in from..to are linear, i.e. contain
1106 * no merge commits. This function *expects* `from` to be an ancestor of
1107 * `to`.
1108 */
1109static int is_linear_history(struct commit *from, struct commit *to)
1110{
1111 while (to && to != from) {
1112 parse_commit(to);
1113 if (!to->parents)
1114 return 1;
1115 if (to->parents->next)
1116 return 0;
1117 to = to->parents->item;
1118 }
1119 return 1;
1120}
1121
c0efb4c1 1122static int can_fast_forward(struct commit *onto, struct commit *upstream,
4effc5bc 1123 struct commit *restrict_revision,
c0efb4c1 1124 struct object_id *head_oid, struct object_id *merge_base)
9a48a615
PK
1125{
1126 struct commit *head = lookup_commit(the_repository, head_oid);
2b318aa6
DL
1127 struct commit_list *merge_bases = NULL;
1128 int res = 0;
9a48a615
PK
1129
1130 if (!head)
2b318aa6 1131 goto done;
9a48a615
PK
1132
1133 merge_bases = get_merge_bases(onto, head);
2b318aa6 1134 if (!merge_bases || merge_bases->next) {
9a48a615 1135 oidcpy(merge_base, &null_oid);
2b318aa6 1136 goto done;
9a48a615 1137 }
2b318aa6
DL
1138
1139 oidcpy(merge_base, &merge_bases->item->object.oid);
1140 if (!oideq(merge_base, &onto->object.oid))
1141 goto done;
1142
4effc5bc
DL
1143 if (restrict_revision && !oideq(&restrict_revision->object.oid, merge_base))
1144 goto done;
1145
c0efb4c1
DL
1146 if (!upstream)
1147 goto done;
1148
1149 free_commit_list(merge_bases);
1150 merge_bases = get_merge_bases(upstream, head);
1151 if (!merge_bases || merge_bases->next)
1152 goto done;
1153
1154 if (!oideq(&onto->object.oid, &merge_bases->item->object.oid))
1155 goto done;
1156
2b318aa6
DL
1157 res = 1;
1158
1159done:
9a48a615
PK
1160 free_commit_list(merge_bases);
1161 return res && is_linear_history(onto, head);
1162}
1163
52eb738d
EN
1164static int parse_opt_am(const struct option *opt, const char *arg, int unset)
1165{
1166 struct rebase_options *opts = opt->value;
1167
1168 BUG_ON_OPT_NEG(unset);
1169 BUG_ON_OPT_ARG(arg);
1170
10cdb9f3 1171 opts->type = REBASE_APPLY;
52eb738d
EN
1172
1173 return 0;
1174}
1175
361badd3
PK
1176/* -i followed by -m is still -i */
1177static int parse_opt_merge(const struct option *opt, const char *arg, int unset)
1178{
1179 struct rebase_options *opts = opt->value;
1180
517fe807
JK
1181 BUG_ON_OPT_NEG(unset);
1182 BUG_ON_OPT_ARG(arg);
1183
10cdb9f3 1184 if (!is_merge(opts))
361badd3
PK
1185 opts->type = REBASE_MERGE;
1186
1187 return 0;
1188}
1189
1190/* -i followed by -p is still explicitly interactive, but -p alone is not */
1191static int parse_opt_interactive(const struct option *opt, const char *arg,
1192 int unset)
1193{
1194 struct rebase_options *opts = opt->value;
1195
517fe807
JK
1196 BUG_ON_OPT_NEG(unset);
1197 BUG_ON_OPT_ARG(arg);
1198
10cdb9f3 1199 opts->type = REBASE_MERGE;
361badd3
PK
1200 opts->flags |= REBASE_INTERACTIVE_EXPLICIT;
1201
1202 return 0;
1203}
1204
e98c4269
EN
1205static enum empty_type parse_empty_value(const char *value)
1206{
1207 if (!strcasecmp(value, "drop"))
1208 return EMPTY_DROP;
1209 else if (!strcasecmp(value, "keep"))
1210 return EMPTY_KEEP;
1211 else if (!strcasecmp(value, "ask"))
1212 return EMPTY_ASK;
1213
1214 die(_("unrecognized empty type '%s'; valid values are \"drop\", \"keep\", and \"ask\"."), value);
1215}
1216
1217static int parse_opt_empty(const struct option *opt, const char *arg, int unset)
1218{
1219 struct rebase_options *options = opt->value;
1220 enum empty_type value = parse_empty_value(arg);
1221
1222 BUG_ON_OPT_NEG(unset);
1223
1224 options->empty = value;
1225 return 0;
1226}
1227
8f5986d9
PK
1228static void NORETURN error_on_missing_default_upstream(void)
1229{
1230 struct branch *current_branch = branch_get(NULL);
1231
1232 printf(_("%s\n"
1233 "Please specify which branch you want to rebase against.\n"
1234 "See git-rebase(1) for details.\n"
1235 "\n"
1236 " git rebase '<branch>'\n"
1237 "\n"),
1238 current_branch ? _("There is no tracking information for "
1239 "the current branch.") :
1240 _("You are not currently on a branch."));
1241
1242 if (current_branch) {
1243 const char *remote = current_branch->remote_name;
1244
1245 if (!remote)
1246 remote = _("<remote>");
1247
1248 printf(_("If you wish to set tracking information for this "
1249 "branch you can do so with:\n"
1250 "\n"
1251 " git branch --set-upstream-to=%s/<branch> %s\n"
1252 "\n"),
1253 remote, current_branch->name);
1254 }
1255 exit(1);
1256}
1257
13a5a9f0
JS
1258static void set_reflog_action(struct rebase_options *options)
1259{
1260 const char *env;
1261 struct strbuf buf = STRBUF_INIT;
1262
10cdb9f3 1263 if (!is_merge(options))
13a5a9f0
JS
1264 return;
1265
1266 env = getenv(GIT_REFLOG_ACTION_ENVIRONMENT);
1267 if (env && strcmp("rebase", env))
1268 return; /* only override it if it is "rebase" */
1269
c2417d3a 1270 strbuf_addf(&buf, "rebase (%s)", options->action);
13a5a9f0
JS
1271 setenv(GIT_REFLOG_ACTION_ENVIRONMENT, buf.buf, 1);
1272 strbuf_release(&buf);
1273}
1274
c762aada
PW
1275static int check_exec_cmd(const char *cmd)
1276{
1277 if (strchr(cmd, '\n'))
1278 return error(_("exec commands cannot contain newlines"));
1279
1280 /* Does the command consist purely of whitespace? */
1281 if (!cmd[strspn(cmd, " \t\r\f\v")])
1282 return error(_("empty exec command"));
1283
1284 return 0;
1285}
1286
55071ea2
PK
1287int cmd_rebase(int argc, const char **argv, const char *prefix)
1288{
73fdc535 1289 struct rebase_options options = REBASE_OPTIONS_INIT;
ac7f467f 1290 const char *branch_name;
f9573628 1291 int ret, flags, total_argc, in_progress = 0;
414d924b 1292 int keep_base = 0;
06e4775a 1293 int ok_to_skip_pre_rebase = 0;
ac7f467f
PK
1294 struct strbuf msg = STRBUF_INIT;
1295 struct strbuf revisions = STRBUF_INIT;
c54dacb5 1296 struct strbuf buf = STRBUF_INIT;
075bc852 1297 struct object_id merge_base;
ef484add 1298 int ignore_whitespace = 0;
297b1e17 1299 enum action action = ACTION_NONE;
12026a41 1300 const char *gpg_sign = NULL;
68e46d78 1301 struct string_list exec = STRING_LIST_INIT_NODUP;
3c3588c7 1302 const char *rebase_merges = NULL;
92d0d74e 1303 int fork_point = -1;
ba1905a5 1304 struct string_list strategy_options = STRING_LIST_INIT_NODUP;
9dba809a
PK
1305 struct object_id squash_onto;
1306 char *squash_onto_name = NULL;
906b6394 1307 int reschedule_failed_exec = -1;
befb89ce 1308 int allow_preemptive_ff = 1;
f28d40d3
PK
1309 struct option builtin_rebase_options[] = {
1310 OPT_STRING(0, "onto", &options.onto_name,
1311 N_("revision"),
1312 N_("rebase onto given branch instead of upstream")),
414d924b
DL
1313 OPT_BOOL(0, "keep-base", &keep_base,
1314 N_("use the merge-base of upstream and branch as the current base")),
06e4775a
PK
1315 OPT_BOOL(0, "no-verify", &ok_to_skip_pre_rebase,
1316 N_("allow pre-rebase hook to run")),
b4c8eb02
PK
1317 OPT_NEGBIT('q', "quiet", &options.flags,
1318 N_("be quiet. implies --no-stat"),
55d2b6d7 1319 REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT),
bff014da
PK
1320 OPT_BIT('v', "verbose", &options.flags,
1321 N_("display a diffstat of what changed upstream"),
1322 REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT),
1323 {OPTION_NEGBIT, 'n', "no-stat", &options.flags, NULL,
1324 N_("do not show diffstat of what changed upstream"),
1325 PARSE_OPT_NOARG, NULL, REBASE_DIFFSTAT },
73d51ed0
PK
1326 OPT_BOOL(0, "signoff", &options.signoff,
1327 N_("add a Signed-off-by: line to each commit")),
7573cec5
PW
1328 OPT_BOOL(0, "committer-date-is-author-date",
1329 &options.committer_date_is_author_date,
1330 N_("make committer date match author date")),
27126692 1331 OPT_BOOL(0, "reset-author-date", &options.ignore_date,
a3894aad 1332 N_("ignore author date and use current date")),
27126692
RA
1333 OPT_HIDDEN_BOOL(0, "ignore-date", &options.ignore_date,
1334 N_("synonym of --reset-author-date")),
f5769680
JS
1335 OPT_PASSTHRU_ARGV('C', NULL, &options.git_am_opts, N_("n"),
1336 N_("passed to 'git apply'"), 0),
ef484add
RA
1337 OPT_BOOL(0, "ignore-whitespace", &ignore_whitespace,
1338 N_("ignore changes in whitespace")),
f5769680
JS
1339 OPT_PASSTHRU_ARGV(0, "whitespace", &options.git_am_opts,
1340 N_("action"), N_("passed to 'git apply'"), 0),
1ed9c14f
PK
1341 OPT_BIT('f', "force-rebase", &options.flags,
1342 N_("cherry-pick all commits, even if unchanged"),
1343 REBASE_FORCE),
1344 OPT_BIT(0, "no-ff", &options.flags,
1345 N_("cherry-pick all commits, even if unchanged"),
1346 REBASE_FORCE),
f9573628
PK
1347 OPT_CMDMODE(0, "continue", &action, N_("continue"),
1348 ACTION_CONTINUE),
122420c2
PK
1349 OPT_CMDMODE(0, "skip", &action,
1350 N_("skip current patch and continue"), ACTION_SKIP),
5e5d9619
PK
1351 OPT_CMDMODE(0, "abort", &action,
1352 N_("abort and check out the original branch"),
1353 ACTION_ABORT),
5a614945
PK
1354 OPT_CMDMODE(0, "quit", &action,
1355 N_("abort but keep HEAD where it is"), ACTION_QUIT),
51e9ea6d
PK
1356 OPT_CMDMODE(0, "edit-todo", &action, N_("edit the todo list "
1357 "during an interactive rebase"), ACTION_EDIT_TODO),
1358 OPT_CMDMODE(0, "show-current-patch", &action,
1359 N_("show the patch file being applied or merged"),
1360 ACTION_SHOW_CURRENT_PATCH),
203c8533 1361 OPT_CALLBACK_F(0, "apply", &options, NULL,
10cdb9f3 1362 N_("use apply strategies to rebase"),
52eb738d 1363 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
203c8533
DL
1364 parse_opt_am),
1365 OPT_CALLBACK_F('m', "merge", &options, NULL,
361badd3
PK
1366 N_("use merging strategies to rebase"),
1367 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
203c8533
DL
1368 parse_opt_merge),
1369 OPT_CALLBACK_F('i', "interactive", &options, NULL,
361badd3
PK
1370 N_("let the user edit the list of commits to rebase"),
1371 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
203c8533 1372 parse_opt_interactive),
feebd2d2
DL
1373 OPT_SET_INT_F('p', "preserve-merges", &options.type,
1374 N_("(DEPRECATED) try to recreate merges instead of "
1375 "ignoring them"),
1376 REBASE_PRESERVE_MERGES, PARSE_OPT_HIDDEN),
6023c928 1377 OPT_RERERE_AUTOUPDATE(&options.allow_rerere_autoupdate),
937d1436 1378 OPT_CALLBACK_F(0, "empty", &options, "{drop,keep,ask}",
e98c4269
EN
1379 N_("how to handle commits that become empty"),
1380 PARSE_OPT_NONEG, parse_opt_empty),
203c8533 1381 OPT_CALLBACK_F('k', "keep-empty", &options, NULL,
b9cbd295 1382 N_("keep commits which start empty"),
d48e5e21 1383 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN,
203c8533 1384 parse_opt_keep_empty),
051910a9
PK
1385 OPT_BOOL(0, "autosquash", &options.autosquash,
1386 N_("move commits that begin with "
1387 "squash!/fixup! under -i")),
12026a41
PK
1388 { OPTION_STRING, 'S', "gpg-sign", &gpg_sign, N_("key-id"),
1389 N_("GPG-sign commits"),
1390 PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
a03b5553 1391 OPT_AUTOSTASH(&options.autostash),
68e46d78
PK
1392 OPT_STRING_LIST('x', "exec", &exec, N_("exec"),
1393 N_("add exec lines after each commit of the "
1394 "editable list")),
22a69fda
EN
1395 OPT_BOOL_F(0, "allow-empty-message",
1396 &options.allow_empty_message,
1397 N_("allow rebasing commits with empty messages"),
1398 PARSE_OPT_HIDDEN),
3c3588c7
PK
1399 {OPTION_STRING, 'r', "rebase-merges", &rebase_merges,
1400 N_("mode"),
1401 N_("try to rebase merges instead of skipping them"),
1402 PARSE_OPT_OPTARG, NULL, (intptr_t)""},
92d0d74e
PK
1403 OPT_BOOL(0, "fork-point", &fork_point,
1404 N_("use 'merge-base --fork-point' to refine upstream")),
ba1905a5
PK
1405 OPT_STRING('s', "strategy", &options.strategy,
1406 N_("strategy"), N_("use the given merge strategy")),
1407 OPT_STRING_LIST('X', "strategy-option", &strategy_options,
1408 N_("option"),
1409 N_("pass the argument through to the merge "
1410 "strategy")),
9dba809a
PK
1411 OPT_BOOL(0, "root", &options.root,
1412 N_("rebase all reachable commits up to the root(s)")),
d421afa0 1413 OPT_BOOL(0, "reschedule-failed-exec",
906b6394 1414 &reschedule_failed_exec,
d421afa0 1415 N_("automatically re-schedule any `exec` that fails")),
0fcb4f6b
JT
1416 OPT_BOOL(0, "reapply-cherry-picks", &options.reapply_cherry_picks,
1417 N_("apply all changes, even those already present upstream")),
f28d40d3
PK
1418 OPT_END(),
1419 };
f5769680 1420 int i;
ac7f467f 1421
f28d40d3
PK
1422 if (argc == 2 && !strcmp(argv[1], "-h"))
1423 usage_with_options(builtin_rebase_usage,
1424 builtin_rebase_options);
1425
73fdc535 1426 options.allow_empty_message = 1;
bff014da 1427 git_config(rebase_config, &options);
c241371c
ĐTCD
1428 /* options.gpg_sign_opt will be either "-S" or NULL */
1429 gpg_sign = options.gpg_sign_opt ? "" : NULL;
1430 FREE_AND_NULL(options.gpg_sign_opt);
bff014da 1431
d03ebd41
ÆAB
1432 if (options.use_legacy_rebase ||
1433 !git_env_bool("GIT_TEST_REBASE_USE_BUILTIN", -1))
1434 warning(_("the rebase.useBuiltin support has been removed!\n"
1435 "See its entry in 'git help config' for details."));
1436
0eabf4b9
PK
1437 strbuf_reset(&buf);
1438 strbuf_addf(&buf, "%s/applying", apply_dir());
1439 if(file_exists(buf.buf))
1440 die(_("It looks like 'git am' is in progress. Cannot rebase."));
1441
c54dacb5 1442 if (is_directory(apply_dir())) {
10cdb9f3 1443 options.type = REBASE_APPLY;
c54dacb5
PK
1444 options.state_dir = apply_dir();
1445 } else if (is_directory(merge_dir())) {
1446 strbuf_reset(&buf);
1447 strbuf_addf(&buf, "%s/rewritten", merge_dir());
1448 if (is_directory(buf.buf)) {
1449 options.type = REBASE_PRESERVE_MERGES;
1450 options.flags |= REBASE_INTERACTIVE_EXPLICIT;
1451 } else {
1452 strbuf_reset(&buf);
1453 strbuf_addf(&buf, "%s/interactive", merge_dir());
1454 if(file_exists(buf.buf)) {
10cdb9f3 1455 options.type = REBASE_MERGE;
c54dacb5
PK
1456 options.flags |= REBASE_INTERACTIVE_EXPLICIT;
1457 } else
1458 options.type = REBASE_MERGE;
1459 }
1460 options.state_dir = merge_dir();
1461 }
1462
1463 if (options.type != REBASE_UNSPECIFIED)
1464 in_progress = 1;
1465
f9573628 1466 total_argc = argc;
f28d40d3
PK
1467 argc = parse_options(argc, argv, prefix,
1468 builtin_rebase_options,
1469 builtin_rebase_usage, 0);
1470
297b1e17 1471 if (action != ACTION_NONE && total_argc != 2) {
f9573628
PK
1472 usage_with_options(builtin_rebase_usage,
1473 builtin_rebase_options);
1474 }
1475
f28d40d3
PK
1476 if (argc > 2)
1477 usage_with_options(builtin_rebase_usage,
1478 builtin_rebase_options);
ac7f467f 1479
427c3bd2
JS
1480 if (options.type == REBASE_PRESERVE_MERGES)
1481 warning(_("git rebase --preserve-merges is deprecated. "
1482 "Use --rebase-merges instead."));
1483
414d924b
DL
1484 if (keep_base) {
1485 if (options.onto_name)
1486 die(_("cannot combine '--keep-base' with '--onto'"));
1487 if (options.root)
1488 die(_("cannot combine '--keep-base' with '--root'"));
1489 }
1490
a35413c3
EN
1491 if (options.root && fork_point > 0)
1492 die(_("cannot combine '--root' with '--fork-point'"));
1493
297b1e17 1494 if (action != ACTION_NONE && !in_progress)
d732a570 1495 die(_("No rebase in progress?"));
13a5a9f0 1496 setenv(GIT_REFLOG_ACTION_ENVIRONMENT, "rebase", 0);
d732a570 1497
10cdb9f3 1498 if (action == ACTION_EDIT_TODO && !is_merge(&options))
51e9ea6d
PK
1499 die(_("The --edit-todo action can only be used during "
1500 "interactive rebase."));
1501
b3a5d5a8 1502 if (trace2_is_enabled()) {
10cdb9f3 1503 if (is_merge(&options))
b3a5d5a8
JH
1504 trace2_cmd_mode("interactive");
1505 else if (exec.nr)
1506 trace2_cmd_mode("interactive-exec");
1507 else
1508 trace2_cmd_mode(action_names[action]);
1509 }
1510
f9573628
PK
1511 switch (action) {
1512 case ACTION_CONTINUE: {
1513 struct object_id head;
1514 struct lock_file lock_file = LOCK_INIT;
1515 int fd;
1516
1517 options.action = "continue";
13a5a9f0 1518 set_reflog_action(&options);
f9573628
PK
1519
1520 /* Sanity check */
1521 if (get_oid("HEAD", &head))
1522 die(_("Cannot read HEAD"));
1523
1524 fd = hold_locked_index(&lock_file, 0);
e1ff0a32 1525 if (repo_read_index(the_repository) < 0)
f9573628
PK
1526 die(_("could not read index"));
1527 refresh_index(the_repository->index, REFRESH_QUIET, NULL, NULL,
1528 NULL);
1529 if (0 <= fd)
1b0d968b 1530 repo_update_index_if_able(the_repository, &lock_file);
f9573628
PK
1531 rollback_lock_file(&lock_file);
1532
5b02ca38 1533 if (has_unstaged_changes(the_repository, 1)) {
f9573628
PK
1534 puts(_("You must edit all merge conflicts and then\n"
1535 "mark them as resolved using git add"));
1536 exit(1);
1537 }
1538 if (read_basic_state(&options))
1539 exit(1);
1540 goto run_rebase;
1541 }
122420c2
PK
1542 case ACTION_SKIP: {
1543 struct string_list merge_rr = STRING_LIST_INIT_DUP;
1544
1545 options.action = "skip";
13a5a9f0 1546 set_reflog_action(&options);
122420c2 1547
55e6b354 1548 rerere_clear(the_repository, &merge_rr);
122420c2
PK
1549 string_list_clear(&merge_rr, 1);
1550
f213f069
DL
1551 if (reset_head(the_repository, NULL, "reset", NULL, RESET_HEAD_HARD,
1552 NULL, NULL, DEFAULT_REFLOG_ACTION) < 0)
122420c2 1553 die(_("could not discard worktree changes"));
f4a4b9ac 1554 remove_branch_state(the_repository, 0);
122420c2
PK
1555 if (read_basic_state(&options))
1556 exit(1);
1557 goto run_rebase;
1558 }
5e5d9619
PK
1559 case ACTION_ABORT: {
1560 struct string_list merge_rr = STRING_LIST_INIT_DUP;
1561 options.action = "abort";
13a5a9f0 1562 set_reflog_action(&options);
5e5d9619 1563
55e6b354 1564 rerere_clear(the_repository, &merge_rr);
5e5d9619
PK
1565 string_list_clear(&merge_rr, 1);
1566
1567 if (read_basic_state(&options))
1568 exit(1);
f213f069 1569 if (reset_head(the_repository, &options.orig_head, "reset",
bac2a1e3 1570 options.head_name, RESET_HEAD_HARD,
f213f069 1571 NULL, NULL, DEFAULT_REFLOG_ACTION) < 0)
5e5d9619
PK
1572 die(_("could not move back to %s"),
1573 oid_to_hex(&options.orig_head));
f4a4b9ac 1574 remove_branch_state(the_repository, 0);
d3fce47d 1575 ret = !!finish_rebase(&options);
5e5d9619
PK
1576 goto cleanup;
1577 }
5a614945 1578 case ACTION_QUIT: {
9b2df3e8 1579 save_autostash(state_dir_path("autostash", &options));
10cdb9f3 1580 if (options.type == REBASE_MERGE) {
d559f502
PW
1581 struct replay_opts replay = REPLAY_OPTS_INIT;
1582
1583 replay.action = REPLAY_INTERACTIVE_REBASE;
1584 ret = !!sequencer_remove_state(&replay);
1585 } else {
1586 strbuf_reset(&buf);
1587 strbuf_addstr(&buf, options.state_dir);
1588 ret = !!remove_dir_recursively(&buf, 0);
1589 if (ret)
1590 error(_("could not remove '%s'"),
1591 options.state_dir);
1592 }
5a614945
PK
1593 goto cleanup;
1594 }
51e9ea6d
PK
1595 case ACTION_EDIT_TODO:
1596 options.action = "edit-todo";
1597 options.dont_finish_rebase = 1;
1598 goto run_rebase;
1599 case ACTION_SHOW_CURRENT_PATCH:
1600 options.action = "show-current-patch";
1601 options.dont_finish_rebase = 1;
1602 goto run_rebase;
297b1e17 1603 case ACTION_NONE:
51e9ea6d 1604 break;
f9573628 1605 default:
51e9ea6d 1606 BUG("action: %d", action);
f9573628
PK
1607 }
1608
c54dacb5
PK
1609 /* Make sure no rebase is in progress */
1610 if (in_progress) {
1611 const char *last_slash = strrchr(options.state_dir, '/');
1612 const char *state_dir_base =
1613 last_slash ? last_slash + 1 : options.state_dir;
1614 const char *cmd_live_rebase =
1615 "git rebase (--continue | --abort | --skip)";
1616 strbuf_reset(&buf);
1617 strbuf_addf(&buf, "rm -fr \"%s\"", options.state_dir);
1618 die(_("It seems that there is already a %s directory, and\n"
1619 "I wonder if you are in the middle of another rebase. "
1620 "If that is the\n"
1621 "case, please try\n\t%s\n"
1622 "If that is not the case, please\n\t%s\n"
1623 "and run me again. I am stopping in case you still "
1624 "have something\n"
1625 "valuable there.\n"),
1626 state_dir_base, cmd_live_rebase, buf.buf);
1627 }
1628
befb89ce
EN
1629 if ((options.flags & REBASE_INTERACTIVE_EXPLICIT) ||
1630 (action != ACTION_NONE) ||
1631 (exec.nr > 0) ||
1632 options.autosquash) {
1633 allow_preemptive_ff = 0;
1634 }
a3894aad 1635 if (options.committer_date_is_author_date || options.ignore_date)
7573cec5 1636 options.flags |= REBASE_FORCE;
befb89ce 1637
d70a9eb6
JK
1638 for (i = 0; i < options.git_am_opts.nr; i++) {
1639 const char *option = options.git_am_opts.v[i], *p;
a3894aad 1640 if (!strcmp(option, "--whitespace=fix") ||
f5769680 1641 !strcmp(option, "--whitespace=strip"))
befb89ce 1642 allow_preemptive_ff = 0;
04519d72
JS
1643 else if (skip_prefix(option, "-C", &p)) {
1644 while (*p)
1645 if (!isdigit(*(p++)))
1646 die(_("switch `C' expects a "
1647 "numerical value"));
1648 } else if (skip_prefix(option, "--whitespace=", &p)) {
1649 if (*p && strcmp(p, "warn") && strcmp(p, "nowarn") &&
1650 strcmp(p, "error") && strcmp(p, "error-all"))
1651 die("Invalid whitespace option: '%s'", p);
1652 }
38dbcef2
PK
1653 }
1654
c762aada
PW
1655 for (i = 0; i < exec.nr; i++)
1656 if (check_exec_cmd(exec.items[i].string))
1657 exit(1);
1658
f5769680 1659 if (!(options.flags & REBASE_NO_QUIET))
22f9b7f3 1660 strvec_push(&options.git_am_opts, "-q");
53f9e5be 1661
e98c4269 1662 if (options.empty != EMPTY_UNSPECIFIED)
10cdb9f3 1663 imply_merge(&options, "--empty");
002ee2fe 1664
0fcb4f6b
JT
1665 if (options.reapply_cherry_picks)
1666 imply_merge(&options, "--reapply-cherry-picks");
1667
c241371c 1668 if (gpg_sign)
12026a41 1669 options.gpg_sign_opt = xstrfmt("-S%s", gpg_sign);
12026a41 1670
68e46d78
PK
1671 if (exec.nr) {
1672 int i;
1673
10cdb9f3 1674 imply_merge(&options, "--exec");
68e46d78
PK
1675
1676 strbuf_reset(&buf);
1677 for (i = 0; i < exec.nr; i++)
1678 strbuf_addf(&buf, "exec %s\n", exec.items[i].string);
1679 options.cmd = xstrdup(buf.buf);
1680 }
1681
3c3588c7
PK
1682 if (rebase_merges) {
1683 if (!*rebase_merges)
1684 ; /* default mode; do nothing */
1685 else if (!strcmp("rebase-cousins", rebase_merges))
1686 options.rebase_cousins = 1;
1687 else if (strcmp("no-rebase-cousins", rebase_merges))
1688 die(_("Unknown mode: %s"), rebase_merges);
1689 options.rebase_merges = 1;
10cdb9f3 1690 imply_merge(&options, "--rebase-merges");
3c3588c7
PK
1691 }
1692
ef484add
RA
1693 if (options.type == REBASE_APPLY) {
1694 if (ignore_whitespace)
9c31b19d
JH
1695 strvec_push(&options.git_am_opts,
1696 "--ignore-whitespace");
7573cec5 1697 if (options.committer_date_is_author_date)
9c31b19d
JH
1698 strvec_push(&options.git_am_opts,
1699 "--committer-date-is-author-date");
a3894aad 1700 if (options.ignore_date)
9c31b19d 1701 strvec_push(&options.git_am_opts, "--ignore-date");
ef484add
RA
1702 } else {
1703 /* REBASE_MERGE and PRESERVE_MERGES */
1704 if (ignore_whitespace) {
1705 string_list_append(&strategy_options,
1706 "ignore-space-change");
1707 }
1708 }
1709
ba1905a5
PK
1710 if (strategy_options.nr) {
1711 int i;
1712
1713 if (!options.strategy)
1714 options.strategy = "recursive";
1715
1716 strbuf_reset(&buf);
1717 for (i = 0; i < strategy_options.nr; i++)
1718 strbuf_addf(&buf, " --%s",
1719 strategy_options.items[i].string);
1720 options.strategy_opts = xstrdup(buf.buf);
1721 }
1722
1723 if (options.strategy) {
1724 options.strategy = xstrdup(options.strategy);
1725 switch (options.type) {
10cdb9f3 1726 case REBASE_APPLY:
ba1905a5
PK
1727 die(_("--strategy requires --merge or --interactive"));
1728 case REBASE_MERGE:
ba1905a5
PK
1729 case REBASE_PRESERVE_MERGES:
1730 /* compatible */
1731 break;
1732 case REBASE_UNSPECIFIED:
1733 options.type = REBASE_MERGE;
1734 break;
1735 default:
1736 BUG("unhandled rebase type (%d)", options.type);
1737 }
1738 }
1739
68aa495b 1740 if (options.type == REBASE_MERGE)
10cdb9f3 1741 imply_merge(&options, "--merge");
68aa495b 1742
9dba809a 1743 if (options.root && !options.onto_name)
10cdb9f3 1744 imply_merge(&options, "--root without --onto");
9dba809a 1745
cda614e4
PK
1746 if (isatty(2) && options.flags & REBASE_NO_QUIET)
1747 strbuf_addstr(&options.git_format_patch_opt, " --progress");
1748
d70a9eb6 1749 if (options.git_am_opts.nr || options.type == REBASE_APPLY) {
10cdb9f3 1750 /* all am options except -q are compatible only with --apply */
d70a9eb6
JK
1751 for (i = options.git_am_opts.nr - 1; i >= 0; i--)
1752 if (strcmp(options.git_am_opts.v[i], "-q"))
8af14f08
EN
1753 break;
1754
8295ed69 1755 if (i >= 0) {
10cdb9f3
EN
1756 if (is_merge(&options))
1757 die(_("cannot combine apply options with "
1758 "merge options"));
8295ed69 1759 else
10cdb9f3 1760 options.type = REBASE_APPLY;
8295ed69
EN
1761 }
1762 }
1763
1764 if (options.type == REBASE_UNSPECIFIED) {
1765 if (!strcmp(options.default_backend, "merge"))
10cdb9f3
EN
1766 imply_merge(&options, "--merge");
1767 else if (!strcmp(options.default_backend, "apply"))
1768 options.type = REBASE_APPLY;
8295ed69
EN
1769 else
1770 die(_("Unknown rebase backend: %s"),
1771 options.default_backend);
8af14f08
EN
1772 }
1773
ac7f467f
PK
1774 switch (options.type) {
1775 case REBASE_MERGE:
ac7f467f
PK
1776 case REBASE_PRESERVE_MERGES:
1777 options.state_dir = merge_dir();
1778 break;
10cdb9f3 1779 case REBASE_APPLY:
ac7f467f
PK
1780 options.state_dir = apply_dir();
1781 break;
1782 default:
8295ed69 1783 BUG("options.type was just set above; should be unreachable.");
ac7f467f
PK
1784 }
1785
e98c4269
EN
1786 if (options.empty == EMPTY_UNSPECIFIED) {
1787 if (options.flags & REBASE_INTERACTIVE_EXPLICIT)
1788 options.empty = EMPTY_ASK;
1789 else if (exec.nr > 0)
1790 options.empty = EMPTY_KEEP;
1791 else
1792 options.empty = EMPTY_DROP;
1793 }
10cdb9f3 1794 if (reschedule_failed_exec > 0 && !is_merge(&options))
906b6394
JS
1795 die(_("--reschedule-failed-exec requires "
1796 "--exec or --interactive"));
1797 if (reschedule_failed_exec >= 0)
1798 options.reschedule_failed_exec = reschedule_failed_exec;
d421afa0 1799
73d51ed0
PK
1800 if (options.signoff) {
1801 if (options.type == REBASE_PRESERVE_MERGES)
1802 die("cannot combine '--signoff' with "
1803 "'--preserve-merges'");
22f9b7f3 1804 strvec_push(&options.git_am_opts, "--signoff");
73d51ed0
PK
1805 options.flags |= REBASE_FORCE;
1806 }
1807
d421afa0 1808 if (options.type == REBASE_PRESERVE_MERGES) {
b361bd75
PK
1809 /*
1810 * Note: incompatibility with --signoff handled in signoff block above
1811 * Note: incompatibility with --interactive is just a strong warning;
1812 * git-rebase.txt caveats with "unless you know what you are doing"
1813 */
1814 if (options.rebase_merges)
c913c596 1815 die(_("cannot combine '--preserve-merges' with "
b361bd75
PK
1816 "'--rebase-merges'"));
1817
d421afa0
JS
1818 if (options.reschedule_failed_exec)
1819 die(_("error: cannot combine '--preserve-merges' with "
1820 "'--reschedule-failed-exec'"));
1821 }
1822
ac7f467f 1823 if (!options.root) {
8f5986d9
PK
1824 if (argc < 1) {
1825 struct branch *branch;
1826
1827 branch = branch_get(NULL);
1828 options.upstream_name = branch_get_upstream(branch,
1829 NULL);
1830 if (!options.upstream_name)
1831 error_on_missing_default_upstream();
1832 if (fork_point < 0)
1833 fork_point = 1;
1834 } else {
f28d40d3 1835 options.upstream_name = argv[0];
ac7f467f
PK
1836 argc--;
1837 argv++;
1838 if (!strcmp(options.upstream_name, "-"))
1839 options.upstream_name = "@{-1}";
1840 }
1841 options.upstream = peel_committish(options.upstream_name);
1842 if (!options.upstream)
1843 die(_("invalid upstream '%s'"), options.upstream_name);
06e4775a 1844 options.upstream_arg = options.upstream_name;
9dba809a
PK
1845 } else {
1846 if (!options.onto_name) {
1847 if (commit_tree("", 0, the_hash_algo->empty_tree, NULL,
1848 &squash_onto, NULL, NULL) < 0)
1849 die(_("Could not create new root commit"));
1850 options.squash_onto = &squash_onto;
1851 options.onto_name = squash_onto_name =
1852 xstrdup(oid_to_hex(&squash_onto));
e1fac531
JS
1853 } else
1854 options.root_with_onto = 1;
1855
9dba809a
PK
1856 options.upstream_name = NULL;
1857 options.upstream = NULL;
1858 if (argc > 1)
1859 usage_with_options(builtin_rebase_usage,
1860 builtin_rebase_options);
1861 options.upstream_arg = "--root";
1862 }
ac7f467f
PK
1863
1864 /* Make sure the branch to rebase onto is valid. */
414d924b
DL
1865 if (keep_base) {
1866 strbuf_reset(&buf);
1867 strbuf_addstr(&buf, options.upstream_name);
1868 strbuf_addstr(&buf, "...");
1869 options.onto_name = xstrdup(buf.buf);
1870 } else if (!options.onto_name)
ac7f467f
PK
1871 options.onto_name = options.upstream_name;
1872 if (strstr(options.onto_name, "...")) {
414d924b
DL
1873 if (get_oid_mb(options.onto_name, &merge_base) < 0) {
1874 if (keep_base)
1875 die(_("'%s': need exactly one merge base with branch"),
1876 options.upstream_name);
1877 else
1878 die(_("'%s': need exactly one merge base"),
1879 options.onto_name);
1880 }
075bc852
PK
1881 options.onto = lookup_commit_or_die(&merge_base,
1882 options.onto_name);
ac7f467f
PK
1883 } else {
1884 options.onto = peel_committish(options.onto_name);
1885 if (!options.onto)
1886 die(_("Does not point to a valid commit '%s'"),
1887 options.onto_name);
1888 }
1889
1890 /*
1891 * If the branch to rebase is given, that is the branch we will rebase
1892 * branch_name -- branch/commit being rebased, or
1893 * HEAD (already detached)
1894 * orig_head -- commit object name of tip of the branch before rebasing
d4c569f8 1895 * head_name -- refs/heads/<that-branch> or NULL (detached HEAD)
ac7f467f 1896 */
e65123a7
PK
1897 if (argc == 1) {
1898 /* Is it "rebase other branchname" or "rebase other commit"? */
1899 branch_name = argv[0];
1900 options.switch_to = argv[0];
1901
1902 /* Is it a local branch? */
1903 strbuf_reset(&buf);
1904 strbuf_addf(&buf, "refs/heads/%s", branch_name);
b5cabb4a
ES
1905 if (!read_ref(buf.buf, &options.orig_head)) {
1906 die_if_checked_out(buf.buf, 1);
e65123a7
PK
1907 options.head_name = xstrdup(buf.buf);
1908 /* If not is it a valid ref (branch or commit)? */
b5cabb4a 1909 } else if (!get_oid(branch_name, &options.orig_head))
e65123a7
PK
1910 options.head_name = NULL;
1911 else
1912 die(_("fatal: no such branch/commit '%s'"),
1913 branch_name);
1914 } else if (argc == 0) {
ac7f467f
PK
1915 /* Do not need to switch branches, we are already on it. */
1916 options.head_name =
1917 xstrdup_or_null(resolve_ref_unsafe("HEAD", 0, NULL,
1918 &flags));
1919 if (!options.head_name)
1920 die(_("No such ref: %s"), "HEAD");
1921 if (flags & REF_ISSYMREF) {
1922 if (!skip_prefix(options.head_name,
1923 "refs/heads/", &branch_name))
1924 branch_name = options.head_name;
1925
1926 } else {
7762f44e 1927 FREE_AND_NULL(options.head_name);
ac7f467f
PK
1928 branch_name = "HEAD";
1929 }
1930 if (get_oid("HEAD", &options.orig_head))
1931 die(_("Could not resolve HEAD to a revision"));
e65123a7
PK
1932 } else
1933 BUG("unexpected number of arguments left to parse");
ac7f467f 1934
92d0d74e
PK
1935 if (fork_point > 0) {
1936 struct commit *head =
1937 lookup_commit_reference(the_repository,
1938 &options.orig_head);
1939 options.restrict_revision =
1940 get_fork_point(options.upstream_name, head);
1941 }
1942
e1ff0a32 1943 if (repo_read_index(the_repository) < 0)
e0333e5c
PK
1944 die(_("could not read index"));
1945
6defce2b 1946 if (options.autostash) {
9bb3dea4
DL
1947 create_autostash(the_repository, state_dir_path("autostash", &options),
1948 DEFAULT_REFLOG_ACTION);
6defce2b
PK
1949 }
1950
5b02ca38 1951 if (require_clean_work_tree(the_repository, "rebase",
e0333e5c
PK
1952 _("Please commit or stash them."), 1, 1)) {
1953 ret = 1;
1954 goto cleanup;
ac7f467f
PK
1955 }
1956
9a48a615
PK
1957 /*
1958 * Now we are rebasing commits upstream..orig_head (or with --root,
1959 * everything leading up to orig_head) on top of onto.
1960 */
1961
1962 /*
1963 * Check if we are already based on onto with linear history,
c0efb4c1 1964 * in which case we could fast-forward without replacing the commits
befb89ce
EN
1965 * with new commits recreated by replaying their changes.
1966 *
1967 * Note that can_fast_forward() initializes merge_base, so we have to
1968 * call it before checking allow_preemptive_ff.
9a48a615 1969 */
4effc5bc
DL
1970 if (can_fast_forward(options.onto, options.upstream, options.restrict_revision,
1971 &options.orig_head, &merge_base) &&
befb89ce 1972 allow_preemptive_ff) {
9a48a615
PK
1973 int flag;
1974
1ed9c14f 1975 if (!(options.flags & REBASE_FORCE)) {
e65123a7
PK
1976 /* Lazily switch to the target branch if needed... */
1977 if (options.switch_to) {
e65123a7 1978 strbuf_reset(&buf);
13a5a9f0
JS
1979 strbuf_addf(&buf, "%s: checkout %s",
1980 getenv(GIT_REFLOG_ACTION_ENVIRONMENT),
e65123a7 1981 options.switch_to);
f213f069
DL
1982 if (reset_head(the_repository,
1983 &options.orig_head, "checkout",
8581df65
OS
1984 options.head_name,
1985 RESET_HEAD_RUN_POST_CHECKOUT_HOOK,
f213f069
DL
1986 NULL, buf.buf,
1987 DEFAULT_REFLOG_ACTION) < 0) {
e65123a7
PK
1988 ret = !!error(_("could not switch to "
1989 "%s"),
1990 options.switch_to);
1991 goto cleanup;
1992 }
1993 }
1994
1ed9c14f
PK
1995 if (!(options.flags & REBASE_NO_QUIET))
1996 ; /* be quiet */
1997 else if (!strcmp(branch_name, "HEAD") &&
1998 resolve_ref_unsafe("HEAD", 0, NULL, &flag))
1999 puts(_("HEAD is up to date."));
2000 else
2001 printf(_("Current branch %s is up to date.\n"),
2002 branch_name);
2003 ret = !!finish_rebase(&options);
2004 goto cleanup;
2005 } else if (!(options.flags & REBASE_NO_QUIET))
9a48a615
PK
2006 ; /* be quiet */
2007 else if (!strcmp(branch_name, "HEAD") &&
2008 resolve_ref_unsafe("HEAD", 0, NULL, &flag))
2009 puts(_("HEAD is up to date, rebase forced."));
2010 else
2011 printf(_("Current branch %s is up to date, rebase "
2012 "forced.\n"), branch_name);
2013 }
2014
06e4775a
PK
2015 /* If a hook exists, give it a chance to interrupt*/
2016 if (!ok_to_skip_pre_rebase &&
2017 run_hook_le(NULL, "pre-rebase", options.upstream_arg,
2018 argc ? argv[0] : NULL, NULL))
2019 die(_("The pre-rebase hook refused to rebase."));
2020
bff014da
PK
2021 if (options.flags & REBASE_DIFFSTAT) {
2022 struct diff_options opts;
2023
8797f0f0
JS
2024 if (options.flags & REBASE_VERBOSE) {
2025 if (is_null_oid(&merge_base))
2026 printf(_("Changes to %s:\n"),
2027 oid_to_hex(&options.onto->object.oid));
2028 else
2029 printf(_("Changes from %s to %s:\n"),
2030 oid_to_hex(&merge_base),
2031 oid_to_hex(&options.onto->object.oid));
2032 }
bff014da
PK
2033
2034 /* We want color (if set), but no pager */
2035 diff_setup(&opts);
2036 opts.stat_width = -1; /* use full terminal width */
2037 opts.stat_graph_width = -1; /* respect statGraphWidth config */
2038 opts.output_format |=
2039 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
2040 opts.detect_rename = DIFF_DETECT_RENAME;
2041 diff_setup_done(&opts);
8797f0f0
JS
2042 diff_tree_oid(is_null_oid(&merge_base) ?
2043 the_hash_algo->empty_tree : &merge_base,
2044 &options.onto->object.oid, "", &opts);
bff014da
PK
2045 diffcore_std(&opts);
2046 diff_flush(&opts);
2047 }
2048
10cdb9f3 2049 if (is_merge(&options))
361badd3
PK
2050 goto run_rebase;
2051
bff014da
PK
2052 /* Detach HEAD and reset the tree */
2053 if (options.flags & REBASE_NO_QUIET)
2054 printf(_("First, rewinding head to replay your work on top of "
2055 "it...\n"));
2056
13a5a9f0
JS
2057 strbuf_addf(&msg, "%s: checkout %s",
2058 getenv(GIT_REFLOG_ACTION_ENVIRONMENT), options.onto_name);
f213f069 2059 if (reset_head(the_repository, &options.onto->object.oid, "checkout", NULL,
cbea6461 2060 RESET_HEAD_DETACH | RESET_ORIG_HEAD |
9fbcc3d2 2061 RESET_HEAD_RUN_POST_CHECKOUT_HOOK,
f213f069 2062 NULL, msg.buf, DEFAULT_REFLOG_ACTION))
ac7f467f
PK
2063 die(_("Could not detach HEAD"));
2064 strbuf_release(&msg);
2065
7eecfa56
PK
2066 /*
2067 * If the onto is a proper descendant of the tip of the branch, then
2068 * we just fast-forwarded.
2069 */
2070 strbuf_reset(&msg);
d2c4e629 2071 if (oideq(&merge_base, &options.orig_head)) {
eff199a6 2072 printf(_("Fast-forwarded %s to %s.\n"),
7eecfa56
PK
2073 branch_name, options.onto_name);
2074 strbuf_addf(&msg, "rebase finished: %s onto %s",
2075 options.head_name ? options.head_name : "detached HEAD",
2076 oid_to_hex(&options.onto->object.oid));
f213f069
DL
2077 reset_head(the_repository, NULL, "Fast-forwarded", options.head_name,
2078 RESET_HEAD_REFS_ONLY, "HEAD", msg.buf,
2079 DEFAULT_REFLOG_ACTION);
7eecfa56
PK
2080 strbuf_release(&msg);
2081 ret = !!finish_rebase(&options);
2082 goto cleanup;
2083 }
2084
ac7f467f
PK
2085 strbuf_addf(&revisions, "%s..%s",
2086 options.root ? oid_to_hex(&options.onto->object.oid) :
2087 (options.restrict_revision ?
2088 oid_to_hex(&options.restrict_revision->object.oid) :
2089 oid_to_hex(&options.upstream->object.oid)),
2090 oid_to_hex(&options.orig_head));
2091
2092 options.revisions = revisions.buf;
2093
f9573628 2094run_rebase:
460bc3ce 2095 ret = !!run_specific_rebase(&options, action);
ac7f467f 2096
e0333e5c 2097cleanup:
7372eaeb 2098 strbuf_release(&buf);
ac7f467f
PK
2099 strbuf_release(&revisions);
2100 free(options.head_name);
12026a41 2101 free(options.gpg_sign_opt);
68e46d78 2102 free(options.cmd);
9dba809a 2103 free(squash_onto_name);
ac7f467f 2104 return ret;
55071ea2 2105}