Hi
I have a problem in committing my changes to SVN.
I get the message:

Commit failed (details follow):
Illegal repository URL ''

I'm using netbeans.

Any help please ?

link|improve this question

67% accept rate
Sorry, I can't think: what's CVN? You're not confusing CVS and SVN (= subversion)? – Rup Mar 1 '11 at 15:56
feedback

4 Answers

Sounds like your repository URL is bad. Check to be sure that your repository is pointing to the right place;

$ svn info
Path: .
URL: https://... ** is this right?
Repository Root: https://... ** Is this right?
<snip>

If that's correct, is your SVN server running? Can you ping the server, verify that SVN is running, etc.?

link|improve this answer
feedback

I was getting this error, and the issue turned out to be that I was trying to commit both local changes and changes to external projects - as described here How do I checkin to local copy AND svn:externals subdirectories in one commit?.

link|improve this answer
This helped me, although I have no idea if there are external things in the project I'm working with. I just committed everything separatedly (each subfolder or file) and it worked. – Ixx Feb 23 at 17:28
Thanks, this was the problem for me as well. – Simeon Visser Mar 21 at 8:54
feedback

If the URL is correct, then it might be a proxy issue. For example if you are behind a corporate firewall, then you have to set up the proxy server as well.

link|improve this answer
feedback

have you tried svn switch CORRECT_URL

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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