SVN Repository Relocation
Our SVN server has its own IP 192.168.1.200 in our local network and we use svnserve as the server program.
A few minutes ago, I needed to change the name of a repository from hede to hede.web and I did it this way:
On the server, i ran this command:
/var/repo$ mv hede hede.web
Then, on my development environment I needed to update the working copy:
~$ cd /var/www/svn_hede
/var/www/svn_hede$ svn switch svn://192.168.1.200/hede svn://192.168.1.200/hede.web .
That’s all!