Skip to content

Commit

Permalink
revert: do not rebuild argv on heap
Browse files Browse the repository at this point in the history
Set options in struct rev_info directly so we can reuse the
arguments collected from parse_options without modification.

This is just a cleanup; no noticeable change is intended.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jonathan Nieder authored and Junio C Hamano committed Jun 29, 2010
1 parent 65281b7 commit e0ef849
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 16 deletions.
32 changes: 16 additions & 16 deletions builtin/revert.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,14 @@ static const char *strategy;

static char *get_encoding(const char *message);

static const char * const *revert_or_cherry_pick_usage(void)
{
return action == REVERT ? revert_usage : cherry_pick_usage;
}

static void parse_args(int argc, const char **argv)
{
const char * const * usage_str =
action == REVERT ? revert_usage : cherry_pick_usage;
const char * const * usage_str = revert_or_cherry_pick_usage();
int noop;
struct option options[] = {
OPT_BOOLEAN('n', "no-commit", &no_commit, "don't automatically commit"),
Expand All @@ -79,8 +83,9 @@ static void parse_args(int argc, const char **argv)
}

commit_argc = parse_options(argc, argv, NULL, options, usage_str,
PARSE_OPT_KEEP_ARGV0 |
PARSE_OPT_KEEP_UNKNOWN);
if (commit_argc < 1)
if (commit_argc < 2)
usage_with_options(usage_str, options);

commit_argv = argv;
Expand Down Expand Up @@ -526,27 +531,22 @@ static int do_pick_commit(void)

static void prepare_revs(struct rev_info *revs)
{
int argc = 0;
int i;
const char **argv = xmalloc((commit_argc + 4) * sizeof(*argv));
int argc;

argv[argc++] = NULL;
argv[argc++] = "--no-walk";
init_revisions(revs, NULL);
revs->no_walk = 1;
if (action != REVERT)
argv[argc++] = "--reverse";
for (i = 0; i < commit_argc; i++)
argv[argc++] = commit_argv[i];
argv[argc++] = NULL;
revs->reverse = 1;

argc = setup_revisions(commit_argc, commit_argv, revs, NULL);
if (argc > 1)
usage(*revert_or_cherry_pick_usage());

init_revisions(revs, NULL);
setup_revisions(argc - 1, argv, revs, NULL);
if (prepare_revision_walk(revs))
die("revision walk setup failed");

if (!revs->commits)
die("empty commit set passed");

free(argv);
}

static int revert_or_cherry_pick(int argc, const char **argv)
Expand Down
18 changes: 18 additions & 0 deletions t/t3501-revert-cherry-pick.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,24 @@ test_expect_success setup '
git tag rename2
'

test_expect_success 'cherry-pick --nonsense' '
pos=$(git rev-parse HEAD) &&
git diff --exit-code HEAD &&
test_must_fail git cherry-pick --nonsense 2>msg &&
git diff --exit-code HEAD "$pos" &&
grep '[Uu]sage:' msg
'

test_expect_success 'revert --nonsense' '
pos=$(git rev-parse HEAD) &&
git diff --exit-code HEAD &&
test_must_fail git revert --nonsense 2>msg &&
git diff --exit-code HEAD "$pos" &&
grep '[Uu]sage:' msg
'

test_expect_success 'cherry-pick after renaming branch' '
git checkout rename2 &&
Expand Down

0 comments on commit e0ef849

Please sign in to comment.