I need an SVN repo, just local on my PC. What I did was
mkdir ~/svn/MyProject
svnadmin create --fs-type fsfs ~/svn/MyProject
svnserve -d
Under ~/svn/MyProject
, there's a conf folder, so I take it that creating the repo was successful.
I would expect the repo to be accessible under svn://127.0.0.1/svn/MyProject
but it isn't. Are there other steps that I need to take?