on Ubuntu, I have SVN setup. I have created a repository and imported the files. On the same machine, I can checkout via file://

Works:

svn checkout  file:///svn/siteinabox

Doesn;t work (tried from the same machine):

svn checkout  svn://localhost/siteinabox  
svn: URL 'svn://localhost/siteinabox' doesn't exist

Ultimately my aim is to access the repo from a remote machine. Currently, it gives the same error from remote machine.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Found the answer: I had started svnserve like this:

svnserve -d -r /svn/project

instead it should have been like this

svnserve -d -r /svn
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.