Commits obviously have an author associated with them; but is it possible to find out which user created a tag on a Git repository?
Commits obviously have an author associated with them; but is it possible to find out which user created a tag on a Git repository?
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: