2007-03-01 05:26:30 +01:00
|
|
|
#include "cache.h"
|
|
|
|
#include "builtin.h"
|
2007-10-07 23:02:29 +02:00
|
|
|
#include "parse-options.h"
|
2008-03-03 07:30:56 +01:00
|
|
|
#include "diff.h"
|
|
|
|
#include "revision.h"
|
2008-08-10 13:48:55 +02:00
|
|
|
#include "rerere.h"
|
2011-08-04 12:39:08 +02:00
|
|
|
#include "dir.h"
|
2011-08-04 12:39:11 +02:00
|
|
|
#include "sequencer.h"
|
2007-03-01 05:26:30 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This implements the builtins revert and cherry-pick.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Johannes E. Schindelin
|
|
|
|
*
|
|
|
|
* Based on git-revert.sh, which is
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005 Linus Torvalds
|
|
|
|
* Copyright (c) 2005 Junio C Hamano
|
|
|
|
*/
|
|
|
|
|
2007-10-07 23:02:29 +02:00
|
|
|
static const char * const revert_usage[] = {
|
2008-07-13 15:36:15 +02:00
|
|
|
"git revert [options] <commit-ish>",
|
2011-08-04 12:39:11 +02:00
|
|
|
"git revert <subcommand>",
|
2007-10-07 23:02:29 +02:00
|
|
|
NULL
|
|
|
|
};
|
2007-03-01 05:26:30 +01:00
|
|
|
|
2007-10-07 23:02:29 +02:00
|
|
|
static const char * const cherry_pick_usage[] = {
|
2008-07-13 15:36:15 +02:00
|
|
|
"git cherry-pick [options] <commit-ish>",
|
2011-08-04 12:39:11 +02:00
|
|
|
"git cherry-pick <subcommand>",
|
2007-10-07 23:02:29 +02:00
|
|
|
NULL
|
|
|
|
};
|
2007-03-01 05:26:30 +01:00
|
|
|
|
2011-08-04 12:39:05 +02:00
|
|
|
static const char *action_name(const struct replay_opts *opts)
|
|
|
|
{
|
2012-01-11 19:15:56 +01:00
|
|
|
return opts->action == REPLAY_REVERT ? "revert" : "cherry-pick";
|
2011-08-04 12:39:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const *revert_or_cherry_pick_usage(struct replay_opts *opts)
|
2010-06-14 07:32:09 +02:00
|
|
|
{
|
2012-01-11 19:15:56 +01:00
|
|
|
return opts->action == REPLAY_REVERT ? revert_usage : cherry_pick_usage;
|
2010-06-14 07:32:09 +02:00
|
|
|
}
|
|
|
|
|
2010-12-11 01:51:44 +01:00
|
|
|
static int option_parse_x(const struct option *opt,
|
|
|
|
const char *arg, int unset)
|
|
|
|
{
|
2011-08-04 12:39:05 +02:00
|
|
|
struct replay_opts **opts_ptr = opt->value;
|
|
|
|
struct replay_opts *opts = *opts_ptr;
|
|
|
|
|
2010-12-11 01:51:44 +01:00
|
|
|
if (unset)
|
|
|
|
return 0;
|
|
|
|
|
2011-08-04 12:39:05 +02:00
|
|
|
ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
|
|
|
|
opts->xopts[opts->xopts_nr++] = xstrdup(arg);
|
2010-12-11 01:51:44 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-04 12:39:07 +02:00
|
|
|
static void verify_opt_compatible(const char *me, const char *base_opt, ...)
|
|
|
|
{
|
|
|
|
const char *this_opt;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, base_opt);
|
|
|
|
while ((this_opt = va_arg(ap, const char *))) {
|
|
|
|
if (va_arg(ap, int))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (this_opt)
|
|
|
|
die(_("%s: %s cannot be used with %s"), me, this_opt, base_opt);
|
|
|
|
}
|
|
|
|
|
2011-08-04 12:39:15 +02:00
|
|
|
static void verify_opt_mutually_compatible(const char *me, ...)
|
|
|
|
{
|
2011-09-11 21:39:32 +02:00
|
|
|
const char *opt1, *opt2 = NULL;
|
2011-08-04 12:39:15 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, me);
|
|
|
|
while ((opt1 = va_arg(ap, const char *))) {
|
|
|
|
if (va_arg(ap, int))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (opt1) {
|
|
|
|
while ((opt2 = va_arg(ap, const char *))) {
|
|
|
|
if (va_arg(ap, int))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt1 && opt2)
|
|
|
|
die(_("%s: %s cannot be used with %s"), me, opt1, opt2);
|
|
|
|
}
|
|
|
|
|
2011-08-04 12:39:05 +02:00
|
|
|
static void parse_args(int argc, const char **argv, struct replay_opts *opts)
|
2007-03-01 05:26:30 +01:00
|
|
|
{
|
2011-08-04 12:39:05 +02:00
|
|
|
const char * const * usage_str = revert_or_cherry_pick_usage(opts);
|
2011-08-04 12:39:07 +02:00
|
|
|
const char *me = action_name(opts);
|
2011-11-22 12:14:29 +01:00
|
|
|
int remove_state = 0;
|
2011-08-04 12:39:15 +02:00
|
|
|
int contin = 0;
|
2011-11-23 02:27:21 +01:00
|
|
|
int rollback = 0;
|
2007-10-07 23:02:29 +02:00
|
|
|
struct option options[] = {
|
2011-11-22 12:14:29 +01:00
|
|
|
OPT_BOOLEAN(0, "quit", &remove_state, "end revert or cherry-pick sequence"),
|
|
|
|
OPT_BOOLEAN(0, "continue", &contin, "resume revert or cherry-pick sequence"),
|
2011-11-23 02:27:21 +01:00
|
|
|
OPT_BOOLEAN(0, "abort", &rollback, "cancel revert or cherry-pick sequence"),
|
2011-08-04 12:39:05 +02:00
|
|
|
OPT_BOOLEAN('n', "no-commit", &opts->no_commit, "don't automatically commit"),
|
|
|
|
OPT_BOOLEAN('e', "edit", &opts->edit, "edit the commit message"),
|
2011-09-28 19:47:50 +02:00
|
|
|
OPT_NOOP_NOARG('r', NULL),
|
2011-08-04 12:39:05 +02:00
|
|
|
OPT_BOOLEAN('s', "signoff", &opts->signoff, "add Signed-off-by:"),
|
|
|
|
OPT_INTEGER('m', "mainline", &opts->mainline, "parent number"),
|
|
|
|
OPT_RERERE_AUTOUPDATE(&opts->allow_rerere_auto),
|
|
|
|
OPT_STRING(0, "strategy", &opts->strategy, "strategy", "merge strategy"),
|
|
|
|
OPT_CALLBACK('X', "strategy-option", &opts, "option",
|
2010-12-11 01:51:44 +01:00
|
|
|
"option for merge strategy", option_parse_x),
|
2007-10-07 23:02:29 +02:00
|
|
|
OPT_END(),
|
2010-03-06 21:34:42 +01:00
|
|
|
OPT_END(),
|
|
|
|
OPT_END(),
|
2007-10-07 23:02:29 +02:00
|
|
|
};
|
|
|
|
|
2012-01-11 19:15:56 +01:00
|
|
|
if (opts->action == REPLAY_PICK) {
|
2010-03-06 21:34:42 +01:00
|
|
|
struct option cp_extra[] = {
|
2011-08-04 12:39:05 +02:00
|
|
|
OPT_BOOLEAN('x', NULL, &opts->record_origin, "append commit name"),
|
|
|
|
OPT_BOOLEAN(0, "ff", &opts->allow_ff, "allow fast-forward"),
|
2010-03-06 21:34:42 +01:00
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
if (parse_options_concat(options, ARRAY_SIZE(options), cp_extra))
|
2011-02-23 00:42:28 +01:00
|
|
|
die(_("program error"));
|
2010-03-06 21:34:42 +01:00
|
|
|
}
|
|
|
|
|
2011-08-13 19:06:23 +02:00
|
|
|
argc = parse_options(argc, argv, NULL, options, usage_str,
|
|
|
|
PARSE_OPT_KEEP_ARGV0 |
|
|
|
|
PARSE_OPT_KEEP_UNKNOWN);
|
2011-08-04 12:39:11 +02:00
|
|
|
|
2011-08-04 12:39:15 +02:00
|
|
|
/* Check for incompatible subcommands */
|
|
|
|
verify_opt_mutually_compatible(me,
|
2011-11-22 12:14:29 +01:00
|
|
|
"--quit", remove_state,
|
2011-08-04 12:39:15 +02:00
|
|
|
"--continue", contin,
|
2011-11-23 02:27:21 +01:00
|
|
|
"--abort", rollback,
|
2011-08-04 12:39:15 +02:00
|
|
|
NULL);
|
|
|
|
|
2011-08-04 12:39:11 +02:00
|
|
|
/* Set the subcommand */
|
2011-11-22 12:14:29 +01:00
|
|
|
if (remove_state)
|
|
|
|
opts->subcommand = REPLAY_REMOVE_STATE;
|
2011-08-04 12:39:15 +02:00
|
|
|
else if (contin)
|
|
|
|
opts->subcommand = REPLAY_CONTINUE;
|
2011-11-23 02:27:21 +01:00
|
|
|
else if (rollback)
|
|
|
|
opts->subcommand = REPLAY_ROLLBACK;
|
2011-08-04 12:39:11 +02:00
|
|
|
else
|
|
|
|
opts->subcommand = REPLAY_NONE;
|
|
|
|
|
|
|
|
/* Check for incompatible command line arguments */
|
2011-08-04 12:39:15 +02:00
|
|
|
if (opts->subcommand != REPLAY_NONE) {
|
|
|
|
char *this_operation;
|
2011-11-22 12:14:29 +01:00
|
|
|
if (opts->subcommand == REPLAY_REMOVE_STATE)
|
|
|
|
this_operation = "--quit";
|
2011-11-23 02:27:21 +01:00
|
|
|
else if (opts->subcommand == REPLAY_CONTINUE)
|
2011-08-04 12:39:15 +02:00
|
|
|
this_operation = "--continue";
|
2011-11-23 02:27:21 +01:00
|
|
|
else {
|
|
|
|
assert(opts->subcommand == REPLAY_ROLLBACK);
|
|
|
|
this_operation = "--abort";
|
|
|
|
}
|
2011-08-04 12:39:15 +02:00
|
|
|
|
|
|
|
verify_opt_compatible(me, this_operation,
|
2011-08-04 12:39:11 +02:00
|
|
|
"--no-commit", opts->no_commit,
|
|
|
|
"--signoff", opts->signoff,
|
|
|
|
"--mainline", opts->mainline,
|
|
|
|
"--strategy", opts->strategy ? 1 : 0,
|
|
|
|
"--strategy-option", opts->xopts ? 1 : 0,
|
|
|
|
"-x", opts->record_origin,
|
|
|
|
"--ff", opts->allow_ff,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2011-08-04 12:39:07 +02:00
|
|
|
if (opts->allow_ff)
|
|
|
|
verify_opt_compatible(me, "--ff",
|
|
|
|
"--signoff", opts->signoff,
|
|
|
|
"--no-commit", opts->no_commit,
|
|
|
|
"-x", opts->record_origin,
|
|
|
|
"--edit", opts->edit,
|
|
|
|
NULL);
|
2011-08-13 19:06:23 +02:00
|
|
|
|
|
|
|
if (opts->subcommand != REPLAY_NONE) {
|
|
|
|
opts->revs = NULL;
|
|
|
|
} else {
|
|
|
|
opts->revs = xmalloc(sizeof(*opts->revs));
|
|
|
|
init_revisions(opts->revs, NULL);
|
|
|
|
opts->revs->no_walk = 1;
|
|
|
|
if (argc < 2)
|
|
|
|
usage_with_options(usage_str, options);
|
|
|
|
argc = setup_revisions(argc, argv, opts->revs, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
usage_with_options(usage_str, options);
|
2007-03-01 05:26:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmd_revert(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2011-08-04 12:39:05 +02:00
|
|
|
struct replay_opts opts;
|
2011-08-04 12:39:16 +02:00
|
|
|
int res;
|
2011-08-04 12:39:05 +02:00
|
|
|
|
|
|
|
memset(&opts, 0, sizeof(opts));
|
2007-03-01 05:26:30 +01:00
|
|
|
if (isatty(0))
|
2011-08-04 12:39:05 +02:00
|
|
|
opts.edit = 1;
|
2012-01-11 19:15:56 +01:00
|
|
|
opts.action = REPLAY_REVERT;
|
revert: Separate cmdline parsing from functional code
Currently, revert_or_cherry_pick sets up a default git config, parses
command-line arguments, before preparing to pick commits. This makes
for a bad API as the central worry of callers is to assert whether or
not a conflict occured while cherry picking. The current API is like:
if (revert_or_cherry_pick(argc, argv, opts) < 0)
print "Something failed, we're not sure what"
Simplify and rename revert_or_cherry_pick to pick_commits so that it
only has the responsibility of setting up the revision walker and
picking commits in a loop. Transfer the remaining work to its
callers. Now, the API is simplified as:
if (parse_args(argc, argv, opts) < 0)
print "Can't parse arguments"
if (pick_commits(opts) < 0)
print "Error encountered in picking machinery"
Later in the series, pick_commits will also serve as the starting
point for continuing a cherry-pick or revert.
Inspired-by: Christian Couder <chriscool@tuxfamily.org>
Helped-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-08-04 12:39:06 +02:00
|
|
|
git_config(git_default_config, NULL);
|
|
|
|
parse_args(argc, argv, &opts);
|
2012-01-11 19:15:57 +01:00
|
|
|
res = sequencer_pick_revisions(&opts);
|
2011-08-04 12:39:16 +02:00
|
|
|
if (res < 0)
|
|
|
|
die(_("revert failed"));
|
|
|
|
return res;
|
2007-03-01 05:26:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmd_cherry_pick(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2011-08-04 12:39:05 +02:00
|
|
|
struct replay_opts opts;
|
2011-08-04 12:39:16 +02:00
|
|
|
int res;
|
2011-08-04 12:39:05 +02:00
|
|
|
|
|
|
|
memset(&opts, 0, sizeof(opts));
|
2012-01-11 19:15:56 +01:00
|
|
|
opts.action = REPLAY_PICK;
|
revert: Separate cmdline parsing from functional code
Currently, revert_or_cherry_pick sets up a default git config, parses
command-line arguments, before preparing to pick commits. This makes
for a bad API as the central worry of callers is to assert whether or
not a conflict occured while cherry picking. The current API is like:
if (revert_or_cherry_pick(argc, argv, opts) < 0)
print "Something failed, we're not sure what"
Simplify and rename revert_or_cherry_pick to pick_commits so that it
only has the responsibility of setting up the revision walker and
picking commits in a loop. Transfer the remaining work to its
callers. Now, the API is simplified as:
if (parse_args(argc, argv, opts) < 0)
print "Can't parse arguments"
if (pick_commits(opts) < 0)
print "Error encountered in picking machinery"
Later in the series, pick_commits will also serve as the starting
point for continuing a cherry-pick or revert.
Inspired-by: Christian Couder <chriscool@tuxfamily.org>
Helped-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-08-04 12:39:06 +02:00
|
|
|
git_config(git_default_config, NULL);
|
|
|
|
parse_args(argc, argv, &opts);
|
2012-01-11 19:15:57 +01:00
|
|
|
res = sequencer_pick_revisions(&opts);
|
2011-08-04 12:39:16 +02:00
|
|
|
if (res < 0)
|
|
|
|
die(_("cherry-pick failed"));
|
|
|
|
return res;
|
2007-03-01 05:26:30 +01:00
|
|
|
}
|