Subversion / Dump and loading data from a repo
Dump the data from the old repository
svnadmin dump /var/www/svn/reposA/ > ~/reposA.svn_dump
…
* Dumped revision 18.
Load the data from the dump file into the new repository.
sudo svnadmin load /var/www/svn/reposB/ –parent-dir some_dir < ~/reposA.svn_dump
…
——- Committed new rev 494 (loaded from original rev 18) >>>
Read more on Subversion / Dump and loading data from a repo…