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

Git

Git Problem Overview


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

Git Solutions


Solution 1 - Git

If it's an annotated tag, then yes. You can git show it just like any other object. If it's a lightweight tag, then I don't believe so. Just one of the reasons why you should always annotate the tags you're going to share.

Solution 2 - Git

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

Solution 3 - Git

Yes.
-> git tag
then for specific version

-> git show
Refer to github guide

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSmasheryView Question on Stackoverflow
Solution 1 - GitLily BallardView Answer on Stackoverflow
Solution 2 - GitAla Eddine JEBALIView Answer on Stackoverflow
Solution 3 - GitinsomiacView Answer on Stackoverflow