Gil Zellner
Gil Zellner

Reputation: 979

In github, how can I see who changed the tag?

How can I see who changed the tag for a build if they did not leave a message ? I can't seem to find this anyway, nor is Google any help.

Upvotes: 1

Views: 41

Answers (2)

crea1
crea1

Reputation: 12517

Is git show <tag-name> what you are looking for? Example output below. Don't know how you can see it in Github tough.

$ git show v2.2.0
tag v2.2.0
Tagger: Some guy <[email protected]>
Date:   Tue Jun 10 09:50:59 2014 +0200

v2.2.0

Edit Found the same information in Github. Click releases, and then a tag. https://github.com/jquery/jquery/releases/tag/1.11.1

Upvotes: 1

VonC
VonC

Reputation: 1323115

You can see the information associated with a tag with the GitHub V3 API, with the tag API.

You can also:

Upvotes: 0

Related Questions