从A仓库地址迁移到B仓库地址
在本地库新增一个远端
步骤1.在本地拉取原A仓库gitlab分支的最新代码
git pull
步骤2.添加新B仓库地址为默认远端
git remote rename origin old-origin
git remote add origin https://newB.com
步骤3.将本地分支推送到新的远端
# 3.1指定分支提交
git push -f origin develop-induction:develop-induction
# 3.2全量分支提交
git push -uf origin --all
git push -u origin --tags