0

In GitHub, is there a way to view a particular commit and then map this to the associated tag/release that it was included in?

I realize I can do this with git log, but that requires checking out the repo - I'm looking for a solution through the web interface, if it exists.

Jmoney38
  • 3,096
  • 2
  • 25
  • 26

1 Answers1

2

This can be done through the GitHub UI - click on any commit in a repo's history, and if it was included in a tag or release, you'll see the release/tag number in the header section along the top:

Sample commit with release tag highlighted

If no release/tag number appears, then the commit hasn't been included in a tag or release yet.

Here's the commit in the image above.

Here's a similar answer.

Adil B
  • 14,635
  • 11
  • 60
  • 78
  • 1
    Ahh!!!! I was on the history page for a particular file... Once you click the actual commit and view all of the other artifacts included in that commit, the information shows at the top (i.e. your screenshot). Thank you!! – Jmoney38 Jul 20 '18 at 15:09