I have a "docs" folder in a Subversion repository named "project". I've come to the conclusion that it should really be kept under a separate Subversion repository named "project_docs". I'd like to move the "docs" folder (and all of it's revisions) to the "project_docs" repository. Is there any way to do this?
|
12
|
|
|
|
|
|
If you have access the repository itself (not a working copy), you should be able to dump the current repository, filter it to only include information about the docs folder, and load it into the other repository. Would be something like this:
Without access to the repository, you cannot maintain the revision history and you have to settle for copying the files into the new repository and committing. |
||||||||
|
|
|
What about if i have to delete the 'old_repo' after copied the particular content to the 'new_repo'..? Still is it possible to relocate to 'new_repo' with history? |
||
|
|
|
|
svndumpfilter has a serious flaw - if a file or path was copied from a path you're filtering out to one you're filtering in, svndumpfilter won't be able to fill out the history and the job will fail. You can use svndumpfilter2 if you experience this problem. |
||
|
|
|
|
This is discussed in the svn documentation. Check out the Repository Maintenance section on |
||
|
|
|
|
I don't believe you can do it remotely (i.e., without a local copy). But this should work: Like:
Edit: D'oh, this drops the history. Use |
|||
