gitlab项目迁移

修改本地配置,push到新地址

gitlab project项目迁移

git remote -v
git remote set-url origin [email protected]:360-fyd/fang.git
git remote -v
git branch -a
git push origin master:master

直接push所有分支

git push origin master:master

#从旧址clone下来
git clone --bare [email protected]/groups:test.com.git
# push到新址
git push --mirror [email protected]:newgroups/newtest.com.git
# 将本地的url修改为新的url
git remote set-url origin [email protected]:newgroups/newtest.com.git

使用web端链接方式

填写url的时候要注意特殊字符的转义,url转义:

https:*@*.com:*@*.com@gitlab.*.com/aaa/test.git
# 会发生url解析错误,改为
https:*%40*.com:*%40*.com@gitlab.*.com/aaa/test.git

gitlab项目迁移_第1张图片

你可能感兴趣的:(工具类)