Is it possible to find out who created a tag in Git?

Viewed 28451

Commits obviously have an author associated with them; but is it possible to find out which user created a tag on a Git repository?

3 Answers

You can use this command to show git tags with date, message and author email:

git for-each-ref --format '%(refname) %09 %(taggerdate) %(subject) %(taggeremail)' refs/tags  --sort=taggerdate

This is the result of this command when I launch it on Material-UI project:

enter image description here

Related