Unable to do an SVN dump — Error E720002 and format errors

前端 未结 1 850
孤城傲影
孤城傲影 2020-12-08 02:27

I\'m new to SVN, so forgive the possible straightforward problem. I\'m trying to do an Subversion dump of one of my projects:

svnadmin dump C:\\code\\projec         


        
相关标签:
1条回答
  • 2020-12-08 03:18

    svnadmin dump is for working on the repository(server side), not the working copy (client side) The errormessage about format is misleading as it searches for the format file in repository and finds a file with same name in your workingcopy.

    If you are interested to get a full backup of your repository you can use svnrdump for this purpose. It is used the same way than svnadmin dump, however it is possible to get the dump from an remote repository: use

    svnrdump  dump -r0:HEAD [URL_TO_YOUR_REPO] > Your_dumpfile.dmp
    

    THIS IS A NEW SVN 1.7 FEATURE

    0 讨论(0)
提交回复
热议问题