tags:

views:

114

answers:

3

Hi, I'm trying to checkout from an IP but I'm getting:

svn checkout http://[email protected]/home/usr/svn/project
svn: OPTIONS of 'htp://[email protected]/home/usr/svn/project': 200 OK

Im not sure why Im getting OPTIONS, I want to check out! Thanks!

A: 

Isn't the right syntax this:

svn checkout http://[email protected]/home/usr/svn/project /path/to/local/copy

Bobby

Bobby
Thank you very much for your help however I specify where it is to be checked out as you said but I still get a options response.
ksolt
The second argument is optional and defaults to the last part of the URL (`project` in this case).
Ferdinand Beyer
+4  A: 

It sounds like apache isn't configured correctly. What happens if you browse to that URL in a web browser?

glenc
+1  A: 

There seems to be another post like this with a resolution as well - you might see if that helps your situation.Likely related to access configuration.

http://stackoverflow.com/questions/1025377/an-svn-error-200-ok-when-checking-out-from-my-online-repo

Critical Skill