R – After setting up the svnserve Server, what URL will the client use to access the server

repositorysvn

Client —| Internet |— Server

So I have set-up an svnserver server and it is running already. I typed svsnserve.exe –daemon –root "C:\Documents and Settings\Subversion Directory" on cmd. I have also set-up a repository and I can browse it through TortoiseSVN. I am the server computer. What I want to do now is for a client computer to access the server. Only TortoiseSVN is installed to the client, no SVN server. What I want to do now is checkout the repository from the server, what do I write in the URL?

Best Answer

Most likely:

svn://<hostname>/<repository_name>

See this StackOverflow question (very similar)