同步github上fork出来的分支
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了同步github上fork出来的分支相关的知识,希望对你有一定的参考价值。
1,clone自己的账号里fork库的分支到本地
git clone 地址_branch
2,增加远程原始分支
git remote add upstream 地址_master
3,fetch原始源分支
git fetch upstream
4,合并两个版本的代码
git merge upstream/master
5,把最新的代码提交到iSource自己的账号上
git push origin master
以上是关于同步github上fork出来的分支的主要内容,如果未能解决你的问题,请参考以下文章