svn: E155004: ..(path of resource).. is already locked
For me worked, in Eclipse:
Team -> Cleanup
Update and clean your working copy.
svn update
svn cleanup
If nothing else works, save your changes as a patch (TortoiseSVN → Create patch... or svn diff > changes.diff
), and check out the repository anew. You can then apply the patch to the new working copy (TortoiseSVN → Apply patch... or svn patch changes.diff
).
Solution:
Step1: Have to remove “lock” file which present under “.svn” hidden file.
Step2: In case if there is no “lock” file then you would see “we.db” you have to open this database and need to delete content alone from the following tables
– lock
– wc_lock
Step3: Clean your project
Step4: Try to commit now.
Step5: Done.