Merge branch 'cc/cherry-pick-stdin'
* cc/cherry-pick-stdin: revert: do not rebuild argv on heap revert: accept arbitrary rev-list options t3508 (cherry-pick): futureproof against unmerged files
This commit is contained in:
commit
01aedc930b
@ -113,6 +113,13 @@ git cherry-pick --ff ..next::
|
|||||||
are in next but not HEAD to the current branch, creating a new
|
are in next but not HEAD to the current branch, creating a new
|
||||||
commit for each new change.
|
commit for each new change.
|
||||||
|
|
||||||
|
git rev-list --reverse master \-- README | git cherry-pick -n --stdin::
|
||||||
|
|
||||||
|
Apply the changes introduced by all commits on the master
|
||||||
|
branch that touched README to the working tree and index,
|
||||||
|
so the result can be inspected and made into a single new
|
||||||
|
commit if suitable.
|
||||||
|
|
||||||
Author
|
Author
|
||||||
------
|
------
|
||||||
Written by Junio C Hamano <gitster@pobox.com>
|
Written by Junio C Hamano <gitster@pobox.com>
|
||||||
|
@ -50,10 +50,14 @@ static const char *strategy;
|
|||||||
|
|
||||||
static char *get_encoding(const char *message);
|
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)
|
static void parse_args(int argc, const char **argv)
|
||||||
{
|
{
|
||||||
const char * const * usage_str =
|
const char * const * usage_str = revert_or_cherry_pick_usage();
|
||||||
action == REVERT ? revert_usage : cherry_pick_usage;
|
|
||||||
int noop;
|
int noop;
|
||||||
struct option options[] = {
|
struct option options[] = {
|
||||||
OPT_BOOLEAN('n', "no-commit", &no_commit, "don't automatically commit"),
|
OPT_BOOLEAN('n', "no-commit", &no_commit, "don't automatically commit"),
|
||||||
@ -78,8 +82,10 @@ static void parse_args(int argc, const char **argv)
|
|||||||
die("program error");
|
die("program error");
|
||||||
}
|
}
|
||||||
|
|
||||||
commit_argc = parse_options(argc, argv, NULL, options, usage_str, 0);
|
commit_argc = parse_options(argc, argv, NULL, options, usage_str,
|
||||||
if (commit_argc < 1)
|
PARSE_OPT_KEEP_ARGV0 |
|
||||||
|
PARSE_OPT_KEEP_UNKNOWN);
|
||||||
|
if (commit_argc < 2)
|
||||||
usage_with_options(usage_str, options);
|
usage_with_options(usage_str, options);
|
||||||
|
|
||||||
commit_argv = argv;
|
commit_argv = argv;
|
||||||
@ -525,27 +531,22 @@ static int do_pick_commit(void)
|
|||||||
|
|
||||||
static void prepare_revs(struct rev_info *revs)
|
static void prepare_revs(struct rev_info *revs)
|
||||||
{
|
{
|
||||||
int argc = 0;
|
int argc;
|
||||||
int i;
|
|
||||||
const char **argv = xmalloc((commit_argc + 4) * sizeof(*argv));
|
|
||||||
|
|
||||||
argv[argc++] = NULL;
|
|
||||||
argv[argc++] = "--no-walk";
|
|
||||||
if (action != REVERT)
|
|
||||||
argv[argc++] = "--reverse";
|
|
||||||
for (i = 0; i < commit_argc; i++)
|
|
||||||
argv[argc++] = commit_argv[i];
|
|
||||||
argv[argc++] = NULL;
|
|
||||||
|
|
||||||
init_revisions(revs, NULL);
|
init_revisions(revs, NULL);
|
||||||
setup_revisions(argc - 1, argv, revs, NULL);
|
revs->no_walk = 1;
|
||||||
|
if (action != REVERT)
|
||||||
|
revs->reverse = 1;
|
||||||
|
|
||||||
|
argc = setup_revisions(commit_argc, commit_argv, revs, NULL);
|
||||||
|
if (argc > 1)
|
||||||
|
usage(*revert_or_cherry_pick_usage());
|
||||||
|
|
||||||
if (prepare_revision_walk(revs))
|
if (prepare_revision_walk(revs))
|
||||||
die("revision walk setup failed");
|
die("revision walk setup failed");
|
||||||
|
|
||||||
if (!revs->commits)
|
if (!revs->commits)
|
||||||
die("empty commit set passed");
|
die("empty commit set passed");
|
||||||
|
|
||||||
free(argv);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int revert_or_cherry_pick(int argc, const char **argv)
|
static int revert_or_cherry_pick(int argc, const char **argv)
|
||||||
|
@ -41,6 +41,24 @@ test_expect_success setup '
|
|||||||
git tag rename2
|
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' '
|
test_expect_success 'cherry-pick after renaming branch' '
|
||||||
|
|
||||||
git checkout rename2 &&
|
git checkout rename2 &&
|
||||||
|
@ -23,7 +23,7 @@ test_expect_success setup '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'cherry-pick first..fourth works' '
|
test_expect_success 'cherry-pick first..fourth works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard first &&
|
git reset --hard first &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git cherry-pick first..fourth &&
|
git cherry-pick first..fourth &&
|
||||||
@ -33,7 +33,7 @@ test_expect_success 'cherry-pick first..fourth works' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'cherry-pick --ff first..fourth works' '
|
test_expect_success 'cherry-pick --ff first..fourth works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard first &&
|
git reset --hard first &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git cherry-pick --ff first..fourth &&
|
git cherry-pick --ff first..fourth &&
|
||||||
@ -43,7 +43,7 @@ test_expect_success 'cherry-pick --ff first..fourth works' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'cherry-pick -n first..fourth works' '
|
test_expect_success 'cherry-pick -n first..fourth works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard first &&
|
git reset --hard first &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git cherry-pick -n first..fourth &&
|
git cherry-pick -n first..fourth &&
|
||||||
@ -53,7 +53,7 @@ test_expect_success 'cherry-pick -n first..fourth works' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'revert first..fourth works' '
|
test_expect_success 'revert first..fourth works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard fourth &&
|
git reset --hard fourth &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git revert first..fourth &&
|
git revert first..fourth &&
|
||||||
@ -63,7 +63,7 @@ test_expect_success 'revert first..fourth works' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'revert ^first fourth works' '
|
test_expect_success 'revert ^first fourth works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard fourth &&
|
git reset --hard fourth &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git revert ^first fourth &&
|
git revert ^first fourth &&
|
||||||
@ -73,7 +73,7 @@ test_expect_success 'revert ^first fourth works' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'revert fourth fourth~1 fourth~2 works' '
|
test_expect_success 'revert fourth fourth~1 fourth~2 works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard fourth &&
|
git reset --hard fourth &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git revert fourth fourth~1 fourth~2 &&
|
git revert fourth fourth~1 fourth~2 &&
|
||||||
@ -82,8 +82,8 @@ test_expect_success 'revert fourth fourth~1 fourth~2 works' '
|
|||||||
git diff --quiet HEAD first
|
git diff --quiet HEAD first
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_failure 'cherry-pick -3 fourth works' '
|
test_expect_success 'cherry-pick -3 fourth works' '
|
||||||
git checkout master &&
|
git checkout -f master &&
|
||||||
git reset --hard first &&
|
git reset --hard first &&
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git cherry-pick -3 fourth &&
|
git cherry-pick -3 fourth &&
|
||||||
@ -92,4 +92,14 @@ test_expect_failure 'cherry-pick -3 fourth works' '
|
|||||||
test "$(git rev-parse --verify HEAD)" != "$(git rev-parse --verify fourth)"
|
test "$(git rev-parse --verify HEAD)" != "$(git rev-parse --verify fourth)"
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success 'cherry-pick --stdin works' '
|
||||||
|
git checkout -f master &&
|
||||||
|
git reset --hard first &&
|
||||||
|
test_tick &&
|
||||||
|
git rev-list --reverse first..fourth | git cherry-pick --stdin &&
|
||||||
|
git diff --quiet other &&
|
||||||
|
git diff --quiet HEAD other &&
|
||||||
|
test "$(git rev-parse --verify HEAD)" != "$(git rev-parse --verify fourth)"
|
||||||
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
Loading…
Reference in New Issue
Block a user