I have a huge server Subversion repository which I should move to an external mounted partition. Of course there are possibility to make svnadmin load / dump or svnadmin hotcopy, but in my situation it could take a lot of time, because of the size of the repository.

Could I avoid this stage and just to move the whole folder to new partition without to break any internal relations to the system location ?

I would like to do something like :

mv /path/repository /other_path/repository

I like this possibility with local client's repository, and it will help a lot, if such operation could be done with server repository also.

link|improve this question

Yes, exactly. For me it's the same. Changing the absolute location on the filesystem of the server. – Fedir Nov 21 '11 at 12:15
I just wanted to mention that the path changes – abatishchev Nov 21 '11 at 12:26
feedback

2 Answers

up vote 2 down vote accepted

Yes, you can move it if you make sure that nobody accesses the repository while you're moving it.

Keep in mind: this might render existing working copies invalid, users might need to do a svn switch --relocate so that their working copies point to the new location.

link|improve this answer
Thanks. Yes, of course, I will stop the vhost of the current repository during copy. Normally, it will be on the same server, so it's the same URL for the user, all the configuration will be changed in Apache's configuration, so normally don't need to relocate. – Fedir Nov 21 '11 at 12:13
Works fine, tested. No relocate need in our case. Thanks again. – Fedir Nov 21 '11 at 16:55
feedback

In theory yes, everything related to your SVN repository is contained within the hidden .svn folders.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.