A project on GitHub that I have a fork of has a new pull requests that I want to pull into my fork that the author has not pulled in yet.
Is there a simple way to apply pull request from other forks into my fork? Is there something else here that I am missing?
You can do it manually quite easily:
add the other fork as a remote of your repo:
fetch his repo’s commits
You have then two options to apply the pull request (if you don’t want to choose pick 1.)
If you don’t care about applying also the eventual commits that have been added between the origin and the pull request, you can just rebase the branch on which the pull request was formed
If you only want the commits in the pull request, identify their SHA1 and do