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