I am using Subversion (SVN) on ubuntu machine and now want to move subversion to windows machine so I did the following steps
Copy svn repository by using following command
svnadmin dump /path/to/reponame > /path/to/reponame.bak
Installed SVN on windows machine and created new repository on that and tried to restore backup by using following command
svnadmin load /path/to/reponame < /path/to/reponame.bak
restoring takes place until rev 11 then I get this error msg:
<<< Started new transaction, based on original revision 12
* adding path : vs ...svnadmin: E160020: File already exists: filesystem '7424b5b4-637a-e843-a697-d0752184fe09', transaction '899-r9', path '/vs'
Is there any thing that I am missing?