3 test_description
='test describe
6 .--------------o----o----o----x
8 o----o----o----o----o----. /
10 .------------o---o---o
18 R
=$
(git describe
"$@" 2>err.actual
)
21 test_expect_success
"describe $*" '
24 $expect) echo happy ;;
25 *) echo "Oops - $R is not $expect";
31 test_expect_success setup
'
34 echo one >file && git add file && git-commit -m initial &&
35 one=$(git rev-parse HEAD) &&
38 echo two >file && git add file && git-commit -m second &&
39 two=$(git rev-parse HEAD) &&
42 echo three >file && git add file && git-commit -m third &&
45 echo A >file && git add file && git-commit -m A &&
50 echo c >file && git add file && git-commit -m c &&
54 git reset --hard $two &&
56 echo B >side && git add side && git-commit -m B &&
61 git-merge -m Merged c &&
62 merged=$(git rev-parse HEAD) &&
64 git reset --hard $two &&
66 echo D >another && git add another && git-commit -m D &&
71 echo DD >another && git commit -a -m another &&
77 echo DDD >another && git commit -a -m "yet another" &&
80 git-merge -m Merged $merged &&
83 echo X >file && echo X >side && git add file side &&
88 check_describe A-
* HEAD
89 check_describe A-
* HEAD^
90 check_describe D-
* HEAD^^
91 check_describe A-
* HEAD^^
2
92 check_describe B HEAD^^
2^
94 check_describe A-
* --tags HEAD
95 check_describe A-
* --tags HEAD^
96 check_describe D-
* --tags HEAD^^
97 check_describe A-
* --tags HEAD^^
2
98 check_describe B
--tags HEAD^^
2^
100 check_describe B-0-
* --long HEAD^^
2^
101 check_describe A-3-
* --long HEAD^^
2
103 test_expect_success
'rename tag A to Q locally' '
104 mv .git/refs/tags/A .git/refs/tags/Q
106 cat - >err.expect
<<EOF
107 warning: tag 'A' is really 'Q' here
109 check_describe A-
* HEAD
110 test_expect_success
'warning was displayed for Q' '
111 git diff err.expect err.actual
113 test_expect_success
'rename tag Q back to A' '
114 mv .git/refs/tags/Q .git/refs/tags/A
117 test_expect_success
'pack tag refs' 'git pack-refs'
118 check_describe A-
* HEAD