First add the original repo as upstream remote using :

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

You need to do this only once.

Now each time you want to get the changes from the original, do the following :

1
2
3
git fetch upstream
git checkout master
git merge upstream/master

See the github documentation for details.