Someone fixed a bug in HHVM in this commit:
https://github.com/facebook/hhvm/commit/796f986aba300b3f00b9ece0bf654c452ee217be
I want to know if this commit is already part of the official releases.
Is there a way to list the releases/tags that contain this commit, either on GitHub, or in a local clone of the GIT repository on my machine?
`git log` command is used to view the commit history and display the necessary information of the git repository. This command displays the latest git commits information in chronological order, and the last commit will be displayed first.
To see the diff for a particular COMMIT hash, where COMMIT is the hash of the commit: git diff COMMIT~ COMMIT will show you the difference between that COMMIT 's ancestor and the COMMIT .
As pointed out by fellow members in the comments, this is already covered here, and is as easy as:
git tag --contains <commit>
GitHub now shows you the tags containing a commit automatically when you open a commit (click on the ...
to show all tags):
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With