How do you pull changes from the parent of a fork in Git, specifically in a github configured project?
For example, say I forked http://github.com/originaluser/originalp
You can add the parent repository (upstream) as another remote branch. Something like
git remote add upstream ...
and then you can just git fetch to see any changes and then rebase/merge... whatever.
Expanding on other answers, these are the steps I took on a fork I had of tsc-watch:
git remote add upstream https://github.com/gilamran/tsc-watch.git
git fetch upstream
git merge upstream/master
git push
Explained: