美文网首页
git 迁移代码库

git 迁移代码库

作者: who_are_you_ | 来源:发表于2019-12-05 14:29 被阅读0次

    克隆老仓库(裸仓库):

    git clone --bare git@codehub.git // 代码老仓库地址(git@codehub.git)
    

    进去克隆下来的裸仓库中:

    cd codehub.git // 进入老仓库(codehub.git)
    

    传到新仓库中:

    git push --mirror git@newcodehub.git // 提到新仓库(git@newcodehub.git)
    

    删除克隆下来的老仓库:

    rm -rf xxx // 删除老仓库
    

    相关文章

      网友评论

          本文标题:git 迁移代码库

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