有的时候我们需要对gitlab上的代码进行迁移,希望在迁移后能保持原有的branch、tag、commit记录等。可以使用以下方式:
1、首先需要将项目fork到自己的仓库,否则提交到新仓库的时候需要输入之前gitlab账户的密码。
2、clone代码到本地。
3、修改remote仓库的地址,添加新的地址。
vim .git/config
[remote "origin"]
url = [email protected]:xxx/xxx.git
[remote "new"]
url = [email protected]:xxx/xxx.git
可以使用 git remote -v 检查远程仓库是否更改。
4、push到新的远程仓库。
git push new ‘refs/remotes/origin/*:refs/heads/*‘ # 推送所有branch、commit记录
git push new --tags # 推送所有tags
5、到远程仓库检查代码是否迁移完成。
原文地址:https://www.cnblogs.com/lolau/p/9959932.html
时间: 2024-10-11 20:37:55