Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import dumped SVN repo into VisualSVN Server

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 VisualSVN Server on my new computer as opposed to just a baseline subversion. How do I import my repository into VisualSVN Server?

like image 656
James Van Boxtel Avatar asked Mar 05 '09 17:03

James Van Boxtel


People also ask

How do I export and import SVN repository?

In the main menu, select VCS | Browse VCS Repository | Browse Subversion Repository to open the SVN Repositories tool window. Right-click a directory you want to export and choose Export from the context menu. In the Select Path dialog that opens, specify the destination directory and click OK.

How do I add visual SVN to Visual Studio?

Open or create new solution in Visual Studio. Then choose Add Solution to Subversion from the VisualSVN menu command and the wizard will open. Now you choose the directory where your code will be stored. VisualSVN can add your code to a new or an existing repository.


1 Answers

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
like image 161
James Van Boxtel Avatar answered Oct 26 '22 23:10

James Van Boxtel