How to sync a forked repo with the original one First add your upstream git remote -v git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git git remote -v Then you can fetch and do stuff git fetch upstream git checkout master git merge upstream/master