I have dumped my repository on my old computer to a file with the command. svnadmin dump C:\myrepo/ > mydumpfile

Now I decided to use Visual SVN on my new computer as opposed to just a baseline subversion. How do I import my repository into VisualSVN?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Figured it out now that Andrew Clark pointed out there is a "All Tasks"

Repository -> All Tasks -> Open Command Prompt

svnadmin create repository-name
svnadmin load repository-name < repository-name.dmp
link|improve this answer
repository-name argument in the form of: "C:/myrepo/" You can also use the "--parent-dir" argument to specify a directory to import the dump file into. – jeffreypriebe Oct 28 '09 at 20:44
feedback

try copying your repository to like C:\Repositories

or use Repositories -> All Tasks -> Import Existing Repository

link|improve this answer
Hmm the problem is it is not a repository folder structure right now, it is just the dump file. – James Van Boxtel Mar 5 '09 at 17:27
try to just copy the old one over rather than dumping – Andrew Clark Mar 5 '09 at 17:36
feedback

Your Answer

 
or
required, but never shown

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