views:

1849

answers:

2

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?

+1  A: 

try copying your repository to like C:\Repositories

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

Andrew Clark
Hmm the problem is it is not a repository folder structure right now, it is just the dump file.
James Van Boxtel
try to just copy the old one over rather than dumping
Andrew Clark
+5  A: 

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
James Van Boxtel
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