在网上查了资料,然后选择以下作为自己的git迁移方法
方法一:
转载自:https://blog.csdn.net/capcompaq/article/details/80694323
使用下列命令,克隆下来的代码库的origin地址已改成新仓库地址,可直接使用
git clone --mirror <URL to my OLD repo location>
cd <New directory where your OLD repo was cloned>
git remote set-url origin <URL to my NEW repo location>
git push -f origin
还有方法二:
需要重新克隆仓库,或者手动更改仓库地址
git clone --bare <旧仓库地址>
git push --mirror <新仓库地址>
网友评论