I have a Subversion repository in the BSD field using svnserve and I access it with the BSD client through:
svn co svn://my.domain.com/my/repo/dirs ...
this is normal, but I always get access to one domain, and I often have to check several different directories and rename the domain - this is a pain. The svnserve binary is called as a daemon and with the specified root directory:
svnserve -d -r /svn/root
I would like to configure my subversion client to type something like:
svn co dir1/ dir2/subdir dir2/subdir2/
to check, check and everything else, because the domain never changes. It would be nice to have a default directory for checking files. I looked in the book but found nothing. I could do this through the shell, but it looks like an object that Subversion can have.
I have not read the book well enough or is it impossible?