GitHub/GitLab/Gitee 中项目互拷贝后仍保留历史
2021-06-15 本文已影响0人
侯工
1、从原地址克隆一份裸版本库,比如:原本托管于 GitHub / 本地的私有仓库
git clone --bare ”git地址“
2、然后到新的 Git 服务器上创建一个新项目
3、以镜像推送的方式上传代码到 Git 服务器上。请确保已经添加了公钥到新的机器上
cd project_name.git
git push --mirror “新仓库地址”
4、删除本地代码
cd ..
rm -rf project_name.git
5、到新服务器上找到 Clone 地址,直接Clone到本地就可以了。
git clone “git地址”