美文网首页
从gitlab迁移到阿里云code

从gitlab迁移到阿里云code

作者: 又不行了 | 来源:发表于2017-03-31 09:57 被阅读0次

在阿里云code里面新建一个空的同名项目

把源项目从gitlab上clone下来

进入项目目录

执行以下代码

$ git init

$ git remote add <branch-name> <阿里云code项目地址,例:git@code.aliyun.com:Chan/test.git>

$ git add .

$ git commit

$ git push -u <branch-name> <branch-name>

这里只能一个一个branch来迁移,如果项目有几个branch,那么就必须checkout到相应的branch再执行以上操作

相关文章

网友评论

      本文标题:从gitlab迁移到阿里云code

      本文链接:https://www.haomeiwen.com/subject/uhppottx.html