]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/revert.c
Sync with 2.16.6
[thirdparty/git.git] / builtin / revert.c
CommitLineData
9509af68 1#include "cache.h"
b2141fc1 2#include "config.h"
9509af68 3#include "builtin.h"
f8103794 4#include "parse-options.h"
0f2d4476
JK
5#include "diff.h"
6#include "revision.h"
aa1a0111 7#include "rerere.h"
04d3d3cf 8#include "dir.h"
26ae337b 9#include "sequencer.h"
9509af68
JS
10
11/*
12 * This implements the builtins revert and cherry-pick.
13 *
14 * Copyright (c) 2007 Johannes E. Schindelin
15 *
16 * Based on git-revert.sh, which is
17 *
18 * Copyright (c) 2005 Linus Torvalds
19 * Copyright (c) 2005 Junio C Hamano
20 */
21
f8103794 22static const char * const revert_usage[] = {
9c9b4f2f 23 N_("git revert [<options>] <commit-ish>..."),
a3b26dc7 24 N_("git revert <subcommand>"),
f8103794
PH
25 NULL
26};
9509af68 27
f8103794 28static const char * const cherry_pick_usage[] = {
9c9b4f2f 29 N_("git cherry-pick [<options>] <commit-ish>..."),
a3b26dc7 30 N_("git cherry-pick <subcommand>"),
f8103794
PH
31 NULL
32};
9509af68 33
80e1f791
RR
34static const char *action_name(const struct replay_opts *opts)
35{
644a3690 36 return opts->action == REPLAY_REVERT ? "revert" : "cherry-pick";
80e1f791
RR
37}
38
80e1f791 39static const char * const *revert_or_cherry_pick_usage(struct replay_opts *opts)
e0ef8495 40{
644a3690 41 return opts->action == REPLAY_REVERT ? revert_usage : cherry_pick_usage;
e0ef8495
JN
42}
43
67ac1e1d
JN
44static int option_parse_x(const struct option *opt,
45 const char *arg, int unset)
46{
80e1f791
RR
47 struct replay_opts **opts_ptr = opt->value;
48 struct replay_opts *opts = *opts_ptr;
49
67ac1e1d
JN
50 if (unset)
51 return 0;
52
80e1f791
RR
53 ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
54 opts->xopts[opts->xopts_nr++] = xstrdup(arg);
67ac1e1d
JN
55 return 0;
56}
57
b16a991c
JK
58static int option_parse_m(const struct option *opt,
59 const char *arg, int unset)
60{
61 struct replay_opts *replay = opt->value;
62 char *end;
63
64 if (unset) {
65 replay->mainline = 0;
66 return 0;
67 }
68
69 replay->mainline = strtol(arg, &end, 10);
70 if (*end || replay->mainline <= 0)
71 return opterror(opt, "expects a number greater than zero", 0);
72
73 return 0;
74}
75
9fe3edc4 76LAST_ARG_MUST_BE_NULL
9044143f
RR
77static void verify_opt_compatible(const char *me, const char *base_opt, ...)
78{
79 const char *this_opt;
80 va_list ap;
81
82 va_start(ap, base_opt);
83 while ((this_opt = va_arg(ap, const char *))) {
84 if (va_arg(ap, int))
85 break;
86 }
87 va_end(ap);
88
89 if (this_opt)
90 die(_("%s: %s cannot be used with %s"), me, this_opt, base_opt);
91}
92
2863584f 93static int run_sequencer(int argc, const char **argv, struct replay_opts *opts)
9509af68 94{
80e1f791 95 const char * const * usage_str = revert_or_cherry_pick_usage(opts);
9044143f 96 const char *me = action_name(opts);
84d83f64 97 int cmd = 0;
023ff39b 98 struct option base_options[] = {
84d83f64
SB
99 OPT_CMDMODE(0, "quit", &cmd, N_("end revert or cherry-pick sequence"), 'q'),
100 OPT_CMDMODE(0, "continue", &cmd, N_("resume revert or cherry-pick sequence"), 'c'),
101 OPT_CMDMODE(0, "abort", &cmd, N_("cancel revert or cherry-pick sequence"), 'a'),
102 OPT_BOOL('n', "no-commit", &opts->no_commit, N_("don't automatically commit")),
103 OPT_BOOL('e', "edit", &opts->edit, N_("edit the commit message")),
7cfc6057 104 OPT_NOOP_NOARG('r', NULL),
84d83f64 105 OPT_BOOL('s', "signoff", &opts->signoff, N_("add Signed-off-by:")),
b16a991c
JK
106 OPT_CALLBACK('m', "mainline", opts, N_("parent-number"),
107 N_("select mainline parent"), option_parse_m),
80e1f791 108 OPT_RERERE_AUTOUPDATE(&opts->allow_rerere_auto),
a3b26dc7
NTND
109 OPT_STRING(0, "strategy", &opts->strategy, N_("strategy"), N_("merge strategy")),
110 OPT_CALLBACK('X', "strategy-option", &opts, N_("option"),
111 N_("option for merge strategy"), option_parse_x),
e703d711 112 { OPTION_STRING, 'S', "gpg-sign", &opts->gpg_sign, N_("key-id"),
3253553e 113 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
023ff39b 114 OPT_END()
f8103794 115 };
023ff39b 116 struct option *options = base_options;
f8103794 117
644a3690 118 if (opts->action == REPLAY_PICK) {
c62f6ec3 119 struct option cp_extra[] = {
84d83f64
SB
120 OPT_BOOL('x', NULL, &opts->record_origin, N_("append commit name")),
121 OPT_BOOL(0, "ff", &opts->allow_ff, N_("allow fast-forward")),
122 OPT_BOOL(0, "allow-empty", &opts->allow_empty, N_("preserve initially empty commits")),
123 OPT_BOOL(0, "allow-empty-message", &opts->allow_empty_message, N_("allow commits with empty messages")),
124 OPT_BOOL(0, "keep-redundant-commits", &opts->keep_redundant_commits, N_("keep redundant, empty commits")),
c62f6ec3
JH
125 OPT_END(),
126 };
023ff39b 127 options = parse_options_concat(options, cp_extra);
c62f6ec3
JH
128 }
129
7f13334e
JN
130 argc = parse_options(argc, argv, NULL, options, usage_str,
131 PARSE_OPT_KEEP_ARGV0 |
132 PARSE_OPT_KEEP_UNKNOWN);
26ae337b 133
b27cfb0d
NH
134 /* implies allow_empty */
135 if (opts->keep_redundant_commits)
136 opts->allow_empty = 1;
137
26ae337b 138 /* Check for incompatible command line arguments */
2863584f 139 if (cmd) {
5a5d80f4 140 char *this_operation;
2863584f 141 if (cmd == 'q')
f80a8726 142 this_operation = "--quit";
2863584f 143 else if (cmd == 'c')
5a5d80f4 144 this_operation = "--continue";
539047c1 145 else {
2863584f 146 assert(cmd == 'a');
539047c1
JN
147 this_operation = "--abort";
148 }
5a5d80f4
RR
149
150 verify_opt_compatible(me, this_operation,
26ae337b
RR
151 "--no-commit", opts->no_commit,
152 "--signoff", opts->signoff,
153 "--mainline", opts->mainline,
154 "--strategy", opts->strategy ? 1 : 0,
155 "--strategy-option", opts->xopts ? 1 : 0,
156 "-x", opts->record_origin,
157 "--ff", opts->allow_ff,
f826fb79
PW
158 "--rerere-autoupdate", opts->allow_rerere_auto == RERERE_AUTOUPDATE,
159 "--no-rerere-autoupdate", opts->allow_rerere_auto == RERERE_NOAUTOUPDATE,
26ae337b
RR
160 NULL);
161 }
162
9044143f
RR
163 if (opts->allow_ff)
164 verify_opt_compatible(me, "--ff",
165 "--signoff", opts->signoff,
166 "--no-commit", opts->no_commit,
167 "-x", opts->record_origin,
168 "--edit", opts->edit,
169 NULL);
7f13334e 170
2863584f 171 if (cmd) {
7f13334e
JN
172 opts->revs = NULL;
173 } else {
6d5b93f2 174 struct setup_revision_opt s_r_opt;
7f13334e
JN
175 opts->revs = xmalloc(sizeof(*opts->revs));
176 init_revisions(opts->revs, NULL);
a73e22e9 177 opts->revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED;
7f13334e
JN
178 if (argc < 2)
179 usage_with_options(usage_str, options);
d644c550
JK
180 if (!strcmp(argv[1], "-"))
181 argv[1] = "@{-1}";
6d5b93f2
CB
182 memset(&s_r_opt, 0, sizeof(s_r_opt));
183 s_r_opt.assume_dashdash = 1;
184 argc = setup_revisions(argc, argv, opts->revs, &s_r_opt);
7f13334e
JN
185 }
186
187 if (argc > 1)
188 usage_with_options(usage_str, options);
03a4e260
JS
189
190 /* These option values will be free()d */
191 opts->gpg_sign = xstrdup_or_null(opts->gpg_sign);
192 opts->strategy = xstrdup_or_null(opts->strategy);
2863584f
JS
193
194 if (cmd == 'q')
195 return sequencer_remove_state(opts);
196 if (cmd == 'c')
197 return sequencer_continue(opts);
198 if (cmd == 'a')
199 return sequencer_rollback(opts);
200 return sequencer_pick_revisions(opts);
9509af68
JS
201}
202
9509af68
JS
203int cmd_revert(int argc, const char **argv, const char *prefix)
204{
ee624c0d 205 struct replay_opts opts = REPLAY_OPTS_INIT;
cf3e2486 206 int res;
80e1f791 207
9509af68 208 if (isatty(0))
80e1f791 209 opts.edit = 1;
644a3690 210 opts.action = REPLAY_REVERT;
28d6daed 211 sequencer_init_config(&opts);
2863584f 212 res = run_sequencer(argc, argv, &opts);
cf3e2486
RR
213 if (res < 0)
214 die(_("revert failed"));
215 return res;
9509af68
JS
216}
217
218int cmd_cherry_pick(int argc, const char **argv, const char *prefix)
219{
ee624c0d 220 struct replay_opts opts = REPLAY_OPTS_INIT;
cf3e2486 221 int res;
80e1f791 222
644a3690 223 opts.action = REPLAY_PICK;
28d6daed 224 sequencer_init_config(&opts);
2863584f 225 res = run_sequencer(argc, argv, &opts);
cf3e2486
RR
226 if (res < 0)
227 die(_("cherry-pick failed"));
228 return res;
9509af68 229}