I need to pull in a specific pull request (that hasn't been processed into the main stream yet) in the NServiceBus repo:

https://github.com/johnsimons/NServiceBus/commit/d8524d53094e8181716e771c1023e968132abc15

It's obv not my repo but i need the changes that exist in that pull request.

What is the best way to do this?

link|improve this question

possible duplicate of Pull requests from other forks into my fork – CharlesB Jul 19 '11 at 10:12
feedback

3 Answers

up vote 3 down vote accepted

I am assuming you already have a working directory that tracks the repository the request is made to (you need somewhere to apply the changes to, right?).

Than simply tell git fetch to get particular revision from particular repository. If you go to the linked page, you see URL https://github.com/johnsimons/NServiceBus.git and commit ID d8524d53094e8181716e. Unfortunately fetch does not like revisions, only branches, so try

git fetch https://github.com/johnsimons/NServiceBus.git master

That will download the branch to your repository (where you should already have the branch this was forked from). Than ask git whether it knows that commit id. Than you can do whatever you want with it (create a branch from that revision, merge it to another branch etc.)

link|improve this answer
i just get fatal: Couldn't find remote ref d8524d53094e8181716e – iwayneo Jul 19 '11 at 7:50
@iwayneo: Hm, right, it seems fetch is actually only able to fetch refs, not revisions. Just try fetching master and if you don't see the commit, try fetching everything. – Jan Hudec Jul 19 '11 at 10:06
feedback

Create your own fork of the repo (or just clone the main one), add the fork with the changes you want to pull as a remote, and then pull in the changes you want.

Clone the main repo if you just need it locally, but fork it if you have additional changes or need to access them remotely.

link|improve this answer
Wow, that's overkill! – Jan Hudec Jul 19 '11 at 7:23
jan - how would you do it? – iwayneo Jul 19 '11 at 7:26
@Jan Hudec - Why is that overkill? That's exactly how this would be done. – Jimmy Cuadra Jul 19 '11 at 7:26
@Jan a little overkill, yes. You could just clone the fork, but I don't like cloning/forking forks as much as cloning/forking the original, as it makes it more difficult to pull in upstream changes if you end up maintaining your fork for a while. – Ben Taitelbaum Jul 19 '11 at 7:27
@Ben, @Jimmy: GIGANTIC overkill. Obviously if you want a pull request, you want to apply it somewhere, so you already have a local repository of that project (from any of it's forks will do). So you just go and fetch the specific commit there. Suggesting that you need to create a fork (on github) to get a pull request is just silly. (You may want to have a fork there if you later want to create your own pull requests, but that's totally separate issue). – Jan Hudec Jul 19 '11 at 7:33
show 2 more comments
feedback

To fetch a pull into your repository:

git fetch git@github.com:jboss/jboss-common-beans.git refs/pull/4/head

Then do whatever you want with FETCH_HEAD:

git checkout FETCH_HEAD
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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