We have a Subversion server running on Linux. We have used to authenticate user with unencrypted password using passwd from conf folder for the subversion repository.
We have tried to change to use ssh authentication. I am not sure how to use ssh to authenticate via subversion. Based on the subversion manual, if i use
svn checkout svn+ssh://serverIP/trunk/project
i can type my ssh password and it authenticated, but it did show off
svn: No repository found in 'svn+ssh://ServerIP/trunk/project'
However, when i used 'svn://ServerIP/trunk/project' with plain-text password based on 'passwd' of the conf folder, I can check out the project source code.
Do I miss something for ssh ? I guess I was but I am not sure which part that I were missing was.
Thanks