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