I have a Redmine stack up and running am using Subversion repositories on the same machine. I have successfully created repositories, connected Redmine projects to them, checked out remote working copies and committed changes.
However, when trying to simplify the repository URL by following this section of the the documentation, it seems to have no effect.
I currently check out like this:
svn co svn+ssh://my.domain.com/home/bitnami/repositories/repo1
and would like to simplify it to:
svn co svn+ssh://my.domain.com/repo1
To achieve this I have tried many variations of the 'root' option, e.g.
-r /home/bitnami/repositories/
--root /home/bitnami/repositories
--root=/home/bitnami/repositories/
I have restarted svnserve after each change and used ps
to confirm that the option was used when the process started. When attempting to use the simplified URL I get the response:
svn: No repository found in 'svn+ssh://my.domain.com/repos1'
Am I doing something wrong?
Thanks