美文网首页
完整迁移Git仓库到另一个远程地址(史上最简单办法)

完整迁移Git仓库到另一个远程地址(史上最简单办法)

作者: youngboyliwenyu | 来源:发表于2021-05-21 13:51 被阅读0次

    完整迁移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.在当前仓库中,把 old-repository.git 干掉

    cd ..
    rm -rf old-repository.git
    

    5.更新当前仓库的远程地址

    1621576259436.jpg 1621576265508.jpg

    相关文章

      网友评论

          本文标题:完整迁移Git仓库到另一个远程地址(史上最简单办法)

          本文链接:https://www.haomeiwen.com/subject/nmjwjltx.html