I tried to use svnrdump to dump certain versions of GCC // dump the version 198000 svnrdump dump svn://gcc.gnu.org/svn/gcc/trunk -r 198000 > dump_file1 // dump the subquent version incrementally svnrdump dump svn://gcc.gnu.org/svn/gcc/trunk -r 198001 --incremental > dump_file2
I then used the svnadmin load to load the dump file to an empty repository, svnadmin create repo svnadmin load repo < dump_file1 // this is successful svnadmin load repo < dump_file2 // error, message: svnadmin: E160013: File not found: transaction '1-5', path 'trunk/gcc/ChangeLog' It seens that the first dump will automatically strip-off "trunk", but the second dump does not strip off dump. My subversion version is 1.7.5. What happen? Any suggestion for me to solve it? Thanks. Bo