I created annotated tags as the manual said but the gitea does not display them.
See for example tags of this repository: if you press in “0.0.3.2” in gitea you get only the browse of the 0.0.3.2 version and never get the comment in the annotated tag.
Reproducible steps
- create a repo:
git init - make some commit:
echo "hello" > foo.txtgit add -Agit commit -m "my first commit"- See logs:
git log
$ git log --pretty=oneline
15027957951b64cf874c3557a0f3547bd83b3ff6 first commit
Create an annotated tag: $ git tag -a v0.1 15027957951b64cf874c3557a0f3547bd83b3ff6 with comment:
v0.1
This is my first comment but you cannot see it
Result: you cannot never see the line This is my first comment but you cannot see it in the gitea.