]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3501-revert-cherry-pick.sh
Git 2.40.1
[thirdparty/git.git] / t / t3501-revert-cherry-pick.sh
CommitLineData
acb4441e
JH
1#!/bin/sh
2
3test_description='test cherry-pick and revert with renames
4
5 --
6 + rename2: renames oops to opos
7 + rename1: renames oops to spoo
8 + added: adds extra line to oops
9 ++ initial: has lines in oops
10
11'
12
cbc75a12 13GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
14export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
15
9ff2f060 16TEST_PASSES_SANITIZE_LEAK=true
acb4441e
JH
17. ./test-lib.sh
18
19test_expect_success setup '
20
21 for l in a b c d e f g h i j k l m n o
22 do
db5875aa 23 echo $l$l$l$l$l$l$l$l$l || return 1
acb4441e
JH
24 done >oops &&
25
26 test_tick &&
27 git add oops &&
28 git commit -m initial &&
29 git tag initial &&
30
31 test_tick &&
32 echo "Add extra line at the end" >>oops &&
33 git commit -a -m added &&
34 git tag added &&
35
36 test_tick &&
37 git mv oops spoo &&
38 git commit -m rename1 &&
39 git tag rename1 &&
40
41 test_tick &&
42 git checkout -b side initial &&
43 git mv oops opos &&
44 git commit -m rename2 &&
45 git tag rename2
46'
47
e0ef8495
JN
48test_expect_success 'cherry-pick --nonsense' '
49
50 pos=$(git rev-parse HEAD) &&
51 git diff --exit-code HEAD &&
52 test_must_fail git cherry-pick --nonsense 2>msg &&
53 git diff --exit-code HEAD "$pos" &&
c76b84a1 54 test_i18ngrep "[Uu]sage:" msg
e0ef8495
JN
55'
56
57test_expect_success 'revert --nonsense' '
58
59 pos=$(git rev-parse HEAD) &&
60 git diff --exit-code HEAD &&
61 test_must_fail git revert --nonsense 2>msg &&
62 git diff --exit-code HEAD "$pos" &&
c76b84a1 63 test_i18ngrep "[Uu]sage:" msg
e0ef8495
JN
64'
65
acb4441e
JH
66test_expect_success 'cherry-pick after renaming branch' '
67
68 git checkout rename2 &&
9e54dc6c 69 git cherry-pick added &&
82b28c4e 70 test_cmp_rev rename2 HEAD^ &&
643cb5f7
CC
71 grep "Add extra line at the end" opos &&
72 git reflog -1 | grep cherry-pick
acb4441e
JH
73
74'
75
76test_expect_success 'revert after renaming branch' '
77
78 git checkout rename1 &&
9e54dc6c 79 git revert added &&
82b28c4e
KM
80 test_cmp_rev rename1 HEAD^ &&
81 test_path_is_file spoo &&
82 test_cmp_rev initial:oops HEAD:spoo &&
643cb5f7 83 git reflog -1 | grep revert
acb4441e
JH
84
85'
86
f6ce1f25
JN
87test_expect_success 'cherry-pick on stat-dirty working tree' '
88 git clone . copy &&
89 (
90 cd copy &&
91 git checkout initial &&
0e496492 92 test-tool chmtime +40 oops &&
f6ce1f25
JN
93 git cherry-pick added
94 )
95'
96
fff1bb3a 97test_expect_success 'revert forbidden on dirty working tree' '
0f2d4476
JK
98
99 echo content >extra_file &&
100 git add extra_file &&
101 test_must_fail git revert HEAD 2>errors &&
93b3df6f 102 test_i18ngrep "your local changes would be overwritten by " errors
0f2d4476
JK
103
104'
105
7a96c386 106test_expect_success 'cherry-pick on unborn branch' '
334ae397
MZ
107 git checkout --orphan unborn &&
108 git rm --cached -r . &&
109 rm -rf * &&
110 git cherry-pick initial &&
111 git diff --quiet initial &&
2c9e125b 112 test_cmp_rev ! initial HEAD
334ae397
MZ
113'
114
182d7dc4
HU
115test_expect_success 'cherry-pick "-" to pick from previous branch' '
116 git checkout unborn &&
117 test_commit to-pick actual content &&
cbc75a12 118 git checkout main &&
182d7dc4
HU
119 git cherry-pick - &&
120 echo content >expect &&
121 test_cmp expect actual
122'
123
124test_expect_success 'cherry-pick "-" is meaningless without checkout' '
125 test_create_repo afresh &&
126 (
127 cd afresh &&
128 test_commit one &&
129 test_commit two &&
130 test_commit three &&
131 test_must_fail git cherry-pick -
132 )
133'
134
d644c550
JK
135test_expect_success 'cherry-pick "-" works with arguments' '
136 git checkout -b side-branch &&
137 test_commit change actual change &&
cbc75a12 138 git checkout main &&
d644c550
JK
139 git cherry-pick -s - &&
140 echo "Signed-off-by: C O Mitter <committer@example.com>" >expect &&
141 git cat-file commit HEAD | grep ^Signed-off-by: >signoff &&
142 test_cmp expect signoff &&
143 echo change >expect &&
144 test_cmp expect actual
145'
146
2f682e21 147test_expect_success 'cherry-pick works with dirty renamed file' '
05f2dfb9
JS
148 test_commit to-rename &&
149 git checkout -b unrelated &&
150 test_commit unrelated &&
151 git checkout @{-1} &&
152 git mv to-rename.t renamed &&
153 test_tick &&
154 git commit -m renamed &&
155 echo modified >renamed &&
f670adb4 156 git cherry-pick refs/heads/unrelated &&
fd53b7ff 157 test $(git rev-parse :0:renamed) = $(git rev-parse HEAD~2:to-rename.t) &&
7c5585ff 158 grep -q "^modified$" renamed
05f2dfb9
JS
159'
160
f172556b 161test_expect_success 'advice from failed revert' '
43966ab3 162 test_when_finished "git reset --hard" &&
f172556b
ZH
163 test_commit --no-tag "add dream" dream dream &&
164 dream_oid=$(git rev-parse --short HEAD) &&
165 cat <<-EOF >expected &&
166 error: could not revert $dream_oid... add dream
167 hint: After resolving the conflicts, mark them with
168 hint: "git add/rm <pathspec>", then run
169 hint: "git revert --continue".
170 hint: You can instead skip this commit with "git revert --skip".
171 hint: To abort and get back to the state before "git revert",
172 hint: run "git revert --abort".
173 EOF
174 test_commit --append --no-tag "double-add dream" dream dream &&
175 test_must_fail git revert HEAD^ 2>actual &&
176 test_cmp expected actual
177'
43966ab3
JH
178
179test_expect_success 'identification of reverted commit (default)' '
180 test_commit to-ident &&
181 test_when_finished "git reset --hard to-ident" &&
182 git checkout --detach to-ident &&
183 git revert --no-edit HEAD &&
184 git cat-file commit HEAD >actual.raw &&
185 grep "^This reverts " actual.raw >actual &&
186 echo "This reverts commit $(git rev-parse HEAD^)." >expect &&
187 test_cmp expect actual
188'
189
190test_expect_success 'identification of reverted commit (--reference)' '
191 git checkout --detach to-ident &&
192 git revert --reference --no-edit HEAD &&
193 git cat-file commit HEAD >actual.raw &&
194 grep "^This reverts " actual.raw >actual &&
195 echo "This reverts commit $(git show -s --pretty=reference HEAD^)." >expect &&
196 test_cmp expect actual
197'
198
199test_expect_success 'identification of reverted commit (revert.reference)' '
200 git checkout --detach to-ident &&
201 git -c revert.reference=true revert --no-edit HEAD &&
202 git cat-file commit HEAD >actual.raw &&
203 grep "^This reverts " actual.raw >actual &&
204 echo "This reverts commit $(git show -s --pretty=reference HEAD^)." >expect &&
205 test_cmp expect actual
206'
207
191faaf7
JH
208test_expect_success 'cherry-pick is unaware of --reference (for now)' '
209 test_when_finished "git reset --hard" &&
210 test_must_fail git cherry-pick --reference HEAD 2>actual &&
211 grep "^usage: git cherry-pick" actual
212'
213
acb4441e 214test_done