I cloned this repo on my computer: https://github.com/derobins/wmd.git

There are several bugs with it though, and it looks like another user has fixed them and issued "Pull requests" (I assume these are requests for their changes to be committed?)

Is it possible to merge those changes into my local version?

EDIT: just to be clear, this is not my repository. I am using the WMD editor from derobins, but it has several bugs which those pull requests purport to fix. I have cloned the repo on Ubuntu (not in github) and was hoping to merge those changes in if possible.

link|improve this question

1  
I bet that if you go to your github account webpage you'll be able to see the pull request and instruction on how to merge it – CharlesB Apr 5 '11 at 14:10
duplicate of stackoverflow.com/questions/2140291/… – CharlesB Apr 5 '11 at 14:13
@CharlesB: that's not a duplicate at all. No one has sent me a pull request, this is not my repository... – DisgruntledGoat Apr 5 '11 at 14:18
1  
OK, thanks for clarifying! – CharlesB Apr 5 '11 at 14:24
feedback

2 Answers

up vote 12 down vote accepted

(GitHub has very thorough documentation on how to deal with pull requests.)

Essentially, you'll want to add a remote for the repository of the person who made the pull requests, e.g.:

git remote add helpful git://github.com/helpful-person/whatever.git

... then fetch their changes into remote-tracking branches:

git fetch helpful

... so that now you have all the commits from that person's GitHub repository in your clone of the upstream repository. If you look at the additional commits within that pull request you could:

  1. merge the latest one, e.g. git merge 75708aeab5
  2. cherry pick each of those changes, e.g. git cherry-pick 2142db89, git cherry-pick 75708aeab5
  3. create a local branch to work on them further, e.g. git checkout -b fix-for-issue3 75708aeab5
  4. etc. etc.

An alternative is to just clone the repository of the contributor who made the pull requests instead, if that's the same but for those fixes.

link|improve this answer
Btw i would first checkout helpful/essential-fix and rebase it on my master, after this checking out master and then merging helpful/essential-fix – kalkin Apr 5 '11 at 14:25
There are endless variations on what the OP could once he's fetched the commits from the pull request - I was describing a simple one with an explicit proviso. – Mark Longair Apr 5 '11 at 14:29
feedback

You clone the repo to you github account. Then just visit the forkqueue of your cloned repo and choose the patches you want to merge in to your repository.

link|improve this answer
Hmm, I can't just do this from the command line in Linux? – DisgruntledGoat Apr 5 '11 at 14:19
You can, have a look at the Github documentation Merging pull requests. help.github.com/pull-requests – kalkin Apr 5 '11 at 14:22
1  
There's no need to clone the other person's repo - just add their repo as a remote alias to your existing repo and git fetch their changes, as mentioned in Mark Longair's answer. – Andrew Oct 12 '11 at 15:55
feedback

Your Answer

 
or
required, but never shown

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