如何将dumpfile项目名称svn转换为另一个项目历史记录大小写?

时间:2019-05-21 09:45:25

标签: svn visualsvn

svnadmin加载/ svnroot / project1历史记录<= + / svnroot / project2历史记录

project1 hisotory 
2
1
2 a.txt   svn message 'best'

project1 hisotory 
4
3 a.txt   svn message "after commend"
4 b.txt   svn message "b.text commit"


working file contents + history
Expected outcome (project1 hisotory)

6 b.txt   svn message "b.text commit"
5 a.txt   svn message "after commend"
2 a.txt   svn message "best"

final /svnroot/project1 to project1 history (before revision) + project2 history (after revision) command possible?

/svnroot
    /project1      2
        /branches  1
        /tags      1
        /trunk     2
           a.txt   2

    /project2      4
        /branches  4
        /tags      4
        /trunk     4
           a.txt   3
           b.txt   4


svnadmin dump /svnroot | svndumpfilter include project1 > a.dump
svnadmin dump /svnroot | svndumpfilter include project2 -r 0:4 --incremental > b.dump

svnadmin dump /svnroot2 < a.dump

Please let me know what command you need to do.

svn移动推荐历史记录已删除, svn swich存储库名称仅更改建议,我希望项目历史记录添加失败

0 个答案:

没有答案