I forked someone's repository on Github and would like to update my version with commits and updates made in the original repo. These were made after I forked my copy.

How can I pull in the changes that were made in the origin and incorporate them into my repo?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

Yes.

You have to add the original repository (the one you forked) as a remote

From the GitHub fork man page:

Once the clone is complete your repo will have a remote named “origin” that points to your fork on github.
Don’t let the name confuse you, this does not point to the original repo you forked from. To help you keep track of that repo we will add another remote named “upstream”:

$ cd github-services
$ git remote add upstream git://github.com/pjhyett/github-services.git
$ git fetch upstream

You have also a ruby gem which can facilitate those GitHub operations.

link|improve this answer
1  
See also bassistance.de/2010/06/25/git-fu-updating-your-github-fork for a nice summary. – VonC Oct 11 '10 at 6:17
Beat me to the punch by 40 seconds. I need to work on my keyboard-fu. :-) – Sedate Alien Oct 11 '10 at 6:38
feedback

Your Answer

 
or
required, but never shown

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