svnsvndumpfilter

SVNDumpFilter include branches, too?


I am trying to split out a repo that has multiple projects in it into stand-alone repos. Let's say I have the following structure, currently:

   /MyRepo
        /Trunk
            /Source
                /Project1
                    ...
                /ProjectN
        /Branches
            /Branch1
                /Source
                    /Project1
                        ...
                    /ProjectN
            /AnotherProject
                /Branch3 >> Note: nested branch
                    /Source
                        /Project1

So if I wanted to dump Project1, I want to get all related paths, that could be:

Basically I want to include all references to Project1 from Trunk and Branches, including nested branches.

Is there any way to accomplish this?


Solution