ENTRY

"Move svn repository to new location"

Date:May 19th, 2012
Tags:
Comments: 1

Move svn repository to new location

Solution

On the server, the svn repositories are stored under normal directories. You instuct subversion to “dump” the data from you source repository and “load” it into new location.

Suppose, you current repository location is : /home/svn/repositories/svn/repo1
and you want to move you repository to /home/svn/repositories/svn/scc

Do:

svnadmin dump /home/svn/repositories/svn/repo1 > ~/repo1.dmp
cd /home/svn/repositories/svn
svn create scc
svnadmin load scc< ~/repo1.dmp
RELATED
Pages
Posts
    nope :(


Responces

One Response to “Move svn repository to new location”

  1. [...] Move svn repository to new location [...]

    Like or Dislike: Thumb up 0 Thumb down 0

Leave a Reply