同步 Github fork 出来的分支

Posted coderhythm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了同步 Github fork 出来的分支相关的知识,希望对你有一定的参考价值。

添加upstream

本地git文件夹只需添加一次

git remote add upstream https://xxx.git

下载upstream代码

git fetch upstream

切换到目标分支dev

git checkout dev

merge代码

git merge upstream/dev

解决冲突,提交代码

以上是关于同步 Github fork 出来的分支的主要内容,如果未能解决你的问题,请参考以下文章

用SourceTree同步github上fork的项目

Github Fork与远程主分支同步

如何同步master的代码到fork分支代码

github中fork分支怎么同步源库

在github fork的项目中推送与抓取

将 Fork 出来的 GitHub 仓库与上游仓库同步