Skip to content

Commit

Permalink
Merge branch 'jk/cherry-pick-0-mainline'
Browse files Browse the repository at this point in the history
"git revert -m 0 $merge_commit" complained that reverting a merge
needs to say relative to which parent the reversion needs to
happen, as if "-m 0" weren't given.  The correct diagnosis is that
"-m 0" does not refer to the first parent ("-m 1" does).  This has
been fixed.

* jk/cherry-pick-0-mainline:
  cherry-pick: detect bogus arguments to --mainline
  • Loading branch information
gitster committed Mar 17, 2017
2 parents a0393a2 + b16a991 commit 9c96637
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
21 changes: 20 additions & 1 deletion builtin/revert.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,24 @@ static int option_parse_x(const struct option *opt,
return 0;
}

static int option_parse_m(const struct option *opt,
const char *arg, int unset)
{
struct replay_opts *replay = opt->value;
char *end;

if (unset) {
replay->mainline = 0;
return 0;
}

replay->mainline = strtol(arg, &end, 10);
if (*end || replay->mainline <= 0)
return opterror(opt, "expects a number greater than zero", 0);

return 0;
}

LAST_ARG_MUST_BE_NULL
static void verify_opt_compatible(const char *me, const char *base_opt, ...)
{
Expand Down Expand Up @@ -84,7 +102,8 @@ static int run_sequencer(int argc, const char **argv, struct replay_opts *opts)
OPT_BOOL('e', "edit", &opts->edit, N_("edit the commit message")),
OPT_NOOP_NOARG('r', NULL),
OPT_BOOL('s', "signoff", &opts->signoff, N_("add Signed-off-by:")),
OPT_INTEGER('m', "mainline", &opts->mainline, N_("parent number")),
OPT_CALLBACK('m', "mainline", opts, N_("parent-number"),
N_("select mainline parent"), option_parse_m),
OPT_RERERE_AUTOUPDATE(&opts->allow_rerere_auto),
OPT_STRING(0, "strategy", &opts->strategy, N_("strategy"), N_("merge strategy")),
OPT_CALLBACK('X', "strategy-option", &opts, N_("option"),
Expand Down
9 changes: 9 additions & 0 deletions t/t3502-cherry-pick-merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ test_expect_success setup '
'

test_expect_success 'cherry-pick -m complains of bogus numbers' '
# expect 129 here to distinguish between cases where
# there was nothing to cherry-pick
test_expect_code 129 git cherry-pick -m &&
test_expect_code 129 git cherry-pick -m foo b &&
test_expect_code 129 git cherry-pick -m -1 b &&
test_expect_code 129 git cherry-pick -m 0 b
'

test_expect_success 'cherry-pick a non-merge with -m should fail' '
git reset --hard &&
Expand Down

0 comments on commit 9c96637

Please sign in to comment.