I am trying to checkout the code at googlecode for the project 20thingsilearned, however I am getting the same error on Tortoise SVN and cygwin in Windows 7

Error: OPTIONS of   
Error: 'http://20thingsilearned.googlecode.com/svn/trunk/%2020thingsilearned-read-only':   
Error: could not connect to server (http://20thingsilearned.googlecode.com) 

Appreciate your help.

EDIT: I used http://downloadsvn.codeplex.com/ and it works like a charm, problem solved.

link|improve this question

25% accept rate
I configured the firewall to allow the tortoise connections, but in vain. – Ravi Gupta Jun 10 '11 at 20:31
Can you access 20thingsilearned.googlecode.com/svn/trunk in your web browser? – Earlz Jun 10 '11 at 20:40
feedback

1 Answer

up vote 1 down vote accepted

By the looks of it the command they are giving you is a full SVN console command to check out the repository.

# Non-members may check out a read-only working copy anonymously over HTTP.
svn checkout http://20thingsilearned.googlecode.com/svn/trunk/ 20thingsilearned-read-only

Which would check out the repository at http://20thingsilearned.googlecode.com/svn/trunk/ to the folder "20thingsilearned-read-only" while your error is that Tortoise is trying to checkout the full path of 'http://20thingsilearned.googlecode.com/svn/trunk/%2020thingsilearned-read-only' which does not exist.

If you are using Tortoise SVN then simply check out

http://20thingsilearned.googlecode.com/svn/trunk/

to your working directory.

link|improve this answer
I tried that also, but it didn't work – Ravi Gupta Jun 10 '11 at 22:29
@RaviGupta What did the error show when you tried? I've clarified my answer slightly. – Mokubai Jun 11 '11 at 11:43
feedback

Your Answer

 
or
required, but never shown

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