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
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: