Move folders in svn
I have the following filesystem /svn/svn/mydata
开发者_JS百科 and I want to move /svn/mydata
. The svn is running under ubuntu.
What is the server process / client access model? Apache, svnserve, svn+ssh? For apache look in your httpd.conf / subversion.conf for SVNPath
or SVNParentPath
cd /etc/apache2; grep -r "SVNPa" .
svnserve is probably with xinetd and svn+ssh would either use absolute paths or a script wrapping svnserve that points to the root.
The command your after is svn move
svn move — Move a file or directory.
If you're speaking about the project root: erase the old one, checkout from the new one.
精彩评论