https://help.github.com/articles/syncing-a-fork/ ### 1. Add remote from original repository in your forked repository: git fetch upstream git checkout master git merge upstream/master ### 2. Updating your fork from original repo to keep up with their changes: git pull upstream master