美文网首页
svn迁移到git

svn迁移到git

作者: 多关心老人 | 来源:发表于2022-05-10 17:55 被阅读0次

    项目需要把代码从svn迁移到git,只迁移一个分支不迁移其他。
    参考
    https://stackoverflow.com/questions/79165/how-do-i-migrate-an-svn-repository-with-history-to-a-new-git-repository
    https://blog.csdn.net/u010039418/article/details/86138101
    https://www.jianshu.com/p/8594d426d493

    svn log -q | awk -F '|' '/^r/ {gsub(/ /, "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | sort -u > users.txt
    
    git svn clone --no-metadata --authors-file=users.txt svn://172.16.xxx/java_js_open/branches/open-location-server open-platform
    

    相关文章

      网友评论

          本文标题:svn迁移到git

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