[02:48][root@server:~] ps ax | grep svn
23986 ? Ss 0:00 /usr/bin/svnserve -d -r /srv/svn
As you see from arguments my svn root dir is /srv/svn.
Now, some magic from remote machine...
This works:
> svn co svn://svn-user@domain.com/test-repo
But this not:
> svn co svn+ssh://svn-user@<putty-session-name>/test-repo
'No repository found in 'svn+ssh://svn-user@<putty-session-name>/test-repo'
Playing around for couple of hours I've found that appearantly if I use ssh tunnel, I'm able to get my repo using following:
> svn co svn+ssh://svn-user@<putty-session-name>/srv/svn/test-repo
...which means that I should specify full physical path to the repo. Huh?