Thursday, March 12, 2015

git pulling the upstream changes (repo forked from Github)

First set the upstream repo (done only once)
git remote add upstream git://github.com/pjhyett/github-services.git
Then everytime you want to pull/fetch

git fetch upstream
or

git pull upstream