1
I am looking for information present in the tags of a repository with the following command that returns the information depending on the parameter I pass in the flag --format
.
git tag --format="%(refname) %(taggerdate)"
The point is that this command returns me information of all tags present, but what I need is a specific tag.
Is there a command that I pass as parameter the name of the tag and has as response the information of the same?
Ex: git tag $nomeDaTag --format="%(taggerdate)"