I have created a fork from a project on GitHub.
How can I now pull changes from the project that I forked from?
I have created a fork from a project on GitHub. How can I now
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
git pullis really just a shorthand forgit pull <remote> <branchname>, in most cases it’s equivalent togit pull origin master. You will need to add another remote and pull explicitly from it. This page describes it in detail:http://help.github.com/forking/