We have a corporate SVN repository with many projects being hosted, each with its own branches/trunk/tags. My team is only interested in 2 projects.
So I created 2 dump files using svnrdump
. Now I'm trying to load them into my local SVN. But I would like to preserve the revision numbers. When I load the first project, revision numbers are correct. But when I load the second project, revision number resumes where the first project ended. This is true when I tried with svnrdump
and also with svnadmin
.
Is there a way to create a single dump file for 2 selected projects ?
Use
svnadmin dump
with the--include
or--pattern
arguments to generate one repository dump stream preserving revision numbers.For instance, the command should look as follows:
Here is a part of
svnadmin help dump
help:BTW, you can improve performance of
svnadmin dump
by adding the-M 256
argument.: