Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 46 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>
share|improve this answer
This is exactly what I needed - thanks! – leek May 16 '11 at 19:40
27  
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
2  
@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
4  
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

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 :)

share|improve this answer

Like Tekkub said previously, you can just pull the branch in directly, and most of the time with GitHub, the branch is simply "master" on the requesting User's fork of the project.

EX : $ git pull https://github.com/USER/PROJECT/ BRANCH

share|improve this answer

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

share|improve this answer
6  
This does not apply to pull requests from another fork. – Matt Caldwell May 3 '12 at 20:26
This could be considered as a feature request for Github to its main website. – avelis Apr 9 at 23:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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