2007-01-15 09:00:02 +03:00
|
|
|
#!/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
|
|
|
|
'
|
|
|
|
|
2010-06-14 09:32:09 +04:00
|
|
|
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" &&
|
2012-08-27 09:36:55 +04:00
|
|
|
test_i18ngrep '[Uu]sage:' msg
|
2010-06-14 09:32:09 +04:00
|
|
|
'
|
|
|
|
|
|
|
|
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" &&
|
2012-08-27 09:36:55 +04:00
|
|
|
test_i18ngrep '[Uu]sage:' msg
|
2010-06-14 09:32:09 +04:00
|
|
|
'
|
|
|
|
|
2007-01-15 09:00:02 +03:00
|
|
|
test_expect_success 'cherry-pick after renaming branch' '
|
|
|
|
|
|
|
|
git checkout rename2 &&
|
2007-11-02 18:33:07 +03:00
|
|
|
git cherry-pick added &&
|
2009-01-15 16:03:17 +03:00
|
|
|
test $(git rev-parse HEAD^) = $(git rev-parse rename2) &&
|
2007-01-15 09:00:02 +03:00
|
|
|
test -f opos &&
|
2010-06-12 20:05:12 +04:00
|
|
|
grep "Add extra line at the end" opos &&
|
|
|
|
git reflog -1 | grep cherry-pick
|
2007-01-15 09:00:02 +03:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'revert after renaming branch' '
|
|
|
|
|
|
|
|
git checkout rename1 &&
|
2007-11-02 18:33:07 +03:00
|
|
|
git revert added &&
|
2009-01-15 16:03:17 +03:00
|
|
|
test $(git rev-parse HEAD^) = $(git rev-parse rename1) &&
|
2007-01-15 09:00:02 +03:00
|
|
|
test -f spoo &&
|
2010-06-12 20:05:12 +04:00
|
|
|
! grep "Add extra line at the end" spoo &&
|
|
|
|
git reflog -1 | grep revert
|
2007-01-15 09:00:02 +03:00
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-10-31 22:59:33 +03:00
|
|
|
test_expect_success 'cherry-pick on stat-dirty working tree' '
|
|
|
|
git clone . copy &&
|
|
|
|
(
|
|
|
|
cd copy &&
|
|
|
|
git checkout initial &&
|
|
|
|
test-chmtime +40 oops &&
|
|
|
|
git cherry-pick added
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-04-13 03:23:01 +04:00
|
|
|
test_expect_success 'revert forbidden on dirty working tree' '
|
2008-03-03 09:30:56 +03:00
|
|
|
|
|
|
|
echo content >extra_file &&
|
|
|
|
git add extra_file &&
|
|
|
|
test_must_fail git revert HEAD 2>errors &&
|
2016-10-21 15:26:25 +03:00
|
|
|
test_i18ngrep "your local changes would be overwritten by " errors
|
2008-03-03 09:30:56 +03:00
|
|
|
|
|
|
|
'
|
|
|
|
|
2013-09-06 01:51:17 +04:00
|
|
|
test_expect_success 'cherry-pick on unborn branch' '
|
2012-12-21 23:10:11 +04:00
|
|
|
git checkout --orphan unborn &&
|
|
|
|
git rm --cached -r . &&
|
|
|
|
rm -rf * &&
|
|
|
|
git cherry-pick initial &&
|
|
|
|
git diff --quiet initial &&
|
|
|
|
! test_cmp_rev initial HEAD
|
|
|
|
'
|
|
|
|
|
2013-09-05 18:57:23 +04:00
|
|
|
test_expect_success 'cherry-pick "-" to pick from previous branch' '
|
|
|
|
git checkout unborn &&
|
|
|
|
test_commit to-pick actual content &&
|
|
|
|
git checkout master &&
|
|
|
|
git cherry-pick - &&
|
|
|
|
echo content >expect &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'cherry-pick "-" is meaningless without checkout' '
|
|
|
|
test_create_repo afresh &&
|
|
|
|
(
|
|
|
|
cd afresh &&
|
|
|
|
test_commit one &&
|
|
|
|
test_commit two &&
|
|
|
|
test_commit three &&
|
|
|
|
test_must_fail git cherry-pick -
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-10-10 20:41:17 +04:00
|
|
|
test_expect_success 'cherry-pick "-" works with arguments' '
|
|
|
|
git checkout -b side-branch &&
|
|
|
|
test_commit change actual change &&
|
|
|
|
git checkout master &&
|
|
|
|
git cherry-pick -s - &&
|
|
|
|
echo "Signed-off-by: C O Mitter <committer@example.com>" >expect &&
|
|
|
|
git cat-file commit HEAD | grep ^Signed-off-by: >signoff &&
|
|
|
|
test_cmp expect signoff &&
|
|
|
|
echo change >expect &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2016-11-26 15:48:06 +03:00
|
|
|
test_expect_success 'cherry-pick works with dirty renamed file' '
|
2016-11-26 15:48:02 +03:00
|
|
|
test_commit to-rename &&
|
|
|
|
git checkout -b unrelated &&
|
|
|
|
test_commit unrelated &&
|
|
|
|
git checkout @{-1} &&
|
|
|
|
git mv to-rename.t renamed &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m renamed &&
|
|
|
|
echo modified >renamed &&
|
|
|
|
git cherry-pick refs/heads/unrelated
|
|
|
|
'
|
|
|
|
|
2007-01-15 09:00:02 +03:00
|
|
|
test_done
|