How to sync with a remote Git repository?

GitSynchronizationGithub

Git Problem Overview


I forked a project on github, made some changes, so far so good.

In the meantime, the repository I forked from changed and I would like to get those changes into my repository. How do I do that ?

Git Solutions


Solution 1 - Git

Generally git pull is enough, but I'm not sure what layout you have chosen (or has github chosen for you).

Solution 2 - Git

Assuming their updates are on master, and you are on the branch you want to merge the changes into.

git remote add origin https://github.com/<github-username>/<repo-name>.git
git pull origin master

Also note that you will then want to push the merge back to your copy of the repository:

git push origin master

Solution 3 - Git

You have to add the original repo as an upstream.

It is all well described here: https://help.github.com/articles/fork-a-repo

git remote add upstream https://github.com/octocat/Spoon-Knife.git
git fetch upstream
git merge upstream/master
git push origin master

Solution 4 - Git

You need to add the original repository (the one that you forked) as a remote.

> git remote add github (clone url for the orignal repository)

Then you need to bring in the changes to your local repository

> git fetch github

Now you will have all the branches of the original repository in your local one. For example, the master branch will be github/master. With these branches you can do what you will. Merge them into your branches etc

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGeorge ProfenzaView Question on Stackoverflow
Solution 1 - GitŠimon TóthView Answer on Stackoverflow
Solution 2 - GitMark HibberdView Answer on Stackoverflow
Solution 3 - GitAlexView Answer on Stackoverflow
Solution 4 - GitAbizernView Answer on Stackoverflow