Git: Pull from other remote

前端 未结 2 878
耶瑟儿~
耶瑟儿~ 2020-12-07 10:00

I have created a fork from a project on GitHub. How can I now pull changes from the project that I forked from?

2条回答
  •  轮回少年
    2020-12-07 10:51

    git pull is really just a shorthand for git pull , 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:

    http://help.github.com/forking/

提交回复
热议问题