1、克隆现有的GitLab仓库(http://localhost:8888/aa/bb/cc.git)到本地,包括所有分支和标签
git clone --bare http://localhost:8888/aa/bb/cc.git
2、在gitlab上创建一个空的仓库(http://localhost:7777/aa/bb/cc.git)
//-f为强制推送
git push -f --mirror http://localhost:7777/aa/bb/cc.git
3、问题:
如果推送时报错,则应该是分支受保护了
第一种:! [rejected] master -> master (fetch first)
第二种:! [rejected] master -> master (non-fast-forward)
第三种:! [remote rejected] master -> master (pre-receive hook declined)
解决,在设置->仓库->允许强制推送勾选后,再执行第二步
4、切换新仓库
git remote set-url origin http://localhost:7777/aa/bb/cc.git