Cant checkout from WebSVN
- by yoasqie
I am trying to download a script from SVN. The url looks like this:
http://websvn.myurl.com/list.php?repname=name_1
I am trying to download using:
svn checkout --username myuser --password mypass "http://websvn.myurl.com/list.php?repname=name_1"
I got "URL is not properly URI-encoded", then I changed the "?" for "%3F", and the output shows:
svn: OPTIONS of 'http://websvn.myurl.com/list.php%3Frepname=name_1': 200 OK (http://websvn.myurl.com/)
But nothing gets downloaded.
Sorry I can't post the real URL, but it's a private project and I don't have anyone else online to ask.
What am I doing wrong?