사용법

$ git remote -v
$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
$ git remote -v
$ git fetch upstream
$ git merge upstream/master
$ git push
$ git push --tags

레퍼런스

https://help.github.com/articles/syncing-a-fork/