美文网首页
Git仓库迁移方法

Git仓库迁移方法

作者: 别人家的大小姐 | 来源:发表于2019-07-22 17:32 被阅读0次

    在网上查了资料,然后选择以下作为自己的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 <新仓库地址>
    

    相关文章

      网友评论

          本文标题:Git仓库迁移方法

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