blame: use find_commit_subject() instead of custom code
[git/dscho.git] / t / t3501-revert-cherry-pick.sh
blobe4fbf7a2107c680ee5c51f2ccf5297ed1fd4d868
1 #!/bin/sh
3 test_description='test cherry-pick and revert with renames
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
13 . ./test-lib.sh
15 test_expect_success setup '
17 for l in a b c d e f g h i j k l m n o
19 echo $l$l$l$l$l$l$l$l$l
20 done >oops &&
22 test_tick &&
23 git add oops &&
24 git commit -m initial &&
25 git tag initial &&
27 test_tick &&
28 echo "Add extra line at the end" >>oops &&
29 git commit -a -m added &&
30 git tag added &&
32 test_tick &&
33 git mv oops spoo &&
34 git commit -m rename1 &&
35 git tag rename1 &&
37 test_tick &&
38 git checkout -b side initial &&
39 git mv oops opos &&
40 git commit -m rename2 &&
41 git tag rename2
44 test_expect_success 'cherry-pick after renaming branch' '
46 git checkout rename2 &&
47 git cherry-pick added &&
48 test $(git rev-parse HEAD^) = $(git rev-parse rename2) &&
49 test -f opos &&
50 grep "Add extra line at the end" opos &&
51 git reflog -1 | grep cherry-pick
55 test_expect_success 'revert after renaming branch' '
57 git checkout rename1 &&
58 git revert added &&
59 test $(git rev-parse HEAD^) = $(git rev-parse rename1) &&
60 test -f spoo &&
61 ! grep "Add extra line at the end" spoo &&
62 git reflog -1 | grep revert
66 test_expect_success 'revert forbidden on dirty working tree' '
68 echo content >extra_file &&
69 git add extra_file &&
70 test_must_fail git revert HEAD 2>errors &&
71 grep "Your local changes would be overwritten by " errors
75 test_done