Import dumped SVN repo into VisualSVN Server

11,107

Solution 1

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

Solution 2

try copying your repository to like C:\Repositories

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

Solution 3

Importing from portable dump file implemented in VisualSVN Server 3.2:

  1. Start the VisualSVN Server Manager console.
  2. Select Import Existing Repository command in the context menu for the Repositories node.
  3. Select Load repository from dump file, click Next.
  4. Enter path to dump file and click Next.

Do not forget to configure SVN permissions for the imported repository.

Screen shot

Share:
11,107
James Van Boxtel
Author by

James Van Boxtel

I am a graduate of Washington State University Vancouver. I program in PHP, JAVA and Objective C mostly, but also do C, C++, and python. I also have a lot of years in web design.

Updated on July 28, 2022

Comments

  • James Van Boxtel
    James Van Boxtel almost 2 years

    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?