How to dump only a certain part of SVN repository?
        Posted  
        
            by dehmann
        on Super User
        
        See other posts from Super User
        
            or by dehmann
        
        
        
        Published on 2010-04-08T19:09:33Z
        Indexed on 
            2010/04/08
            19:13 UTC
        
        
        Read the original article
        Hit count: 421
        
svn
How to you move a part of an SVN repository into a new repository?
To move 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 move 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
© Super User or respective owner