First, configure original repository (https://help.github.com/articles/configuring-a-remote-for-a-fork/)
$ git remote add upstream https://github.com/owner/repo_name
After, fetch update, merge and push (https://help.github.com/articles/syncing-a-fork/)
$ git fetch upstream
$ git merge upstream/master
$ git push origin master