i am migrating a large CVS repository to SVN using Polarion SVNImporter. Due to its large size i got multiple dump files for a single repository, say dmp_part1, dmp_part2 etc. My requirement is to load these multiple dump files (which is actually part of a single repo) to svn server and want to create a single project . Can I use the following ?
$ svnadmin load /path/to/repo < dmp_part1, dmp_part2, dmp_part3
If I run the command for each dump, will it creates three different repos?
Please help on this.
No. You should run the command multiple times to load the dumps one by one. SVNBook | Repository data migration using
svnadminprovides an example.