赞
踩
1,查看远程仓库: git remote -v
2.设置upstream上游仓库:
git remote add upstream https://gitee.com/xxxxx/xxxxx.git
3.然后再次查看远程仓库: git remote -v 如下图
4. 同步上游源仓库的master分支更改到本地(非fork仓库):git pull upstream master
5. 把本地代码推动到fork仓库的master分支: git push origin master
最后如果需要将fork仓库的修改同步到源仓库,就需要点击Pull Request提交
,如下所示:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。