以helloWorld项目为例
作者原项目地址是: https://github.com/king/helloWorld.git
我frok后的项目地址是:https://github.com/my/helloWorld.git
1、git clone fork的项目到本地,命令是:
git clone https://github.com/king/helloWorld.git
2、进入刚才clone的文件目录下,然后增加源分支地址到你项目远程分支列表中,命令是:
cd helloWorld remote add upstream https://github.com/king/helloWorld.git
3、fetch源分支到本地,命令是:
git fetch upstream
4、合并两个版本的代码
git merge upstream/master
5、最后一步,把合并后的代码push到你的Github项目上去,这步需要你输入你的账户名和密码
git push origin master