将代码完整的的从一个git库迁移到另一个git库
1、从源git库克隆一个裸版本库,例如: git clone --bare https://gerrit.googlesource.com/git-repo2、在新的git服务器上创建一个空的库(无任何commit)3、以镜像推送的方式上传代码至新的Git服务器 cd git-repo.git git push --mirror ssh://admin@gerrit.com:29418/git-repo...