Right now I am using an absolute path to connect i.e.

server/var/svnroot/repositoryname

I would like to be able to do

/server/repoistoryname

Is there a way to set this up? I would like to avoid symmlinks since that adds overhead. I would rather just have SVN automatically goto the folder similar to how the DocumentRoot works with Apache.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

When you run svnserve, use the -r option to set the "root" path. So in your example, launch svnserve like this: svnsrve -r /var/svnroot. Of course you'll want to add your options (-d, --listen-host, etc) in there as well...

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.