gitlab 导入并同步github 的项目

github上的开源项目备份成gitlab的私有项目。
然后把github上的代码更新到本地,最后推送到gitlab私有库。
这样就可以保证gitlabgithub的代码一样。
麻烦的就是要自己去手动同步
这样做的目的就是备份项目,免得github上优秀的项目因为政治或者版权原因被封而找不到源码

一、使用gitlab导入github的项目

  1. 点新建项目


    gitlab 导入并同步github 的项目_第1张图片
    image.png
  2. 点导入项目,再点 repo by URL , 然后写上 你要导入的github项目地址


    gitlab 导入并同步github 的项目_第2张图片
    image.png
  3. 设置项目信息 [可选] ,最后点create


    gitlab 导入并同步github 的项目_第3张图片
    image.png

参考Import project from repo by URL

二、让gitlabgithub的仓库间接关联

  1. gitlab上的项目clone到本地(这里配置的是ssh访问 ubuntu 添加多个ssh公钥和私钥)
    注意:先clone的是自己gitlab上的导入的项目
git clone [email protected]:xxxx/kcptun.git
cd kcptun
# 查看当前的远程库
git remote -v 
image.png
  1. 添加github远程库
# git remote add 自己起个名字  https://github.com/xtaci/kcptun.git
git remote add github  https://github.com/xtaci/kcptun.git

添加成功后会看到列表中会多出刚才添加第二个远程库github

gitlab 导入并同步github 的项目_第4张图片
image.png

  1. 更新github的仓库,会新建一个分支为 远程库别名/分支名 ,我这里是 github/master ,如果有多个分支,则是 github/分支1github/分支2 依次类推
git pull github
gitlab 导入并同步github 的项目_第5张图片
image.png
  1. 以后更新仓库代码就使用 git pull github master

  2. 更新完后使用 git push origin master 推送到自己的gitlab私有库。

参考

  • Import project from repo by URL
  • How to Use GitLab and GitHub Together
  • Forking Git repository from GitHub to GitLab
  • How to “resync” commits in GitLab after fetching from remote repository?

你可能感兴趣的:(gitlab 导入并同步github 的项目)