Use merge-recursive in git-revert/git-cherry-pick
This makes revert and cherry-pick to use merge-recursive, to allow them to notice renames. A pair of test scripts demonstrate that an old change before a rename happened can be applied (reverted) after a rename with cherry-pick (with revert). Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
5fe3acc43d
commit
acb4441e0d
@ -151,32 +151,27 @@ esac >.msg
|
|||||||
# and $prev on top of us (when reverting), or the change between
|
# and $prev on top of us (when reverting), or the change between
|
||||||
# $prev and $commit on top of us (when cherry-picking or replaying).
|
# $prev and $commit on top of us (when cherry-picking or replaying).
|
||||||
|
|
||||||
echo >&2 "First trying simple merge strategy to $me."
|
git-merge-recursive $base -- $head $next &&
|
||||||
git-read-tree -m -u --aggressive $base $head $next &&
|
|
||||||
result=$(git-write-tree 2>/dev/null) || {
|
result=$(git-write-tree 2>/dev/null) || {
|
||||||
echo >&2 "Simple $me fails; trying Automatic $me."
|
mv -f .msg "$GIT_DIR/MERGE_MSG"
|
||||||
git-merge-index -o git-merge-one-file -a || {
|
{
|
||||||
mv -f .msg "$GIT_DIR/MERGE_MSG"
|
echo '
|
||||||
{
|
|
||||||
echo '
|
|
||||||
Conflicts:
|
Conflicts:
|
||||||
'
|
'
|
||||||
git ls-files --unmerged |
|
git ls-files --unmerged |
|
||||||
sed -e 's/^[^ ]* / /' |
|
sed -e 's/^[^ ]* / /' |
|
||||||
uniq
|
uniq
|
||||||
} >>"$GIT_DIR/MERGE_MSG"
|
} >>"$GIT_DIR/MERGE_MSG"
|
||||||
echo >&2 "Automatic $me failed. After resolving the conflicts,"
|
echo >&2 "Automatic $me failed. After resolving the conflicts,"
|
||||||
echo >&2 "mark the corrected paths with 'git-add <paths>'"
|
echo >&2 "mark the corrected paths with 'git-add <paths>'"
|
||||||
echo >&2 "and commit the result."
|
echo >&2 "and commit the result."
|
||||||
case "$me" in
|
case "$me" in
|
||||||
cherry-pick)
|
cherry-pick)
|
||||||
echo >&2 "You may choose to use the following when making"
|
echo >&2 "You may choose to use the following when making"
|
||||||
echo >&2 "the commit:"
|
echo >&2 "the commit:"
|
||||||
echo >&2 "$set_author_env"
|
echo >&2 "$set_author_env"
|
||||||
esac
|
esac
|
||||||
exit 1
|
exit 1
|
||||||
}
|
|
||||||
result=$(git-write-tree) || exit
|
|
||||||
}
|
}
|
||||||
echo >&2 "Finished one $me."
|
echo >&2 "Finished one $me."
|
||||||
|
|
||||||
|
62
t/t3501-revert-cherry-pick.sh
Executable file
62
t/t3501-revert-cherry-pick.sh
Executable file
@ -0,0 +1,62 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
test_description='test cherry-pick and revert with renames
|
||||||
|
|
||||||
|
--
|
||||||
|
+ rename2: renames oops to opos
|
||||||
|
+ rename1: renames oops to spoo
|
||||||
|
+ added: adds extra line to oops
|
||||||
|
++ initial: has lines in oops
|
||||||
|
|
||||||
|
'
|
||||||
|
|
||||||
|
. ./test-lib.sh
|
||||||
|
|
||||||
|
test_expect_success setup '
|
||||||
|
|
||||||
|
for l in a b c d e f g h i j k l m n o
|
||||||
|
do
|
||||||
|
echo $l$l$l$l$l$l$l$l$l
|
||||||
|
done >oops &&
|
||||||
|
|
||||||
|
test_tick &&
|
||||||
|
git add oops &&
|
||||||
|
git commit -m initial &&
|
||||||
|
git tag initial &&
|
||||||
|
|
||||||
|
test_tick &&
|
||||||
|
echo "Add extra line at the end" >>oops &&
|
||||||
|
git commit -a -m added &&
|
||||||
|
git tag added &&
|
||||||
|
|
||||||
|
test_tick &&
|
||||||
|
git mv oops spoo &&
|
||||||
|
git commit -m rename1 &&
|
||||||
|
git tag rename1 &&
|
||||||
|
|
||||||
|
test_tick &&
|
||||||
|
git checkout -b side initial &&
|
||||||
|
git mv oops opos &&
|
||||||
|
git commit -m rename2 &&
|
||||||
|
git tag rename2
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'cherry-pick after renaming branch' '
|
||||||
|
|
||||||
|
git checkout rename2 &&
|
||||||
|
EDITOR=: VISUAL=: git cherry-pick added &&
|
||||||
|
test -f opos &&
|
||||||
|
grep "Add extra line at the end" opos
|
||||||
|
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'revert after renaming branch' '
|
||||||
|
|
||||||
|
git checkout rename1 &&
|
||||||
|
EDITOR=: VISUAL=: git revert added &&
|
||||||
|
test -f spoo &&
|
||||||
|
! grep "Add extra line at the end" spoo
|
||||||
|
|
||||||
|
'
|
||||||
|
|
||||||
|
test_done
|
Loading…
Reference in New Issue
Block a user