A project on Github that I have a fork of has a few 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?

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

You can do it manually quite easily:

  • add the other fork as a remote of your repo: git remote add otherfork git://github.com/author/project.git
  • identify the SHA1 of the commits that form the pull-request
  • fetch his repo's commits git fetch otherfork
  • cherry-pick these commits git cherry-pick <SHA1>
link|improve this answer
This is exactly what I needed - thanks! – leek May 16 '11 at 19:40
6  
Actually, you shouldn't use cherry-pick, it creates new commits... which in turn will cause confusion if you send a pull request upstream. Instead you should merge just like the pull request is asking to do. You don't need to add a remote either. git pull URL branchname – Tekkub May 16 '11 at 20:28
@Tekkub: agree, it may be better to avoid confusion with newly created commits. Merge is less elegant in my mind since you can bring other changes from the branch you're merging with – CharlesB May 16 '11 at 21:52
1  
Aye, but in this case he specifically asked how to pull the pull request into his fork. Pull == merge. – Tekkub May 16 '11 at 22:10
feedback

What I would do is the following;

git checkout master
git remote add #NAME# #ADDRESS TO REPO#
git fetch #USERNAME#
git checkout -b test_fork
git rebase #NAME#/#BRANCH#

I have now merged the changes into a test branch, named test_fork. So that any changes won't dirty my tree.

Optionally you can use cherry-pick as described above to pick a particular commit if that is more preferable.

Happy travels :)

link|improve this answer
feedback

there is now an auto merge button in github when dealing with pull requests. check out the information here this makes it SUPER easy to merge - i used it like 3 or 4 days back and all the hassle is now gone

link|improve this answer
1  
This does not apply to pull requests from another fork. – Matt Caldwell May 3 at 20:26
feedback

Your Answer

 
or
required, but never shown

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