美文网首页
git迁移仓库不丢失log

git迁移仓库不丢失log

作者: 黄同学2019 | 来源:发表于2020-02-17 11:32 被阅读0次

    方法一:使用镜像的方式

    主要是 2 条命令:

    # 复制 log
    git clone --bare @old-git-repository.git
    
    # 复制仓库
    git push --mirror @new-git-repository.git
    
    

    方法二:直接修改 remote 地址

    # 先看旧仓库的remote 地址
    git branch -r
    
    # 设置新的 remote_url 地址
    git remote set-url origin new_remote_git_address
    
    

    参考资料:git仓库迁移的两种解决方案

    相关文章

      网友评论

          本文标题:git迁移仓库不丢失log

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