Git: Syncing a fork
Configuring remote upstream
$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
Syncing
fetch remote upstream updated
$ git fetch upstream
check to your want to merged branch
$ git checkout master
merged it
$ git merge upstream/master