Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subversion commit problem

Tags:

svn

netbeans

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 ?

like image 393
M.M Avatar asked Mar 01 '11 15:03

M.M


2 Answers

Sounds like your repository URL is incorrect. 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.?

like image 128
AlG Avatar answered Oct 06 '22 01:10

AlG


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?.

like image 37
Ryan Mitchell Avatar answered Oct 06 '22 01:10

Ryan Mitchell