I'm looking for a way to recover pull requests from a forked repository. Is it possible?

link|improve this question

50% accept rate
feedback

2 Answers

When one fork a repository, GitHub only forks the code, not the pull requests.

However, you can retrieve the pull requests from the upstream repository by leveraging the GitHub Pull Request API.

By default, only the PR which are currently opened are listed. You can access the closed ones by passing an optional state parameter.

Note: This will allow you to retrieve the metatdata of the pull requests of any repository (forked or not).

Alternative (by hand) way

$ mkdir libgit2
$ git clone http://github.com/libgit2/libgit2
$ git fetch origin +refs/pull/*:refs/remotes/pull/*

This will retrieve every pull request (opened and closed) from the GitHub hosted repository and create a branch per pull request in you local repository.

Warning: this is an undocumented GitHub feature and might stop working without notice.

link|improve this answer
feedback

As far as I know there isn't a way to do this via the UI, but the API does offer pull request access here so you could do it programatically fairly simply.

link|improve this answer
This is the old version of the API – WattsInABox May 18 at 15:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.