Showing posts with label Backup and Restore of Tortoise SVN. Show all posts
Showing posts with label Backup and Restore of Tortoise SVN. Show all posts

Tuesday, December 25, 2018

Tortoise SVN move SVN Repository To Another Server

How to take Backup and Restore of Tortoise SVN on window?

Back SVN
  1. Go to Run with Administrator privilege and then type cmd and open command prompt
  2. Run the following command

    svnadmin dump c:\Repositories\RepositoryName > c:\Repositories\svnbackup.dump

    Here
    1. c:\Repositories\RepositoryName is the source path of the repository
    2. c:\Repositories\ is the destination where the dump will create
    3. svnbackup.dump name of dump file

Restore SVN
  1. Go to Run with Administrator privilege and then type cmd and open command prompt
  2. Run the following command

    svnadmin load c:\Repositories < c:\Repositories\svnbackup.dump

    Here
    1. c:\Repositories is the destination path of the repository
    2. c:\Repositories\svnbackup.dump name of dump file that will be loaded