I have a subversion repository which currently has code, documentation and deliverables. This is becoming messy and unmanageable so I'd like to split the repositories into three.
How can I move subsections of the original repository (which will contain purely code) into new Documentation
and Deliverables
repositories without losing the history? For example:
<old_repos>\Docs
<old_repos>\Deliverables
<old_repos>\Src
...becomes:
<docs_repos>
<deliverables_repos>
<src_repos>
I've seen a lot of posts about moving folders around within a repository and others showing how to move one whole repository to another, but nothing that suggests how to just move a subset. Is this possible?