How to migrate part of an SVN repository?
- by dehmann
How do you migrate a part of an SVN repository into a new repository?
To migrate the contents of a complete SVN repository into a new repository, one has to dump the old repository first:
svnadmin dump /path/to/repository > repository-name.dmp
and then load it into the new one using svnadmin load.
But I'm not sure how to just migrate a part. Do I still have to dump the whole thing? Do I grep for the part that I want?
To just dump myproject, I tried this, but it didn't work:
svnadmin dump /path/to/repository/myproject
Any ideas?