把
github
上的开源项目备份成gitlab
的私有项目。
然后把github
上的代码更新到本地,最后推送到gitlab
私有库。
这样就可以保证gitlab
和github
的代码一样。
麻烦的就是要自己去手动同步
这样做的目的就是备份项目,免得github上优秀的项目因为政治或者版权原因被封而找不到源码
一、使用gitlab
导入github
的项目
-
点新建项目
-
点导入项目,再点 repo by URL , 然后写上 你要导入的github项目地址
-
设置项目信息 [可选] ,最后点create
参考Import project from repo by URL
二、让gitlab
和github
的仓库间接关联
- 把
gitlab
上的项目clone到本地(这里配置的是ssh访问 ubuntu 添加多个ssh公钥和私钥)
注意:先clone的是自己gitlab上的导入的项目
git clone git@gitlab.com:xxxx/kcptun.git
cd kcptun
# 查看当前的远程库
git remote -v
- 添加
github
远程库
# git remote add 自己起个名字 https://github.com/xtaci/kcptun.git
git remote add github https://github.com/xtaci/kcptun.git
添加成功后会看到列表中会多出刚才添加第二个远程库github
- 更新
github
的仓库,会新建一个分支为远程库别名/分支名
,我这里是github/master
,如果有多个分支,则是github/分支1
,github/分支2
依次类推
git pull github
以后更新仓库代码就使用
git pull github master
更新完后使用
git push origin master
推送到自己的gitlab
私有库。