fork 同步

Configuring a remote for a fork

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

Syncing a fork

git fetch upstream
git checkout master
git merge upstream/master