We're in the process of moving servers and one of the last items is moving over the svn repositories.
There are about 10 gigs of various svn repositories. They were created using this command:
svnadmin create --fs-type fsfs
Server A(original) has svn 1.4 while Server B(target) has svn 1.6.
My thought was to use rsync
to migrate the whole set of repositories (they are all in 1 folder on the server), but I am worried that some things might either not get migrated or I need special switches for rsync
for this to work.
Most online tutorials only talk about moving 1 repository at a time, for example using svnadmin hotcopy
, but I need to move about 100 or so all together. Is this the right way to go about it?