Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN command returned with the following error

Tags:

svn

netbeans

When I want to commit my project to SVN, the following error pops out:

org.tigris.subversion.javahl.ClientException:
Working copy '/media/Data/NETBEANS_PROJECTS/myproject/web/pages/ajax-fragments' locked; try performing 'cleanup'

I use NetBeans 7.1 (tried with 7.0.1 and 6.9, the same) and CollabNet Subversion control plugin. What he wants to tell me with 'cleanup'?

like image 377
Denees Avatar asked Jan 18 '12 09:01

Denees


1 Answers

Run a Subversion cleanup command. From the command line, change to your working directory and run:

svn cleanup

If this fails, you may need to get a new working copy and manually copy your changes in.

like image 194
David M Avatar answered Oct 01 '22 17:10

David M