When I do a git log filename or some listing of the commits that a file has been through, I'd like to see all the tags that were applied to the repository where the file was exactly the version specified in the git log filename. Is this possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
First, figure out the commit hash of the commit you are interested in -- in this example it is 6502bcc16b3790cc22cb771d1da3e8f35b4009c0:
Then, use
If you want to do all of that in one line, here is one way (perhaps there are more efficient ways):
|
|||||||
|