Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn "no element found" error

I am new to subversioning. I wanted to checkout already existing project in my system. But, when I did this in console:

svn checkout urlname

It asked me for password, but I gave it wrong password by mistake. When I tried it second timee, it didn't ask me for password but gave an error message:

unable to connect to a repository at URL
The OPTIONS request returned invalid XML in the response: XML parse error at    
line1: no element found (urlname)

Any idea about what I am doing wrong here?

like image 583
Sadiksha Gautam Avatar asked Apr 17 '12 16:04

Sadiksha Gautam


1 Answers

Try specifying the correct password using:

svn --password (your password here) checkout urlname

like image 118
bobmcn Avatar answered Oct 12 '22 13:10

bobmcn