Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can you tell if a GitHub pull request has been released?

Tags:

github

It's fairly common to come across pull requests when searching for issues. But what has eluded me for awhile is how to determine (reliably) if/when that pull request has been released. Anyone know an easy way to do this?

like image 393
Gavin Miller Avatar asked Mar 04 '13 23:03

Gavin Miller


1 Answers

I also very frequently have this need. I'm doing like this:

  • get the id from the most recent commit in the pull request on github
  • clone the repository locally
  • run git tag --contains [commit_id]

But it would be wonderful if github provided an easier way !

like image 157
Gnurfos Avatar answered Oct 14 '22 01:10

Gnurfos