相关命令:
git clone --bare ssh://git@pzyyll.cc:20309/~/src.git
克隆需要迁移的仓库的原始仓库
git push --mirror ssh://git@pzyyll.cc:20309/~/dest.git
以镜像方式 push 仓库到目的仓库
假如我有一个 src.git 的仓库,现在需要转移到一个新仓库 dest.git.
克隆原始仓库:
git clone --bare ssh://git@pzyyll.cc:20309/~/src.git
进入 src.git 目录,并且 push 镜像:
cd src.git && git push --mirror ssh://git@pzyyll.cc:20309/~/dest.git