I am trying to dump a folder and its sub folder contents from the current SVN repository using svnadmin dump. However, it does not dump all the subfolders under it. I am not sure if this is an indication of some sort of svn corruption or if I am not using the right command.

Here is the command that I am using

svnadmin dump d:/svnrepo --incremental | svndumpfilter --drop-empty-revs include MyFolder > MyFolder.dmp

How do I ensure that all subfolders are part of the dump. And, if this is an indication of svn corruption how do I fix it.

Thanks

link|improve this question

74% accept rate
feedback

1 Answer

How do I ensure that all subfolders are part of the dump.

Read command documentation.

--incremental option, which simply causes that first revision in the dump stream to contain only the files and directories modified in that revision, instead of being presented as the addition of a new tree, and in exactly the same way that every other revision in the dump file is presented.

link|improve this answer
Removed the --incremental option. It did not make any difference. Still have the same issue. Any other ideas/ suggestions? – shikarishambu Nov 22 '11 at 3:55
1. prepare full dump 2. Read dump – Lazy Badger Nov 22 '11 at 4:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.