[GitHub] 保持 Fork 后的仓库与原仓库同步
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[GitHub] 保持 Fork 后的仓库与原仓库同步相关的知识,希望对你有一定的参考价值。
- Clone 自己 Fork 后的仓库
$ git clone [email protected]:<username>/<reponame>.git $ cd <reponame>
- 设置原仓库为当前代码仓库的上游
$ git remote add upstream git://github.com/<originuser>/<reponame>.git
- 更新并合并
$ git fetch upstream $ git merge upstream/master
- 提交同步到 GitHub 上的仓库
$ git push
以上是关于[GitHub] 保持 Fork 后的仓库与原仓库同步的主要内容,如果未能解决你的问题,请参考以下文章