Bitbucket代码迁移到Gitlab

首先需要确定使用具有一定权限的账号进行迁移。

然后在迁移的机器上配置git环境,添加账户信息:
git config --global user.name "XXX"
git config --global user.email "[email protected]"

并在迁移机器上生成密钥,再把公钥拷贝添加到bitbucket/gitlab对应账号的SSH Keys列表中
ssh-keygen –t rsa –C "[email protected]"
注意:windows10默认公钥是用户目录下的.ssh/id_rsa.pub文件

接下来直接进行项目迁移
git clone --bare ssh://[email protected]/projects/demo.git
cd demo.git
git push --mirror ssh://[email protected]/projects/demo.git

最后验证迁移的正确性。

你可能感兴趣的:(gitlab)