美文网首页
SVN迁移到GIT

SVN迁移到GIT

作者: 小城大麦 | 来源:发表于2017-04-10 11:02 被阅读21次

生成svn用户

   svn log ^/ --xml | grep "^<author" | sort -u |perl -pe 's/<author>(.*?)<\/author>/$1 = /' > users.txt

转换为git用户

svn2git.py

   c = open('users.txt').readlines()
   f = open('git_users.txt','w')
   for l in c:
    l = l.replace('\n','')
    name = l.split(' =')[0]
    gname = name.split('.')
    firstname = gname[0].capitalize()
    fullname = firstname
    if len(gname) == 2:
        fullname = firstname + ' ' + gname[1].capitalize()
    l = '%s = %s <%s@youcompay.com>\n'%(name,fullname,name)
    f.write(l)
   f.close()

checkout svn的数据:

  git svn clone http://your_svn_url --authors-file git_users.txt --no-metadata -s myproject

如果你的svn结构是标准结构,比如http://root/mobile/trunk,http://root/mobile/branches,http://root/tags
那么your_svn_url=http://root/mobile/

相关文章

  • SVN迁移Git

    参考:GIt - 迁移到Git 构建user.txt 关联svn用户和git用户。 用git svn导入svn库 ...

  • 如何解除git和svn对本地工程的版本控制

    在平日的工作中,随着自己折腾的越来越多,时不时会有从这个svn库迁移到那个svn库,从这个git仓迁移到那个git...

  • svn迁移到git

    SVN迁移到Git svn目录结构 先来看看svn目录结构,这个会关系到我们如何迁移。以下说的都是单个项目的迁移。...

  • svn迁移到git

    本文参考自:Git-与其他系统-迁移到-Git。 也建议阅读之前,先看看此文章,本文主要是对里面方法的一个补充和完...

  • SVN迁移到GIT

    生成svn用户 转换为git用户 svn2git.py checkout svn的数据: 如果你的svn结构是标准...

  • svn迁移到git

    项目需要把代码从svn迁移到git,只迁移一个分支不迁移其他。参考https://stackoverflow.co...

  • git上传报错总结

    背景:公司要把项目都从svn迁移到git上 遇到的问题: POST git-receive-pack (chunk...

  • Git-flow 一个简单高效的Git工作流

    背景 由于Git的分支比SVN更好管理且更易使用,最近团队从SVN迁移到Git,需要重新规划开发流程,最终确定使用...

  • Author: ** not defined in users.

    最近在做svn迁移到git,遇到问题:"Author: ** not defined in users.txt f...

  • Git常用命令

    最近项目从SVN迁移到Git上了,学习了使用Git命令进行了整理我 Git 图形化工具Sourcetree用的还不...

网友评论

      本文标题:SVN迁移到GIT

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