赞
踩
1.增加源分支地址到你项目远程分支列表中(此处是关键),先得将原来的仓库指定为upstream,命令为:
git remote add upstream https://github.com/被fork的仓库.git
2.fetch源分支的新版本到本地
[develop]> git fetch upstream
3.合并两个版本的代码
[develop]> git merge upstream/develop
4.将合并后的代码push上去
查看远程stream
git remote -v
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。