I have created a fork from a project on GitHub. How can I now pull changes from the project that I forked from?
git pull is really just a shorthand for git pull <remote> <branchname>, in most cases it's equivalent to git pull origin master. You will need to add another remote and pull explicitly from it. This page describes it in detail:
git pull
git pull <remote> <branchname>
git pull origin master
http://help.github.com/forking/
1.4m articles
1.4m replys
5 comments
57.0k users