How to Synchronize Your GitHub Fork?

When you collaborate in an open source project it is likely to be asked to make a fork of one repository. A fork is a copy of the project in your GitHub account. This duplicate allows you to freely experiment with changes without affecting the original project.

There is a problem when you fork a project, it is not going to have the last changes made in the original one, so in order to avoid problems when you try to push your changes it is better to keep your fork up to date.

Here’s how.

Synchronizing Your Forked Project

Once you have forked the repository, clone it in your local machine. Go to the directory of the project and list the current configured remote repository for your fork.

$ git remote -v
> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)

Specify a new remote upstream repository that will be synced with the fork.

$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git

Verify the new upstream repository you've specified for your fork.

$ git remote -v
> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
> upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (fetch)
> upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (push)

Fetch the branches and their respective commits from the upstream repository.

$ git fetch upstream
> remote: Enumerating objects: 82, done.
> remote: Counting objects: 100% (82/82), done.
> remote: Compressing objects: 100% (44/44), done.
> remote: Total 91 (delta 53), reused 30 (delta 30), pack-reused 9
> Unpacking objects: 100% (91/91), done.
> From https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY
> * [new branch] master -> upstream/master

Check out your fork's local master branch.

$ git checkout master
> Switched to branch 'master'

Merge the changes from upstream/master into your local master branch.

$ git merge upstream/master
> Updating a422352..5fdff0f

The latest changes done in the original repository are now in your local project. Keep in mind that to update your fork on GitHub, you must push your changes.

Finally...

Don’t forget It’s important to keep your fork up to date in order to avoid merge conflicts or losing your work completely when you try to push your changes. So if you are starting to collaborate in an open source project and you would like to know more information about forks and upstreams click here

Share this post