Installed Visual SVN Server, except I get this message when do SVN Check Out - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:35:38Zhttp://stackoverflow.com/feeds/question/848197http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/848197/installed-visual-svn-server-except-i-get-this-message-when-do-svn-check-out3Installed Visual SVN Server, except I get this message when do SVN Check OutJian Lin2009-05-11T13:49:45Z2009-07-01T12:38:31Z
<p>So I installed Visual SVN Server and Tortoise SVN client. And I created a user on the SVN Server, and now I went to a new folder c:\src, right click and choose "SVN Checkout...", and it always gives me this message</p>
<pre><code>Checkout from https://bookroom:8443/svn, revision HEAD, Fully recursive, Externals included
Error: OPTIONS of 'https://bookroom:8443/svn': 200 OK (https://bookroom:8443)
Finished!
</code></pre>
<p>bookroom is the name of my PC...</p>
<p>any one know how to solve this?</p>
http://stackoverflow.com/questions/848197/installed-visual-svn-server-except-i-get-this-message-when-do-svn-check-out/848224#8482246Answer by Mark Biek for Installed Visual SVN Server, except I get this message when do SVN Check OutMark Biek2009-05-11T13:54:47Z2009-05-11T13:54:47Z<p>I'm guessing that https://bookroom:8443/svn isn't a valid Subversion repository.</p>
<p>You should have created one or more repositories that fall underneath /svn so the url you want to checkout from would be something like <strong>https://bookroom:8443/svn/reponame</strong></p>
<p>For example, here's the VisualSVN manager on my machine:</p>
<p><img src="http://farm4.static.flickr.com/3362/3522317588_6046d30b51_o.png" alt="VisualSVN Manager" /></p>
<p>Let's say my main url is https://mark:8443/svn. You can see how I have one repository called <em>adhoc</em> so I would checkout the url <strong>https://mark:8443/svn/adhoc</strong>.</p>