如何完整迁移git仓库到另一个远程地址

项目中遇到git仓库迁移,很常见。如何把一个项目中所有的分支,tag等迁移到另一个仓库地址,需要执行一个特别的克隆命令,然后镜像push到新的仓库地址。具体步骤如下:
1.打开命令行工具
2.以bare的方式克隆老的仓库

git clone --bare https://github.com/exampleuser/old-repository.git

3.镜像push到新的仓库地址

cd old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git

4.在电脑中删掉老得仓库,把新的仓库重新拉下来

cd ..
rm -rf old-repository.git

原文链接

    原文作者:Lizzy0077
    原文地址: https://segmentfault.com/a/1190000015929053
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞