使用gitlab时候 fork仓库不会实时从主仓库更新解决方案
Posted monley
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用gitlab时候 fork仓库不会实时从主仓库更新解决方案相关的知识,希望对你有一定的参考价值。
付费用户可以使用现成的方案,地址见 链接
但是私有gitlab时候,需要手动进行如下操作
1. Clone your fork:
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
2. Add remote from original repository in your forked repository:
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
3. Updating your fork from original repo to keep up with their changes:
git pull upstream master
原文操作见链接
更多相关链接
https://stackoverflow.com/questions/3903817/pull-new-updates-from-original-github-repository-into-forked-github-repository/3903835#3903835
https://help.github.com/en/articles/fork-a-repo
gitlab和github 在这方面上还是有些不同,github会自动同步,可以节约很多时间
以上是关于使用gitlab时候 fork仓库不会实时从主仓库更新解决方案的主要内容,如果未能解决你的问题,请参考以下文章
CI/CD持续集成与持续交付(上)-------- git,gitee远程共有仓库和gitlab私有仓库,jenkins
CI/CD持续集成与持续交付(上)-------- git,gitee远程共有仓库和gitlab私有仓库,jenkins