up vote 27 down vote favorite
21
share [g+] share [fb]

I forked a GitHub repository. Then I pushed some changes to my fork. Then the original repository merged my changes and some others. Now, I want to merge those changes I'm missing. I tried a simple pull followed by push, but this yield my commits in duplicate. What's the best way to do it?

link|improve this question

feedback

2 Answers

up vote 42 down vote accepted

You probably have a "remote" for each repository. You need to pull from the one remote and push to the other.

If you originally cloned from your fork, that remote will be called "origin". If you haven't added it already, you'll need to add the first guy's repository as another remote:

git remote add firstguy git://github.com/firstguy/repo.git

After that's all set up, you should indeed be able to

git pull firstguy master
git push origin

Remember, git pull is nothing more than a macro that does git fetch and git merge, in that order. You just need to fetch the list of commits from the first guy's repository and then merge his branch in to your tree. Merging should do the right thing with your commits on both branches.

GitHub, in all its perpetual awesomeness, gives you a shortcut, of course. There's a "fast-forward" button on your fork of the repository that you can use to catch your fork up if you're entirely merged in to the other side.

link|improve this answer
1  
Is there a way to do this entirely with remote operations? If I understand correctly, with this method you will download all the changes to the local repository and then upload (push) them all back to the fork on github. I'd rather just somehow pull all the changes directly into the fork on github. – Ken Liu Dec 7 '09 at 4:56
No. Git does not support that. Luckily, Github has a merge button in the web interface now, though. – cweiske Oct 21 '11 at 5:04
1  
@cweiske - where is this Merge button? I've looked all through the admin pages and main pages, but can't find it :(. – Adam Dec 18 '11 at 15:33
feedback

So the accepted answer above didn't work for me perfectly. Namely, it seemed to lose the link to the original github author when it worked, and then didn't seem to work anymore after that. I think the problem was that the answer left out the / between the remote name and the branch. So it would fetch a branch called master from the remote, but then not be able to do anything with it. Not really sure why.

Here's the way github recommends from their site: http://help.github.com/fork-a-repo/

Once you have cloned your forked repo, you do need to add a remote pointing to the original like the previous answer said. They like to call it upstream, but it doesn't matter.

git remote add upstream git://github.com/octocat/Spoon-Knife.git

Then you fetch, and you'll see the versions available for merging

From git://github.com/octocat/Spoon-Knife.git
 * [new branch]      gh-pages   -> upstream/gh-pages
 * [new branch]      master     -> upstream/master

Then you just need to choose the branch you want to merge in. Mind you these aren't local branches, they are stored under remotes. But provided you don't have a local branch called upstream/master (which is allowed) you should be fine merging with the line below:

git merge upstream/master

Alternatively you could shortcut the fetch/merge (after the initial fetch at least) with this line:

git pull upstream/master
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.