假设原仓库地址是:https://gitee.com/jocce001/tb_3d
要迁移到的新仓库地址是:git@192.168.1.240:walsh_group/taobao_3d.git
1、首先在要放置项目的文件夹新建一个存放项目的文件夹:my_project
2、cd 进入到my_project
3、把原项目克隆下来:git clone https://gitee.com/jocce001/tb_3d
4、重命名B指向的远端仓库:git remote rename origin old-origin
5、修改 B仓库的远端指向:git remote add origin git@192.168.1.240:walsh_group/taobao_3d.git
6、切换所有原项目有的分支
7、git push -u origin --all
8、gitlab上查看,所有项目代码、日志迁移成功