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