rebase: use "cleanup" pattern in do_interactive_rebase()
[git.git] / builtin / rebase.c
blobc97ce642cf3abb83e6cd30b0703cb4d41dea99fd
1 /*
2 * "git rebase" builtin command
4 * Copyright (c) 2018 Pratik Karki
5 */
7 #define USE_THE_INDEX_VARIABLE
8 #include "builtin.h"
9 #include "run-command.h"
10 #include "exec-cmd.h"
11 #include "strvec.h"
12 #include "dir.h"
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"
20 #include "parse-options.h"
21 #include "commit.h"
22 #include "diff.h"
23 #include "wt-status.h"
24 #include "revision.h"
25 #include "commit-reach.h"
26 #include "rerere.h"
27 #include "branch.h"
28 #include "sequencer.h"
29 #include "rebase-interactive.h"
30 #include "reset.h"
31 #include "hook.h"
33 static char const * const builtin_rebase_usage[] = {
34 N_("git rebase [-i] [options] [--exec <cmd>] "
35 "[--onto <newbase> | --keep-base] [<upstream> [<branch>]]"),
36 N_("git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] "
37 "--root [<branch>]"),
38 "git rebase --continue | --abort | --skip | --edit-todo",
39 NULL
42 static GIT_PATH_FUNC(path_squash_onto, "rebase-merge/squash-onto")
43 static GIT_PATH_FUNC(path_interactive, "rebase-merge/interactive")
44 static GIT_PATH_FUNC(apply_dir, "rebase-apply")
45 static GIT_PATH_FUNC(merge_dir, "rebase-merge")
47 enum rebase_type {
48 REBASE_UNSPECIFIED = -1,
49 REBASE_APPLY,
50 REBASE_MERGE
53 enum empty_type {
54 EMPTY_UNSPECIFIED = -1,
55 EMPTY_DROP,
56 EMPTY_KEEP,
57 EMPTY_ASK
60 enum action {
61 ACTION_NONE = 0,
62 ACTION_CONTINUE,
63 ACTION_SKIP,
64 ACTION_ABORT,
65 ACTION_QUIT,
66 ACTION_EDIT_TODO,
67 ACTION_SHOW_CURRENT_PATCH
70 static const char *action_names[] = {
71 "undefined",
72 "continue",
73 "skip",
74 "abort",
75 "quit",
76 "edit_todo",
77 "show_current_patch"
80 struct rebase_options {
81 enum rebase_type type;
82 enum empty_type empty;
83 const char *default_backend;
84 const char *state_dir;
85 struct commit *upstream;
86 const char *upstream_name;
87 const char *upstream_arg;
88 char *head_name;
89 struct commit *orig_head;
90 struct commit *onto;
91 const char *onto_name;
92 const char *revisions;
93 const char *switch_to;
94 int root, root_with_onto;
95 struct object_id *squash_onto;
96 struct commit *restrict_revision;
97 int dont_finish_rebase;
98 enum {
99 REBASE_NO_QUIET = 1<<0,
100 REBASE_VERBOSE = 1<<1,
101 REBASE_DIFFSTAT = 1<<2,
102 REBASE_FORCE = 1<<3,
103 REBASE_INTERACTIVE_EXPLICIT = 1<<4,
104 } flags;
105 struct strvec git_am_opts;
106 enum action action;
107 char *reflog_action;
108 int signoff;
109 int allow_rerere_autoupdate;
110 int keep_empty;
111 int autosquash;
112 char *gpg_sign_opt;
113 int autostash;
114 int committer_date_is_author_date;
115 int ignore_date;
116 struct string_list exec;
117 int allow_empty_message;
118 int rebase_merges, rebase_cousins;
119 char *strategy, *strategy_opts;
120 struct strbuf git_format_patch_opt;
121 int reschedule_failed_exec;
122 int reapply_cherry_picks;
123 int fork_point;
124 int update_refs;
125 int config_autosquash;
126 int config_update_refs;
129 #define REBASE_OPTIONS_INIT { \
130 .type = REBASE_UNSPECIFIED, \
131 .empty = EMPTY_UNSPECIFIED, \
132 .keep_empty = 1, \
133 .default_backend = "merge", \
134 .flags = REBASE_NO_QUIET, \
135 .git_am_opts = STRVEC_INIT, \
136 .exec = STRING_LIST_INIT_NODUP, \
137 .git_format_patch_opt = STRBUF_INIT, \
138 .fork_point = -1, \
139 .reapply_cherry_picks = -1, \
140 .allow_empty_message = 1, \
141 .autosquash = -1, \
142 .config_autosquash = -1, \
143 .update_refs = -1, \
144 .config_update_refs = -1, \
147 static struct replay_opts get_replay_opts(const struct rebase_options *opts)
149 struct replay_opts replay = REPLAY_OPTS_INIT;
151 replay.action = REPLAY_INTERACTIVE_REBASE;
152 replay.strategy = NULL;
153 sequencer_init_config(&replay);
155 replay.signoff = opts->signoff;
156 replay.allow_ff = !(opts->flags & REBASE_FORCE);
157 if (opts->allow_rerere_autoupdate)
158 replay.allow_rerere_auto = opts->allow_rerere_autoupdate;
159 replay.allow_empty = 1;
160 replay.allow_empty_message = opts->allow_empty_message;
161 replay.drop_redundant_commits = (opts->empty == EMPTY_DROP);
162 replay.keep_redundant_commits = (opts->empty == EMPTY_KEEP);
163 replay.quiet = !(opts->flags & REBASE_NO_QUIET);
164 replay.verbose = opts->flags & REBASE_VERBOSE;
165 replay.reschedule_failed_exec = opts->reschedule_failed_exec;
166 replay.committer_date_is_author_date =
167 opts->committer_date_is_author_date;
168 replay.ignore_date = opts->ignore_date;
169 replay.gpg_sign = xstrdup_or_null(opts->gpg_sign_opt);
170 replay.reflog_action = xstrdup(opts->reflog_action);
171 if (opts->strategy)
172 replay.strategy = xstrdup_or_null(opts->strategy);
173 else if (!replay.strategy && replay.default_strategy) {
174 replay.strategy = replay.default_strategy;
175 replay.default_strategy = NULL;
178 if (opts->strategy_opts)
179 parse_strategy_opts(&replay, opts->strategy_opts);
181 if (opts->squash_onto) {
182 oidcpy(&replay.squash_onto, opts->squash_onto);
183 replay.have_squash_onto = 1;
186 return replay;
189 static int edit_todo_file(unsigned flags)
191 const char *todo_file = rebase_path_todo();
192 struct todo_list todo_list = TODO_LIST_INIT,
193 new_todo = TODO_LIST_INIT;
194 int res = 0;
196 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
197 return error_errno(_("could not read '%s'."), todo_file);
199 strbuf_stripspace(&todo_list.buf, 1);
200 res = edit_todo_list(the_repository, &todo_list, &new_todo, NULL, NULL, flags);
201 if (!res && todo_list_write_to_file(the_repository, &new_todo, todo_file,
202 NULL, NULL, -1, flags & ~(TODO_LIST_SHORTEN_IDS)))
203 res = error_errno(_("could not write '%s'"), todo_file);
205 todo_list_release(&todo_list);
206 todo_list_release(&new_todo);
208 return res;
211 static int get_revision_ranges(struct commit *upstream, struct commit *onto,
212 struct object_id *orig_head, char **revisions,
213 char **shortrevisions)
215 struct commit *base_rev = upstream ? upstream : onto;
216 const char *shorthead;
218 *revisions = xstrfmt("%s...%s", oid_to_hex(&base_rev->object.oid),
219 oid_to_hex(orig_head));
221 shorthead = find_unique_abbrev(orig_head, DEFAULT_ABBREV);
223 if (upstream) {
224 const char *shortrev;
226 shortrev = find_unique_abbrev(&base_rev->object.oid,
227 DEFAULT_ABBREV);
229 *shortrevisions = xstrfmt("%s..%s", shortrev, shorthead);
230 } else
231 *shortrevisions = xstrdup(shorthead);
233 return 0;
236 static int init_basic_state(struct replay_opts *opts, const char *head_name,
237 struct commit *onto,
238 const struct object_id *orig_head)
240 FILE *interactive;
242 if (!is_directory(merge_dir()) && mkdir_in_gitdir(merge_dir()))
243 return error_errno(_("could not create temporary %s"), merge_dir());
245 delete_reflog("REBASE_HEAD");
247 interactive = fopen(path_interactive(), "w");
248 if (!interactive)
249 return error_errno(_("could not mark as interactive"));
250 fclose(interactive);
252 return write_basic_state(opts, head_name, onto, orig_head);
255 static int do_interactive_rebase(struct rebase_options *opts, unsigned flags)
257 int ret = -1;
258 char *revisions = NULL, *shortrevisions = NULL;
259 struct strvec make_script_args = STRVEC_INIT;
260 struct todo_list todo_list = TODO_LIST_INIT;
261 struct replay_opts replay = get_replay_opts(opts);
263 if (get_revision_ranges(opts->upstream, opts->onto, &opts->orig_head->object.oid,
264 &revisions, &shortrevisions))
265 goto cleanup;
267 if (init_basic_state(&replay,
268 opts->head_name ? opts->head_name : "detached HEAD",
269 opts->onto, &opts->orig_head->object.oid))
270 goto cleanup;
272 if (!opts->upstream && opts->squash_onto)
273 write_file(path_squash_onto(), "%s\n",
274 oid_to_hex(opts->squash_onto));
276 strvec_pushl(&make_script_args, "", revisions, NULL);
277 if (opts->restrict_revision)
278 strvec_pushf(&make_script_args, "^%s",
279 oid_to_hex(&opts->restrict_revision->object.oid));
281 ret = sequencer_make_script(the_repository, &todo_list.buf,
282 make_script_args.nr, make_script_args.v,
283 flags);
285 if (ret)
286 error(_("could not generate todo list"));
287 else {
288 discard_index(&the_index);
289 if (todo_list_parse_insn_buffer(the_repository, todo_list.buf.buf,
290 &todo_list))
291 BUG("unusable todo list");
293 ret = complete_action(the_repository, &replay, flags,
294 shortrevisions, opts->onto_name, opts->onto,
295 &opts->orig_head->object.oid, &opts->exec,
296 opts->autosquash, opts->update_refs, &todo_list);
299 cleanup:
300 free(revisions);
301 free(shortrevisions);
302 todo_list_release(&todo_list);
303 strvec_clear(&make_script_args);
305 return ret;
308 static int run_sequencer_rebase(struct rebase_options *opts)
310 unsigned flags = 0;
311 int abbreviate_commands = 0, ret = 0;
313 git_config_get_bool("rebase.abbreviatecommands", &abbreviate_commands);
315 flags |= opts->keep_empty ? TODO_LIST_KEEP_EMPTY : 0;
316 flags |= abbreviate_commands ? TODO_LIST_ABBREVIATE_CMDS : 0;
317 flags |= opts->rebase_merges ? TODO_LIST_REBASE_MERGES : 0;
318 flags |= opts->rebase_cousins > 0 ? TODO_LIST_REBASE_COUSINS : 0;
319 flags |= opts->root_with_onto ? TODO_LIST_ROOT_WITH_ONTO : 0;
320 flags |= opts->reapply_cherry_picks ? TODO_LIST_REAPPLY_CHERRY_PICKS : 0;
321 flags |= opts->flags & REBASE_NO_QUIET ? TODO_LIST_WARN_SKIPPED_CHERRY_PICKS : 0;
323 switch (opts->action) {
324 case ACTION_NONE: {
325 if (!opts->onto && !opts->upstream)
326 die(_("a base commit must be provided with --upstream or --onto"));
328 ret = do_interactive_rebase(opts, flags);
329 break;
331 case ACTION_SKIP: {
332 struct string_list merge_rr = STRING_LIST_INIT_DUP;
334 rerere_clear(the_repository, &merge_rr);
336 /* fallthrough */
337 case ACTION_CONTINUE: {
338 struct replay_opts replay_opts = get_replay_opts(opts);
340 ret = sequencer_continue(the_repository, &replay_opts);
341 break;
343 case ACTION_EDIT_TODO:
344 ret = edit_todo_file(flags);
345 break;
346 case ACTION_SHOW_CURRENT_PATCH: {
347 struct child_process cmd = CHILD_PROCESS_INIT;
349 cmd.git_cmd = 1;
350 strvec_pushl(&cmd.args, "show", "REBASE_HEAD", "--", NULL);
351 ret = run_command(&cmd);
353 break;
355 default:
356 BUG("invalid command '%d'", opts->action);
359 return ret;
362 static void imply_merge(struct rebase_options *opts, const char *option);
363 static int parse_opt_keep_empty(const struct option *opt, const char *arg,
364 int unset)
366 struct rebase_options *opts = opt->value;
368 BUG_ON_OPT_ARG(arg);
370 imply_merge(opts, unset ? "--no-keep-empty" : "--keep-empty");
371 opts->keep_empty = !unset;
372 opts->type = REBASE_MERGE;
373 return 0;
376 static int is_merge(struct rebase_options *opts)
378 return opts->type == REBASE_MERGE;
381 static void imply_merge(struct rebase_options *opts, const char *option)
383 switch (opts->type) {
384 case REBASE_APPLY:
385 die(_("%s requires the merge backend"), option);
386 break;
387 case REBASE_MERGE:
388 break;
389 default:
390 opts->type = REBASE_MERGE; /* implied */
391 break;
395 /* Returns the filename prefixed by the state_dir */
396 static const char *state_dir_path(const char *filename, struct rebase_options *opts)
398 static struct strbuf path = STRBUF_INIT;
399 static size_t prefix_len;
401 if (!prefix_len) {
402 strbuf_addf(&path, "%s/", opts->state_dir);
403 prefix_len = path.len;
406 strbuf_setlen(&path, prefix_len);
407 strbuf_addstr(&path, filename);
408 return path.buf;
411 /* Initialize the rebase options from the state directory. */
412 static int read_basic_state(struct rebase_options *opts)
414 struct strbuf head_name = STRBUF_INIT;
415 struct strbuf buf = STRBUF_INIT;
416 struct object_id oid;
418 if (!read_oneliner(&head_name, state_dir_path("head-name", opts),
419 READ_ONELINER_WARN_MISSING) ||
420 !read_oneliner(&buf, state_dir_path("onto", opts),
421 READ_ONELINER_WARN_MISSING))
422 return -1;
423 opts->head_name = starts_with(head_name.buf, "refs/") ?
424 xstrdup(head_name.buf) : NULL;
425 strbuf_release(&head_name);
426 if (get_oid_hex(buf.buf, &oid) ||
427 !(opts->onto = lookup_commit_object(the_repository, &oid)))
428 return error(_("invalid onto: '%s'"), buf.buf);
431 * We always write to orig-head, but interactive rebase used to write to
432 * head. Fall back to reading from head to cover for the case that the
433 * user upgraded git with an ongoing interactive rebase.
435 strbuf_reset(&buf);
436 if (file_exists(state_dir_path("orig-head", opts))) {
437 if (!read_oneliner(&buf, state_dir_path("orig-head", opts),
438 READ_ONELINER_WARN_MISSING))
439 return -1;
440 } else if (!read_oneliner(&buf, state_dir_path("head", opts),
441 READ_ONELINER_WARN_MISSING))
442 return -1;
443 if (get_oid_hex(buf.buf, &oid) ||
444 !(opts->orig_head = lookup_commit_object(the_repository, &oid)))
445 return error(_("invalid orig-head: '%s'"), buf.buf);
447 if (file_exists(state_dir_path("quiet", opts)))
448 opts->flags &= ~REBASE_NO_QUIET;
449 else
450 opts->flags |= REBASE_NO_QUIET;
452 if (file_exists(state_dir_path("verbose", opts)))
453 opts->flags |= REBASE_VERBOSE;
455 if (file_exists(state_dir_path("signoff", opts))) {
456 opts->signoff = 1;
457 opts->flags |= REBASE_FORCE;
460 if (file_exists(state_dir_path("allow_rerere_autoupdate", opts))) {
461 strbuf_reset(&buf);
462 if (!read_oneliner(&buf, state_dir_path("allow_rerere_autoupdate", opts),
463 READ_ONELINER_WARN_MISSING))
464 return -1;
465 if (!strcmp(buf.buf, "--rerere-autoupdate"))
466 opts->allow_rerere_autoupdate = RERERE_AUTOUPDATE;
467 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
468 opts->allow_rerere_autoupdate = RERERE_NOAUTOUPDATE;
469 else
470 warning(_("ignoring invalid allow_rerere_autoupdate: "
471 "'%s'"), buf.buf);
474 if (file_exists(state_dir_path("gpg_sign_opt", opts))) {
475 strbuf_reset(&buf);
476 if (!read_oneliner(&buf, state_dir_path("gpg_sign_opt", opts),
477 READ_ONELINER_WARN_MISSING))
478 return -1;
479 free(opts->gpg_sign_opt);
480 opts->gpg_sign_opt = xstrdup(buf.buf);
483 if (file_exists(state_dir_path("strategy", opts))) {
484 strbuf_reset(&buf);
485 if (!read_oneliner(&buf, state_dir_path("strategy", opts),
486 READ_ONELINER_WARN_MISSING))
487 return -1;
488 free(opts->strategy);
489 opts->strategy = xstrdup(buf.buf);
492 if (file_exists(state_dir_path("strategy_opts", opts))) {
493 strbuf_reset(&buf);
494 if (!read_oneliner(&buf, state_dir_path("strategy_opts", opts),
495 READ_ONELINER_WARN_MISSING))
496 return -1;
497 free(opts->strategy_opts);
498 opts->strategy_opts = xstrdup(buf.buf);
501 strbuf_release(&buf);
503 return 0;
506 static int rebase_write_basic_state(struct rebase_options *opts)
508 write_file(state_dir_path("head-name", opts), "%s",
509 opts->head_name ? opts->head_name : "detached HEAD");
510 write_file(state_dir_path("onto", opts), "%s",
511 opts->onto ? oid_to_hex(&opts->onto->object.oid) : "");
512 write_file(state_dir_path("orig-head", opts), "%s",
513 oid_to_hex(&opts->orig_head->object.oid));
514 if (!(opts->flags & REBASE_NO_QUIET))
515 write_file(state_dir_path("quiet", opts), "%s", "");
516 if (opts->flags & REBASE_VERBOSE)
517 write_file(state_dir_path("verbose", opts), "%s", "");
518 if (opts->strategy)
519 write_file(state_dir_path("strategy", opts), "%s",
520 opts->strategy);
521 if (opts->strategy_opts)
522 write_file(state_dir_path("strategy_opts", opts), "%s",
523 opts->strategy_opts);
524 if (opts->allow_rerere_autoupdate > 0)
525 write_file(state_dir_path("allow_rerere_autoupdate", opts),
526 "-%s-rerere-autoupdate",
527 opts->allow_rerere_autoupdate == RERERE_AUTOUPDATE ?
528 "" : "-no");
529 if (opts->gpg_sign_opt)
530 write_file(state_dir_path("gpg_sign_opt", opts), "%s",
531 opts->gpg_sign_opt);
532 if (opts->signoff)
533 write_file(state_dir_path("signoff", opts), "--signoff");
535 return 0;
538 static int finish_rebase(struct rebase_options *opts)
540 struct strbuf dir = STRBUF_INIT;
541 int ret = 0;
543 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
544 unlink(git_path_auto_merge(the_repository));
545 apply_autostash(state_dir_path("autostash", opts));
547 * We ignore errors in 'git maintenance run --auto', since the
548 * user should see them.
550 run_auto_maintenance(!(opts->flags & (REBASE_NO_QUIET|REBASE_VERBOSE)));
551 if (opts->type == REBASE_MERGE) {
552 struct replay_opts replay = REPLAY_OPTS_INIT;
554 replay.action = REPLAY_INTERACTIVE_REBASE;
555 ret = sequencer_remove_state(&replay);
556 } else {
557 strbuf_addstr(&dir, opts->state_dir);
558 if (remove_dir_recursively(&dir, 0))
559 ret = error(_("could not remove '%s'"),
560 opts->state_dir);
561 strbuf_release(&dir);
564 return ret;
567 static int move_to_original_branch(struct rebase_options *opts)
569 struct strbuf branch_reflog = STRBUF_INIT, head_reflog = STRBUF_INIT;
570 struct reset_head_opts ropts = { 0 };
571 int ret;
573 if (!opts->head_name)
574 return 0; /* nothing to move back to */
576 if (!opts->onto)
577 BUG("move_to_original_branch without onto");
579 strbuf_addf(&branch_reflog, "%s (finish): %s onto %s",
580 opts->reflog_action,
581 opts->head_name, oid_to_hex(&opts->onto->object.oid));
582 strbuf_addf(&head_reflog, "%s (finish): returning to %s",
583 opts->reflog_action, opts->head_name);
584 ropts.branch = opts->head_name;
585 ropts.flags = RESET_HEAD_REFS_ONLY;
586 ropts.branch_msg = branch_reflog.buf;
587 ropts.head_msg = head_reflog.buf;
588 ret = reset_head(the_repository, &ropts);
590 strbuf_release(&branch_reflog);
591 strbuf_release(&head_reflog);
592 return ret;
595 static const char *resolvemsg =
596 N_("Resolve all conflicts manually, mark them as resolved with\n"
597 "\"git add/rm <conflicted_files>\", then run \"git rebase --continue\".\n"
598 "You can instead skip this commit: run \"git rebase --skip\".\n"
599 "To abort and get back to the state before \"git rebase\", run "
600 "\"git rebase --abort\".");
602 static int run_am(struct rebase_options *opts)
604 struct child_process am = CHILD_PROCESS_INIT;
605 struct child_process format_patch = CHILD_PROCESS_INIT;
606 struct strbuf revisions = STRBUF_INIT;
607 int status;
608 char *rebased_patches;
610 am.git_cmd = 1;
611 strvec_push(&am.args, "am");
612 strvec_pushf(&am.env, GIT_REFLOG_ACTION_ENVIRONMENT "=%s (pick)",
613 opts->reflog_action);
614 if (opts->action == ACTION_CONTINUE) {
615 strvec_push(&am.args, "--resolved");
616 strvec_pushf(&am.args, "--resolvemsg=%s", resolvemsg);
617 if (opts->gpg_sign_opt)
618 strvec_push(&am.args, opts->gpg_sign_opt);
619 status = run_command(&am);
620 if (status)
621 return status;
623 return move_to_original_branch(opts);
625 if (opts->action == ACTION_SKIP) {
626 strvec_push(&am.args, "--skip");
627 strvec_pushf(&am.args, "--resolvemsg=%s", resolvemsg);
628 status = run_command(&am);
629 if (status)
630 return status;
632 return move_to_original_branch(opts);
634 if (opts->action == ACTION_SHOW_CURRENT_PATCH) {
635 strvec_push(&am.args, "--show-current-patch");
636 return run_command(&am);
639 strbuf_addf(&revisions, "%s...%s",
640 oid_to_hex(opts->root ?
641 /* this is now equivalent to !opts->upstream */
642 &opts->onto->object.oid :
643 &opts->upstream->object.oid),
644 oid_to_hex(&opts->orig_head->object.oid));
646 rebased_patches = xstrdup(git_path("rebased-patches"));
647 format_patch.out = open(rebased_patches,
648 O_WRONLY | O_CREAT | O_TRUNC, 0666);
649 if (format_patch.out < 0) {
650 status = error_errno(_("could not open '%s' for writing"),
651 rebased_patches);
652 free(rebased_patches);
653 strvec_clear(&am.args);
654 return status;
657 format_patch.git_cmd = 1;
658 strvec_pushl(&format_patch.args, "format-patch", "-k", "--stdout",
659 "--full-index", "--cherry-pick", "--right-only",
660 "--src-prefix=a/", "--dst-prefix=b/", "--no-renames",
661 "--no-cover-letter", "--pretty=mboxrd", "--topo-order",
662 "--no-base", NULL);
663 if (opts->git_format_patch_opt.len)
664 strvec_split(&format_patch.args,
665 opts->git_format_patch_opt.buf);
666 strvec_push(&format_patch.args, revisions.buf);
667 if (opts->restrict_revision)
668 strvec_pushf(&format_patch.args, "^%s",
669 oid_to_hex(&opts->restrict_revision->object.oid));
671 status = run_command(&format_patch);
672 if (status) {
673 struct reset_head_opts ropts = { 0 };
674 unlink(rebased_patches);
675 free(rebased_patches);
676 strvec_clear(&am.args);
678 ropts.oid = &opts->orig_head->object.oid;
679 ropts.branch = opts->head_name;
680 ropts.default_reflog_action = opts->reflog_action;
681 reset_head(the_repository, &ropts);
682 error(_("\ngit encountered an error while preparing the "
683 "patches to replay\n"
684 "these revisions:\n"
685 "\n %s\n\n"
686 "As a result, git cannot rebase them."),
687 opts->revisions);
689 strbuf_release(&revisions);
690 return status;
692 strbuf_release(&revisions);
694 am.in = open(rebased_patches, O_RDONLY);
695 if (am.in < 0) {
696 status = error_errno(_("could not open '%s' for reading"),
697 rebased_patches);
698 free(rebased_patches);
699 strvec_clear(&am.args);
700 return status;
703 strvec_pushv(&am.args, opts->git_am_opts.v);
704 strvec_push(&am.args, "--rebasing");
705 strvec_pushf(&am.args, "--resolvemsg=%s", resolvemsg);
706 strvec_push(&am.args, "--patch-format=mboxrd");
707 if (opts->allow_rerere_autoupdate == RERERE_AUTOUPDATE)
708 strvec_push(&am.args, "--rerere-autoupdate");
709 else if (opts->allow_rerere_autoupdate == RERERE_NOAUTOUPDATE)
710 strvec_push(&am.args, "--no-rerere-autoupdate");
711 if (opts->gpg_sign_opt)
712 strvec_push(&am.args, opts->gpg_sign_opt);
713 status = run_command(&am);
714 unlink(rebased_patches);
715 free(rebased_patches);
717 if (!status) {
718 return move_to_original_branch(opts);
721 if (is_directory(opts->state_dir))
722 rebase_write_basic_state(opts);
724 return status;
727 static int run_specific_rebase(struct rebase_options *opts)
729 int status;
731 if (opts->type == REBASE_MERGE) {
732 /* Run sequencer-based rebase */
733 setenv("GIT_CHERRY_PICK_HELP", resolvemsg, 1);
734 if (!(opts->flags & REBASE_INTERACTIVE_EXPLICIT)) {
735 setenv("GIT_SEQUENCE_EDITOR", ":", 1);
736 opts->autosquash = 0;
738 if (opts->gpg_sign_opt) {
739 /* remove the leading "-S" */
740 char *tmp = xstrdup(opts->gpg_sign_opt + 2);
741 free(opts->gpg_sign_opt);
742 opts->gpg_sign_opt = tmp;
745 status = run_sequencer_rebase(opts);
746 } else if (opts->type == REBASE_APPLY)
747 status = run_am(opts);
748 else
749 BUG("Unhandled rebase type %d", opts->type);
751 if (opts->dont_finish_rebase)
752 ; /* do nothing */
753 else if (opts->type == REBASE_MERGE)
754 ; /* merge backend cleans up after itself */
755 else if (status == 0) {
756 if (!file_exists(state_dir_path("stopped-sha", opts)))
757 finish_rebase(opts);
758 } else if (status == 2) {
759 struct strbuf dir = STRBUF_INIT;
761 apply_autostash(state_dir_path("autostash", opts));
762 strbuf_addstr(&dir, opts->state_dir);
763 remove_dir_recursively(&dir, 0);
764 strbuf_release(&dir);
765 die("Nothing to do");
768 return status ? -1 : 0;
771 static int rebase_config(const char *var, const char *value, void *data)
773 struct rebase_options *opts = data;
775 if (!strcmp(var, "rebase.stat")) {
776 if (git_config_bool(var, value))
777 opts->flags |= REBASE_DIFFSTAT;
778 else
779 opts->flags &= ~REBASE_DIFFSTAT;
780 return 0;
783 if (!strcmp(var, "rebase.autosquash")) {
784 opts->config_autosquash = git_config_bool(var, value);
785 return 0;
788 if (!strcmp(var, "commit.gpgsign")) {
789 free(opts->gpg_sign_opt);
790 opts->gpg_sign_opt = git_config_bool(var, value) ?
791 xstrdup("-S") : NULL;
792 return 0;
795 if (!strcmp(var, "rebase.autostash")) {
796 opts->autostash = git_config_bool(var, value);
797 return 0;
800 if (!strcmp(var, "rebase.updaterefs")) {
801 opts->config_update_refs = git_config_bool(var, value);
802 return 0;
805 if (!strcmp(var, "rebase.reschedulefailedexec")) {
806 opts->reschedule_failed_exec = git_config_bool(var, value);
807 return 0;
810 if (!strcmp(var, "rebase.forkpoint")) {
811 opts->fork_point = git_config_bool(var, value) ? -1 : 0;
812 return 0;
815 if (!strcmp(var, "rebase.backend")) {
816 return git_config_string(&opts->default_backend, var, value);
819 return git_default_config(var, value, data);
822 static int checkout_up_to_date(struct rebase_options *options)
824 struct strbuf buf = STRBUF_INIT;
825 struct reset_head_opts ropts = { 0 };
826 int ret = 0;
828 strbuf_addf(&buf, "%s: checkout %s",
829 options->reflog_action, options->switch_to);
830 ropts.oid = &options->orig_head->object.oid;
831 ropts.branch = options->head_name;
832 ropts.flags = RESET_HEAD_RUN_POST_CHECKOUT_HOOK;
833 if (!ropts.branch)
834 ropts.flags |= RESET_HEAD_DETACH;
835 ropts.head_msg = buf.buf;
836 if (reset_head(the_repository, &ropts) < 0)
837 ret = error(_("could not switch to %s"), options->switch_to);
838 strbuf_release(&buf);
840 return ret;
844 * Determines whether the commits in from..to are linear, i.e. contain
845 * no merge commits. This function *expects* `from` to be an ancestor of
846 * `to`.
848 static int is_linear_history(struct commit *from, struct commit *to)
850 while (to && to != from) {
851 parse_commit(to);
852 if (!to->parents)
853 return 1;
854 if (to->parents->next)
855 return 0;
856 to = to->parents->item;
858 return 1;
861 static int can_fast_forward(struct commit *onto, struct commit *upstream,
862 struct commit *restrict_revision,
863 struct commit *head, struct object_id *branch_base)
865 struct commit_list *merge_bases = NULL;
866 int res = 0;
868 if (is_null_oid(branch_base))
869 goto done; /* fill_branch_base() found multiple merge bases */
871 if (!oideq(branch_base, &onto->object.oid))
872 goto done;
874 if (restrict_revision && !oideq(&restrict_revision->object.oid, branch_base))
875 goto done;
877 if (!upstream)
878 goto done;
880 merge_bases = get_merge_bases(upstream, head);
881 if (!merge_bases || merge_bases->next)
882 goto done;
884 if (!oideq(&onto->object.oid, &merge_bases->item->object.oid))
885 goto done;
887 res = 1;
889 done:
890 free_commit_list(merge_bases);
891 return res && is_linear_history(onto, head);
894 static void fill_branch_base(struct rebase_options *options,
895 struct object_id *branch_base)
897 struct commit_list *merge_bases = NULL;
899 merge_bases = get_merge_bases(options->onto, options->orig_head);
900 if (!merge_bases || merge_bases->next)
901 oidcpy(branch_base, null_oid());
902 else
903 oidcpy(branch_base, &merge_bases->item->object.oid);
905 free_commit_list(merge_bases);
908 static int parse_opt_am(const struct option *opt, const char *arg, int unset)
910 struct rebase_options *opts = opt->value;
912 BUG_ON_OPT_NEG(unset);
913 BUG_ON_OPT_ARG(arg);
915 if (opts->type != REBASE_UNSPECIFIED && opts->type != REBASE_APPLY)
916 die(_("apply options and merge options cannot be used together"));
918 opts->type = REBASE_APPLY;
920 return 0;
923 /* -i followed by -m is still -i */
924 static int parse_opt_merge(const struct option *opt, const char *arg, int unset)
926 struct rebase_options *opts = opt->value;
928 BUG_ON_OPT_NEG(unset);
929 BUG_ON_OPT_ARG(arg);
931 if (opts->type != REBASE_UNSPECIFIED && opts->type != REBASE_MERGE)
932 die(_("apply options and merge options cannot be used together"));
934 opts->type = REBASE_MERGE;
936 return 0;
939 /* -i followed by -r is still explicitly interactive, but -r alone is not */
940 static int parse_opt_interactive(const struct option *opt, const char *arg,
941 int unset)
943 struct rebase_options *opts = opt->value;
945 BUG_ON_OPT_NEG(unset);
946 BUG_ON_OPT_ARG(arg);
948 if (opts->type != REBASE_UNSPECIFIED && opts->type != REBASE_MERGE)
949 die(_("apply options and merge options cannot be used together"));
951 opts->type = REBASE_MERGE;
952 opts->flags |= REBASE_INTERACTIVE_EXPLICIT;
954 return 0;
957 static enum empty_type parse_empty_value(const char *value)
959 if (!strcasecmp(value, "drop"))
960 return EMPTY_DROP;
961 else if (!strcasecmp(value, "keep"))
962 return EMPTY_KEEP;
963 else if (!strcasecmp(value, "ask"))
964 return EMPTY_ASK;
966 die(_("unrecognized empty type '%s'; valid values are \"drop\", \"keep\", and \"ask\"."), value);
969 static int parse_opt_empty(const struct option *opt, const char *arg, int unset)
971 struct rebase_options *options = opt->value;
972 enum empty_type value = parse_empty_value(arg);
974 BUG_ON_OPT_NEG(unset);
976 options->empty = value;
977 return 0;
980 static void NORETURN error_on_missing_default_upstream(void)
982 struct branch *current_branch = branch_get(NULL);
984 printf(_("%s\n"
985 "Please specify which branch you want to rebase against.\n"
986 "See git-rebase(1) for details.\n"
987 "\n"
988 " git rebase '<branch>'\n"
989 "\n"),
990 current_branch ? _("There is no tracking information for "
991 "the current branch.") :
992 _("You are not currently on a branch."));
994 if (current_branch) {
995 const char *remote = current_branch->remote_name;
997 if (!remote)
998 remote = _("<remote>");
1000 printf(_("If you wish to set tracking information for this "
1001 "branch you can do so with:\n"
1002 "\n"
1003 " git branch --set-upstream-to=%s/<branch> %s\n"
1004 "\n"),
1005 remote, current_branch->name);
1007 exit(1);
1010 static int check_exec_cmd(const char *cmd)
1012 if (strchr(cmd, '\n'))
1013 return error(_("exec commands cannot contain newlines"));
1015 /* Does the command consist purely of whitespace? */
1016 if (!cmd[strspn(cmd, " \t\r\f\v")])
1017 return error(_("empty exec command"));
1019 return 0;
1022 int cmd_rebase(int argc, const char **argv, const char *prefix)
1024 struct rebase_options options = REBASE_OPTIONS_INIT;
1025 const char *branch_name;
1026 int ret, flags, total_argc, in_progress = 0;
1027 int keep_base = 0;
1028 int ok_to_skip_pre_rebase = 0;
1029 struct strbuf msg = STRBUF_INIT;
1030 struct strbuf revisions = STRBUF_INIT;
1031 struct strbuf buf = STRBUF_INIT;
1032 struct object_id branch_base;
1033 int ignore_whitespace = 0;
1034 const char *gpg_sign = NULL;
1035 const char *rebase_merges = NULL;
1036 struct string_list strategy_options = STRING_LIST_INIT_NODUP;
1037 struct object_id squash_onto;
1038 char *squash_onto_name = NULL;
1039 int reschedule_failed_exec = -1;
1040 int allow_preemptive_ff = 1;
1041 int preserve_merges_selected = 0;
1042 struct reset_head_opts ropts = { 0 };
1043 struct option builtin_rebase_options[] = {
1044 OPT_STRING(0, "onto", &options.onto_name,
1045 N_("revision"),
1046 N_("rebase onto given branch instead of upstream")),
1047 OPT_BOOL(0, "keep-base", &keep_base,
1048 N_("use the merge-base of upstream and branch as the current base")),
1049 OPT_BOOL(0, "no-verify", &ok_to_skip_pre_rebase,
1050 N_("allow pre-rebase hook to run")),
1051 OPT_NEGBIT('q', "quiet", &options.flags,
1052 N_("be quiet. implies --no-stat"),
1053 REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT),
1054 OPT_BIT('v', "verbose", &options.flags,
1055 N_("display a diffstat of what changed upstream"),
1056 REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT),
1057 {OPTION_NEGBIT, 'n', "no-stat", &options.flags, NULL,
1058 N_("do not show diffstat of what changed upstream"),
1059 PARSE_OPT_NOARG, NULL, REBASE_DIFFSTAT },
1060 OPT_BOOL(0, "signoff", &options.signoff,
1061 N_("add a Signed-off-by trailer to each commit")),
1062 OPT_BOOL(0, "committer-date-is-author-date",
1063 &options.committer_date_is_author_date,
1064 N_("make committer date match author date")),
1065 OPT_BOOL(0, "reset-author-date", &options.ignore_date,
1066 N_("ignore author date and use current date")),
1067 OPT_HIDDEN_BOOL(0, "ignore-date", &options.ignore_date,
1068 N_("synonym of --reset-author-date")),
1069 OPT_PASSTHRU_ARGV('C', NULL, &options.git_am_opts, N_("n"),
1070 N_("passed to 'git apply'"), 0),
1071 OPT_BOOL(0, "ignore-whitespace", &ignore_whitespace,
1072 N_("ignore changes in whitespace")),
1073 OPT_PASSTHRU_ARGV(0, "whitespace", &options.git_am_opts,
1074 N_("action"), N_("passed to 'git apply'"), 0),
1075 OPT_BIT('f', "force-rebase", &options.flags,
1076 N_("cherry-pick all commits, even if unchanged"),
1077 REBASE_FORCE),
1078 OPT_BIT(0, "no-ff", &options.flags,
1079 N_("cherry-pick all commits, even if unchanged"),
1080 REBASE_FORCE),
1081 OPT_CMDMODE(0, "continue", &options.action, N_("continue"),
1082 ACTION_CONTINUE),
1083 OPT_CMDMODE(0, "skip", &options.action,
1084 N_("skip current patch and continue"), ACTION_SKIP),
1085 OPT_CMDMODE(0, "abort", &options.action,
1086 N_("abort and check out the original branch"),
1087 ACTION_ABORT),
1088 OPT_CMDMODE(0, "quit", &options.action,
1089 N_("abort but keep HEAD where it is"), ACTION_QUIT),
1090 OPT_CMDMODE(0, "edit-todo", &options.action, N_("edit the todo list "
1091 "during an interactive rebase"), ACTION_EDIT_TODO),
1092 OPT_CMDMODE(0, "show-current-patch", &options.action,
1093 N_("show the patch file being applied or merged"),
1094 ACTION_SHOW_CURRENT_PATCH),
1095 OPT_CALLBACK_F(0, "apply", &options, NULL,
1096 N_("use apply strategies to rebase"),
1097 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
1098 parse_opt_am),
1099 OPT_CALLBACK_F('m', "merge", &options, NULL,
1100 N_("use merging strategies to rebase"),
1101 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
1102 parse_opt_merge),
1103 OPT_CALLBACK_F('i', "interactive", &options, NULL,
1104 N_("let the user edit the list of commits to rebase"),
1105 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
1106 parse_opt_interactive),
1107 OPT_SET_INT_F('p', "preserve-merges", &preserve_merges_selected,
1108 N_("(REMOVED) was: try to recreate merges "
1109 "instead of ignoring them"),
1110 1, PARSE_OPT_HIDDEN),
1111 OPT_RERERE_AUTOUPDATE(&options.allow_rerere_autoupdate),
1112 OPT_CALLBACK_F(0, "empty", &options, "{drop,keep,ask}",
1113 N_("how to handle commits that become empty"),
1114 PARSE_OPT_NONEG, parse_opt_empty),
1115 OPT_CALLBACK_F('k', "keep-empty", &options, NULL,
1116 N_("keep commits which start empty"),
1117 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN,
1118 parse_opt_keep_empty),
1119 OPT_BOOL(0, "autosquash", &options.autosquash,
1120 N_("move commits that begin with "
1121 "squash!/fixup! under -i")),
1122 OPT_BOOL(0, "update-refs", &options.update_refs,
1123 N_("update branches that point to commits "
1124 "that are being rebased")),
1125 { OPTION_STRING, 'S', "gpg-sign", &gpg_sign, N_("key-id"),
1126 N_("GPG-sign commits"),
1127 PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
1128 OPT_AUTOSTASH(&options.autostash),
1129 OPT_STRING_LIST('x', "exec", &options.exec, N_("exec"),
1130 N_("add exec lines after each commit of the "
1131 "editable list")),
1132 OPT_BOOL_F(0, "allow-empty-message",
1133 &options.allow_empty_message,
1134 N_("allow rebasing commits with empty messages"),
1135 PARSE_OPT_HIDDEN),
1136 {OPTION_STRING, 'r', "rebase-merges", &rebase_merges,
1137 N_("mode"),
1138 N_("try to rebase merges instead of skipping them"),
1139 PARSE_OPT_OPTARG, NULL, (intptr_t)""},
1140 OPT_BOOL(0, "fork-point", &options.fork_point,
1141 N_("use 'merge-base --fork-point' to refine upstream")),
1142 OPT_STRING('s', "strategy", &options.strategy,
1143 N_("strategy"), N_("use the given merge strategy")),
1144 OPT_STRING_LIST('X', "strategy-option", &strategy_options,
1145 N_("option"),
1146 N_("pass the argument through to the merge "
1147 "strategy")),
1148 OPT_BOOL(0, "root", &options.root,
1149 N_("rebase all reachable commits up to the root(s)")),
1150 OPT_BOOL(0, "reschedule-failed-exec",
1151 &reschedule_failed_exec,
1152 N_("automatically re-schedule any `exec` that fails")),
1153 OPT_BOOL(0, "reapply-cherry-picks", &options.reapply_cherry_picks,
1154 N_("apply all changes, even those already present upstream")),
1155 OPT_END(),
1157 int i;
1159 if (argc == 2 && !strcmp(argv[1], "-h"))
1160 usage_with_options(builtin_rebase_usage,
1161 builtin_rebase_options);
1163 prepare_repo_settings(the_repository);
1164 the_repository->settings.command_requires_full_index = 0;
1166 git_config(rebase_config, &options);
1167 /* options.gpg_sign_opt will be either "-S" or NULL */
1168 gpg_sign = options.gpg_sign_opt ? "" : NULL;
1169 FREE_AND_NULL(options.gpg_sign_opt);
1171 strbuf_reset(&buf);
1172 strbuf_addf(&buf, "%s/applying", apply_dir());
1173 if(file_exists(buf.buf))
1174 die(_("It looks like 'git am' is in progress. Cannot rebase."));
1176 if (is_directory(apply_dir())) {
1177 options.type = REBASE_APPLY;
1178 options.state_dir = apply_dir();
1179 } else if (is_directory(merge_dir())) {
1180 strbuf_reset(&buf);
1181 strbuf_addf(&buf, "%s/rewritten", merge_dir());
1182 if (!(options.action == ACTION_ABORT) && is_directory(buf.buf)) {
1183 die(_("`rebase --preserve-merges` (-p) is no longer supported.\n"
1184 "Use `git rebase --abort` to terminate current rebase.\n"
1185 "Or downgrade to v2.33, or earlier, to complete the rebase."));
1186 } else {
1187 strbuf_reset(&buf);
1188 strbuf_addf(&buf, "%s/interactive", merge_dir());
1189 options.type = REBASE_MERGE;
1190 if (file_exists(buf.buf))
1191 options.flags |= REBASE_INTERACTIVE_EXPLICIT;
1193 options.state_dir = merge_dir();
1196 if (options.type != REBASE_UNSPECIFIED)
1197 in_progress = 1;
1199 total_argc = argc;
1200 argc = parse_options(argc, argv, prefix,
1201 builtin_rebase_options,
1202 builtin_rebase_usage, 0);
1204 if (preserve_merges_selected)
1205 die(_("--preserve-merges was replaced by --rebase-merges\n"
1206 "Note: Your `pull.rebase` configuration may also be set to 'preserve',\n"
1207 "which is no longer supported; use 'merges' instead"));
1209 if (options.action != ACTION_NONE && total_argc != 2) {
1210 usage_with_options(builtin_rebase_usage,
1211 builtin_rebase_options);
1214 if (argc > 2)
1215 usage_with_options(builtin_rebase_usage,
1216 builtin_rebase_options);
1218 if (keep_base) {
1219 if (options.onto_name)
1220 die(_("options '%s' and '%s' cannot be used together"), "--keep-base", "--onto");
1221 if (options.root)
1222 die(_("options '%s' and '%s' cannot be used together"), "--keep-base", "--root");
1224 * --keep-base defaults to --no-fork-point to keep the
1225 * base the same.
1227 if (options.fork_point < 0)
1228 options.fork_point = 0;
1230 if (options.root && options.fork_point > 0)
1231 die(_("options '%s' and '%s' cannot be used together"), "--root", "--fork-point");
1233 if (options.action != ACTION_NONE && !in_progress)
1234 die(_("No rebase in progress?"));
1236 if (options.action == ACTION_EDIT_TODO && !is_merge(&options))
1237 die(_("The --edit-todo action can only be used during "
1238 "interactive rebase."));
1240 if (trace2_is_enabled()) {
1241 if (is_merge(&options))
1242 trace2_cmd_mode("interactive");
1243 else if (options.exec.nr)
1244 trace2_cmd_mode("interactive-exec");
1245 else
1246 trace2_cmd_mode(action_names[options.action]);
1249 options.reflog_action = getenv(GIT_REFLOG_ACTION_ENVIRONMENT);
1250 options.reflog_action =
1251 xstrdup(options.reflog_action ? options.reflog_action : "rebase");
1253 switch (options.action) {
1254 case ACTION_CONTINUE: {
1255 struct object_id head;
1256 struct lock_file lock_file = LOCK_INIT;
1257 int fd;
1259 /* Sanity check */
1260 if (get_oid("HEAD", &head))
1261 die(_("Cannot read HEAD"));
1263 fd = repo_hold_locked_index(the_repository, &lock_file, 0);
1264 if (repo_read_index(the_repository) < 0)
1265 die(_("could not read index"));
1266 refresh_index(the_repository->index, REFRESH_QUIET, NULL, NULL,
1267 NULL);
1268 if (0 <= fd)
1269 repo_update_index_if_able(the_repository, &lock_file);
1270 rollback_lock_file(&lock_file);
1272 if (has_unstaged_changes(the_repository, 1)) {
1273 puts(_("You must edit all merge conflicts and then\n"
1274 "mark them as resolved using git add"));
1275 exit(1);
1277 if (read_basic_state(&options))
1278 exit(1);
1279 goto run_rebase;
1281 case ACTION_SKIP: {
1282 struct string_list merge_rr = STRING_LIST_INIT_DUP;
1284 rerere_clear(the_repository, &merge_rr);
1285 string_list_clear(&merge_rr, 1);
1286 ropts.flags = RESET_HEAD_HARD;
1287 if (reset_head(the_repository, &ropts) < 0)
1288 die(_("could not discard worktree changes"));
1289 remove_branch_state(the_repository, 0);
1290 if (read_basic_state(&options))
1291 exit(1);
1292 goto run_rebase;
1294 case ACTION_ABORT: {
1295 struct string_list merge_rr = STRING_LIST_INIT_DUP;
1296 struct strbuf head_msg = STRBUF_INIT;
1298 rerere_clear(the_repository, &merge_rr);
1299 string_list_clear(&merge_rr, 1);
1301 if (read_basic_state(&options))
1302 exit(1);
1304 strbuf_addf(&head_msg, "%s (abort): returning to %s",
1305 options.reflog_action,
1306 options.head_name ? options.head_name
1307 : oid_to_hex(&options.orig_head->object.oid));
1308 ropts.oid = &options.orig_head->object.oid;
1309 ropts.head_msg = head_msg.buf;
1310 ropts.branch = options.head_name;
1311 ropts.flags = RESET_HEAD_HARD;
1312 if (reset_head(the_repository, &ropts) < 0)
1313 die(_("could not move back to %s"),
1314 oid_to_hex(&options.orig_head->object.oid));
1315 strbuf_release(&head_msg);
1316 remove_branch_state(the_repository, 0);
1317 ret = finish_rebase(&options);
1318 goto cleanup;
1320 case ACTION_QUIT: {
1321 save_autostash(state_dir_path("autostash", &options));
1322 if (options.type == REBASE_MERGE) {
1323 struct replay_opts replay = REPLAY_OPTS_INIT;
1325 replay.action = REPLAY_INTERACTIVE_REBASE;
1326 ret = sequencer_remove_state(&replay);
1327 } else {
1328 strbuf_reset(&buf);
1329 strbuf_addstr(&buf, options.state_dir);
1330 ret = remove_dir_recursively(&buf, 0);
1331 if (ret)
1332 error(_("could not remove '%s'"),
1333 options.state_dir);
1335 goto cleanup;
1337 case ACTION_EDIT_TODO:
1338 options.dont_finish_rebase = 1;
1339 goto run_rebase;
1340 case ACTION_SHOW_CURRENT_PATCH:
1341 options.dont_finish_rebase = 1;
1342 goto run_rebase;
1343 case ACTION_NONE:
1344 break;
1345 default:
1346 BUG("action: %d", options.action);
1349 /* Make sure no rebase is in progress */
1350 if (in_progress) {
1351 const char *last_slash = strrchr(options.state_dir, '/');
1352 const char *state_dir_base =
1353 last_slash ? last_slash + 1 : options.state_dir;
1354 const char *cmd_live_rebase =
1355 "git rebase (--continue | --abort | --skip)";
1356 strbuf_reset(&buf);
1357 strbuf_addf(&buf, "rm -fr \"%s\"", options.state_dir);
1358 die(_("It seems that there is already a %s directory, and\n"
1359 "I wonder if you are in the middle of another rebase. "
1360 "If that is the\n"
1361 "case, please try\n\t%s\n"
1362 "If that is not the case, please\n\t%s\n"
1363 "and run me again. I am stopping in case you still "
1364 "have something\n"
1365 "valuable there.\n"),
1366 state_dir_base, cmd_live_rebase, buf.buf);
1369 if ((options.flags & REBASE_INTERACTIVE_EXPLICIT) ||
1370 (options.action != ACTION_NONE) ||
1371 (options.exec.nr > 0) ||
1372 (options.autosquash == -1 && options.config_autosquash == 1) ||
1373 options.autosquash == 1) {
1374 allow_preemptive_ff = 0;
1376 if (options.committer_date_is_author_date || options.ignore_date)
1377 options.flags |= REBASE_FORCE;
1379 for (i = 0; i < options.git_am_opts.nr; i++) {
1380 const char *option = options.git_am_opts.v[i], *p;
1381 if (!strcmp(option, "--whitespace=fix") ||
1382 !strcmp(option, "--whitespace=strip"))
1383 allow_preemptive_ff = 0;
1384 else if (skip_prefix(option, "-C", &p)) {
1385 while (*p)
1386 if (!isdigit(*(p++)))
1387 die(_("switch `C' expects a "
1388 "numerical value"));
1389 } else if (skip_prefix(option, "--whitespace=", &p)) {
1390 if (*p && strcmp(p, "warn") && strcmp(p, "nowarn") &&
1391 strcmp(p, "error") && strcmp(p, "error-all"))
1392 die("Invalid whitespace option: '%s'", p);
1396 for (i = 0; i < options.exec.nr; i++)
1397 if (check_exec_cmd(options.exec.items[i].string))
1398 exit(1);
1400 if (!(options.flags & REBASE_NO_QUIET))
1401 strvec_push(&options.git_am_opts, "-q");
1403 if (options.empty != EMPTY_UNSPECIFIED)
1404 imply_merge(&options, "--empty");
1406 if (options.reapply_cherry_picks < 0)
1408 * We default to --no-reapply-cherry-picks unless
1409 * --keep-base is given; when --keep-base is given, we want
1410 * to default to --reapply-cherry-picks.
1412 options.reapply_cherry_picks = keep_base;
1413 else if (!keep_base)
1415 * The apply backend always searches for and drops cherry
1416 * picks. This is often not wanted with --keep-base, so
1417 * --keep-base allows --reapply-cherry-picks to be
1418 * simulated by altering the upstream such that
1419 * cherry-picks cannot be detected and thus all commits are
1420 * reapplied. Thus, --[no-]reapply-cherry-picks is
1421 * supported when --keep-base is specified, but not when
1422 * --keep-base is left out.
1424 imply_merge(&options, options.reapply_cherry_picks ?
1425 "--reapply-cherry-picks" :
1426 "--no-reapply-cherry-picks");
1428 if (gpg_sign)
1429 options.gpg_sign_opt = xstrfmt("-S%s", gpg_sign);
1431 if (options.exec.nr)
1432 imply_merge(&options, "--exec");
1434 if (rebase_merges) {
1435 if (!*rebase_merges)
1436 ; /* default mode; do nothing */
1437 else if (!strcmp("rebase-cousins", rebase_merges))
1438 options.rebase_cousins = 1;
1439 else if (strcmp("no-rebase-cousins", rebase_merges))
1440 die(_("Unknown mode: %s"), rebase_merges);
1441 options.rebase_merges = 1;
1442 imply_merge(&options, "--rebase-merges");
1445 if (options.type == REBASE_APPLY) {
1446 if (ignore_whitespace)
1447 strvec_push(&options.git_am_opts,
1448 "--ignore-whitespace");
1449 if (options.committer_date_is_author_date)
1450 strvec_push(&options.git_am_opts,
1451 "--committer-date-is-author-date");
1452 if (options.ignore_date)
1453 strvec_push(&options.git_am_opts, "--ignore-date");
1454 } else {
1455 /* REBASE_MERGE */
1456 if (ignore_whitespace) {
1457 string_list_append(&strategy_options,
1458 "ignore-space-change");
1462 if (strategy_options.nr) {
1463 int i;
1465 if (!options.strategy)
1466 options.strategy = "ort";
1468 strbuf_reset(&buf);
1469 for (i = 0; i < strategy_options.nr; i++)
1470 strbuf_addf(&buf, " --%s",
1471 strategy_options.items[i].string);
1472 options.strategy_opts = xstrdup(buf.buf);
1475 if (options.strategy) {
1476 options.strategy = xstrdup(options.strategy);
1477 switch (options.type) {
1478 case REBASE_APPLY:
1479 die(_("--strategy requires --merge or --interactive"));
1480 case REBASE_MERGE:
1481 /* compatible */
1482 break;
1483 case REBASE_UNSPECIFIED:
1484 options.type = REBASE_MERGE;
1485 break;
1486 default:
1487 BUG("unhandled rebase type (%d)", options.type);
1491 if (options.type == REBASE_MERGE)
1492 imply_merge(&options, "--merge");
1494 if (options.root && !options.onto_name)
1495 imply_merge(&options, "--root without --onto");
1497 if (isatty(2) && options.flags & REBASE_NO_QUIET)
1498 strbuf_addstr(&options.git_format_patch_opt, " --progress");
1500 if (options.git_am_opts.nr || options.type == REBASE_APPLY) {
1501 /* all am options except -q are compatible only with --apply */
1502 for (i = options.git_am_opts.nr - 1; i >= 0; i--)
1503 if (strcmp(options.git_am_opts.v[i], "-q"))
1504 break;
1506 if (i >= 0 || options.type == REBASE_APPLY) {
1507 if (is_merge(&options))
1508 die(_("apply options and merge options "
1509 "cannot be used together"));
1510 else if (options.autosquash == -1 && options.config_autosquash == 1)
1511 die(_("apply options are incompatible with rebase.autosquash. Consider adding --no-autosquash"));
1512 else if (options.update_refs == -1 && options.config_update_refs == 1)
1513 die(_("apply options are incompatible with rebase.updateRefs. Consider adding --no-update-refs"));
1514 else
1515 options.type = REBASE_APPLY;
1519 if (options.update_refs == 1)
1520 imply_merge(&options, "--update-refs");
1521 options.update_refs = (options.update_refs >= 0) ? options.update_refs :
1522 ((options.config_update_refs >= 0) ? options.config_update_refs : 0);
1524 if (options.autosquash == 1)
1525 imply_merge(&options, "--autosquash");
1526 options.autosquash = (options.autosquash >= 0) ? options.autosquash :
1527 ((options.config_autosquash >= 0) ? options.config_autosquash : 0);
1529 if (options.type == REBASE_UNSPECIFIED) {
1530 if (!strcmp(options.default_backend, "merge"))
1531 imply_merge(&options, "--merge");
1532 else if (!strcmp(options.default_backend, "apply"))
1533 options.type = REBASE_APPLY;
1534 else
1535 die(_("Unknown rebase backend: %s"),
1536 options.default_backend);
1539 if (options.type == REBASE_MERGE &&
1540 !options.strategy &&
1541 getenv("GIT_TEST_MERGE_ALGORITHM"))
1542 options.strategy = xstrdup(getenv("GIT_TEST_MERGE_ALGORITHM"));
1544 switch (options.type) {
1545 case REBASE_MERGE:
1546 options.state_dir = merge_dir();
1547 break;
1548 case REBASE_APPLY:
1549 options.state_dir = apply_dir();
1550 break;
1551 default:
1552 BUG("options.type was just set above; should be unreachable.");
1555 if (options.empty == EMPTY_UNSPECIFIED) {
1556 if (options.flags & REBASE_INTERACTIVE_EXPLICIT)
1557 options.empty = EMPTY_ASK;
1558 else if (options.exec.nr > 0)
1559 options.empty = EMPTY_KEEP;
1560 else
1561 options.empty = EMPTY_DROP;
1563 if (reschedule_failed_exec > 0 && !is_merge(&options))
1564 die(_("--reschedule-failed-exec requires "
1565 "--exec or --interactive"));
1566 if (reschedule_failed_exec >= 0)
1567 options.reschedule_failed_exec = reschedule_failed_exec;
1569 if (options.signoff) {
1570 strvec_push(&options.git_am_opts, "--signoff");
1571 options.flags |= REBASE_FORCE;
1574 if (!options.root) {
1575 if (argc < 1) {
1576 struct branch *branch;
1578 branch = branch_get(NULL);
1579 options.upstream_name = branch_get_upstream(branch,
1580 NULL);
1581 if (!options.upstream_name)
1582 error_on_missing_default_upstream();
1583 if (options.fork_point < 0)
1584 options.fork_point = 1;
1585 } else {
1586 options.upstream_name = argv[0];
1587 argc--;
1588 argv++;
1589 if (!strcmp(options.upstream_name, "-"))
1590 options.upstream_name = "@{-1}";
1592 options.upstream =
1593 lookup_commit_reference_by_name(options.upstream_name);
1594 if (!options.upstream)
1595 die(_("invalid upstream '%s'"), options.upstream_name);
1596 options.upstream_arg = options.upstream_name;
1597 } else {
1598 if (!options.onto_name) {
1599 if (commit_tree("", 0, the_hash_algo->empty_tree, NULL,
1600 &squash_onto, NULL, NULL) < 0)
1601 die(_("Could not create new root commit"));
1602 options.squash_onto = &squash_onto;
1603 options.onto_name = squash_onto_name =
1604 xstrdup(oid_to_hex(&squash_onto));
1605 } else
1606 options.root_with_onto = 1;
1608 options.upstream_name = NULL;
1609 options.upstream = NULL;
1610 if (argc > 1)
1611 usage_with_options(builtin_rebase_usage,
1612 builtin_rebase_options);
1613 options.upstream_arg = "--root";
1617 * If the branch to rebase is given, that is the branch we will rebase
1618 * branch_name -- branch/commit being rebased, or
1619 * HEAD (already detached)
1620 * orig_head -- commit object name of tip of the branch before rebasing
1621 * head_name -- refs/heads/<that-branch> or NULL (detached HEAD)
1623 if (argc == 1) {
1624 /* Is it "rebase other branchname" or "rebase other commit"? */
1625 struct object_id branch_oid;
1626 branch_name = argv[0];
1627 options.switch_to = argv[0];
1629 /* Is it a local branch? */
1630 strbuf_reset(&buf);
1631 strbuf_addf(&buf, "refs/heads/%s", branch_name);
1632 if (!read_ref(buf.buf, &branch_oid)) {
1633 die_if_checked_out(buf.buf, 1);
1634 options.head_name = xstrdup(buf.buf);
1635 options.orig_head =
1636 lookup_commit_object(the_repository,
1637 &branch_oid);
1638 /* If not is it a valid ref (branch or commit)? */
1639 } else {
1640 options.orig_head =
1641 lookup_commit_reference_by_name(branch_name);
1642 options.head_name = NULL;
1644 if (!options.orig_head)
1645 die(_("no such branch/commit '%s'"), branch_name);
1646 } else if (argc == 0) {
1647 /* Do not need to switch branches, we are already on it. */
1648 options.head_name =
1649 xstrdup_or_null(resolve_ref_unsafe("HEAD", 0, NULL,
1650 &flags));
1651 if (!options.head_name)
1652 die(_("No such ref: %s"), "HEAD");
1653 if (flags & REF_ISSYMREF) {
1654 if (!skip_prefix(options.head_name,
1655 "refs/heads/", &branch_name))
1656 branch_name = options.head_name;
1658 } else {
1659 FREE_AND_NULL(options.head_name);
1660 branch_name = "HEAD";
1662 options.orig_head = lookup_commit_reference_by_name("HEAD");
1663 if (!options.orig_head)
1664 die(_("Could not resolve HEAD to a commit"));
1665 } else
1666 BUG("unexpected number of arguments left to parse");
1668 /* Make sure the branch to rebase onto is valid. */
1669 if (keep_base) {
1670 strbuf_reset(&buf);
1671 strbuf_addstr(&buf, options.upstream_name);
1672 strbuf_addstr(&buf, "...");
1673 strbuf_addstr(&buf, branch_name);
1674 options.onto_name = xstrdup(buf.buf);
1675 } else if (!options.onto_name)
1676 options.onto_name = options.upstream_name;
1677 if (strstr(options.onto_name, "...")) {
1678 if (get_oid_mb(options.onto_name, &branch_base) < 0) {
1679 if (keep_base)
1680 die(_("'%s': need exactly one merge base with branch"),
1681 options.upstream_name);
1682 else
1683 die(_("'%s': need exactly one merge base"),
1684 options.onto_name);
1686 options.onto = lookup_commit_or_die(&branch_base,
1687 options.onto_name);
1688 } else {
1689 options.onto =
1690 lookup_commit_reference_by_name(options.onto_name);
1691 if (!options.onto)
1692 die(_("Does not point to a valid commit '%s'"),
1693 options.onto_name);
1694 fill_branch_base(&options, &branch_base);
1697 if (keep_base && options.reapply_cherry_picks)
1698 options.upstream = options.onto;
1700 if (options.fork_point > 0)
1701 options.restrict_revision =
1702 get_fork_point(options.upstream_name, options.orig_head);
1704 if (repo_read_index(the_repository) < 0)
1705 die(_("could not read index"));
1707 if (options.autostash)
1708 create_autostash(the_repository,
1709 state_dir_path("autostash", &options));
1712 if (require_clean_work_tree(the_repository, "rebase",
1713 _("Please commit or stash them."), 1, 1)) {
1714 ret = -1;
1715 goto cleanup;
1719 * Now we are rebasing commits upstream..orig_head (or with --root,
1720 * everything leading up to orig_head) on top of onto.
1724 * Check if we are already based on onto with linear history,
1725 * in which case we could fast-forward without replacing the commits
1726 * with new commits recreated by replaying their changes.
1728 if (allow_preemptive_ff &&
1729 can_fast_forward(options.onto, options.upstream, options.restrict_revision,
1730 options.orig_head, &branch_base)) {
1731 int flag;
1733 if (!(options.flags & REBASE_FORCE)) {
1734 /* Lazily switch to the target branch if needed... */
1735 if (options.switch_to) {
1736 ret = checkout_up_to_date(&options);
1737 if (ret)
1738 goto cleanup;
1741 if (!(options.flags & REBASE_NO_QUIET))
1742 ; /* be quiet */
1743 else if (!strcmp(branch_name, "HEAD") &&
1744 resolve_ref_unsafe("HEAD", 0, NULL, &flag))
1745 puts(_("HEAD is up to date."));
1746 else
1747 printf(_("Current branch %s is up to date.\n"),
1748 branch_name);
1749 ret = finish_rebase(&options);
1750 goto cleanup;
1751 } else if (!(options.flags & REBASE_NO_QUIET))
1752 ; /* be quiet */
1753 else if (!strcmp(branch_name, "HEAD") &&
1754 resolve_ref_unsafe("HEAD", 0, NULL, &flag))
1755 puts(_("HEAD is up to date, rebase forced."));
1756 else
1757 printf(_("Current branch %s is up to date, rebase "
1758 "forced.\n"), branch_name);
1761 /* If a hook exists, give it a chance to interrupt*/
1762 if (!ok_to_skip_pre_rebase &&
1763 run_hooks_l("pre-rebase", options.upstream_arg,
1764 argc ? argv[0] : NULL, NULL))
1765 die(_("The pre-rebase hook refused to rebase."));
1767 if (options.flags & REBASE_DIFFSTAT) {
1768 struct diff_options opts;
1770 if (options.flags & REBASE_VERBOSE) {
1771 if (is_null_oid(&branch_base))
1772 printf(_("Changes to %s:\n"),
1773 oid_to_hex(&options.onto->object.oid));
1774 else
1775 printf(_("Changes from %s to %s:\n"),
1776 oid_to_hex(&branch_base),
1777 oid_to_hex(&options.onto->object.oid));
1780 /* We want color (if set), but no pager */
1781 diff_setup(&opts);
1782 opts.stat_width = -1; /* use full terminal width */
1783 opts.stat_graph_width = -1; /* respect statGraphWidth config */
1784 opts.output_format |=
1785 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
1786 opts.detect_rename = DIFF_DETECT_RENAME;
1787 diff_setup_done(&opts);
1788 diff_tree_oid(is_null_oid(&branch_base) ?
1789 the_hash_algo->empty_tree : &branch_base,
1790 &options.onto->object.oid, "", &opts);
1791 diffcore_std(&opts);
1792 diff_flush(&opts);
1795 if (is_merge(&options))
1796 goto run_rebase;
1798 /* Detach HEAD and reset the tree */
1799 if (options.flags & REBASE_NO_QUIET)
1800 printf(_("First, rewinding head to replay your work on top of "
1801 "it...\n"));
1803 strbuf_addf(&msg, "%s (start): checkout %s",
1804 options.reflog_action, options.onto_name);
1805 ropts.oid = &options.onto->object.oid;
1806 ropts.orig_head = &options.orig_head->object.oid,
1807 ropts.flags = RESET_HEAD_DETACH | RESET_ORIG_HEAD |
1808 RESET_HEAD_RUN_POST_CHECKOUT_HOOK;
1809 ropts.head_msg = msg.buf;
1810 ropts.default_reflog_action = options.reflog_action;
1811 if (reset_head(the_repository, &ropts))
1812 die(_("Could not detach HEAD"));
1813 strbuf_release(&msg);
1816 * If the onto is a proper descendant of the tip of the branch, then
1817 * we just fast-forwarded.
1819 if (oideq(&branch_base, &options.orig_head->object.oid)) {
1820 printf(_("Fast-forwarded %s to %s.\n"),
1821 branch_name, options.onto_name);
1822 move_to_original_branch(&options);
1823 ret = finish_rebase(&options);
1824 goto cleanup;
1827 strbuf_addf(&revisions, "%s..%s",
1828 options.root ? oid_to_hex(&options.onto->object.oid) :
1829 (options.restrict_revision ?
1830 oid_to_hex(&options.restrict_revision->object.oid) :
1831 oid_to_hex(&options.upstream->object.oid)),
1832 oid_to_hex(&options.orig_head->object.oid));
1834 options.revisions = revisions.buf;
1836 run_rebase:
1837 ret = run_specific_rebase(&options);
1839 cleanup:
1840 strbuf_release(&buf);
1841 strbuf_release(&revisions);
1842 free(options.reflog_action);
1843 free(options.head_name);
1844 strvec_clear(&options.git_am_opts);
1845 free(options.gpg_sign_opt);
1846 string_list_clear(&options.exec, 0);
1847 free(options.strategy);
1848 strbuf_release(&options.git_format_patch_opt);
1849 free(squash_onto_name);
1850 string_list_clear(&strategy_options, 0);
1851 return !!ret;