在远端服务器创建一个新的仓库
用界面创建,当然也可以用命令创建
拉去源仓库
bash
git clone --bare git@192.168.10.10:java/common.git
git clone --bare <旧仓库地址>
拉去成功以后会出现
进入到文件夹内部
出现下面信息:
推送到新的远端仓库
bash
git push --mirror git@192.168.20.10:java3/common.git
git push --mirror <新仓库地址>
查看新的仓库
备份完成,完美!