vote up 3 vote down star

I have forked a repository on github some time ago, made a small change and pushed the change back to my github fork. The original repository has changed since. I would like to merge the changes from the original repository to my fork.

I am new to both git and github, and I need specific commands how to do it.

flag

2 Answers

vote up 5 vote down check
git remote add {name} {Public Clone URL}
git pull {name} master
git push

Example:

git remote add bret git://github.com/bret/watir.git
git pull bret master
git push
link|flag
vote up 0 vote down

Simply add original repo as a remote and merge your fork with it; then push merged fork to github.

There's also a ruby gem for easier github operations. You can merge upstream with one call...

link|flag
I see that I forgot to add that I am new to git and github, and that I need specific commands how to do it. Thanks for github-gem, but that is overkill for me. – Željko Filipin May 15 at 10:46

Your Answer

Get an OpenID
or

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