Is it possible to port over comments from one project to a new Repository structure? Meaning is there some sort of comment file you can port?

link|improve this question

65% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can migrate all repository data, including log messages and revision data, using the svnadmin dump and svnadmin load commands. The --parent-dir option will help you control where in the new repository structure all that data is imported.

For example if you currently have a repository for Project1, and you want to import all that data into MyCompanyRepository/Project1/trunk,

# On the repository server...
svnadmin dump /path/to/repo/for/Project1 > dumpfile
svnadmin load /path/to/repo/for/MyCompanyRepository --parent-dir Project1/trunk < dumpfile

See the Subversion book for details.

link|improve this answer
well, that is if you did not delete the original repository on the server! right? – CoffeeAddict Jul 31 '09 at 16:41
whoops... yep, if you've already deleted the old repository, you deleted all those log messages with it. – Nick Meyer Jul 31 '09 at 16:43
what if you want to port to an all diffrent repository alltogether! ?? – CoffeeAddict Jul 31 '09 at 20:51
For example I'm wanting to port all comments and history from this repository xxx.xxx.com:8443/svn/sss/trunk/sssWeb to this one which is a completely new repository and structure I just created using Visual SVN Server: xxx.xxx.com:8443/svn/sss/sssWebsite/trunk – CoffeeAddict Jul 31 '09 at 20:54
and the second link is an entire new repository /sss/ has really a real name, I just did that for posting purposes here. – CoffeeAddict Jul 31 '09 at 20:58
show 1 more comment
feedback

Once loaded as noted by Nick you can restructure the new repo with svn mv

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.