Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
645 views
in Technique[技术] by (71.8m points)

svn: E155004: ..(path of resource).. is already locked

I'm getting an error when trying to commit a change to a repository. I'm sure that my resources (classes) are not locked but it still gives me the error:

Some resources were not updated.
svn: E155004: Working copy 'D:svnworkspacecrmweblayercomlmkrcrmwebmodeldashboard' locked
svn: E155004: 'D:svnworkspacecrm' is already locked
question from:https://stackoverflow.com/questions/16433933/svn-e155004-path-of-resource-is-already-locked

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Update and clean your working copy.

svn update
svn cleanup

If nothing else works, save your changes as a patch (TortoiseSVNCreate patch... or svn diff > changes.diff), and check out the repository anew. You can then apply the patch to the new working copy (TortoiseSVNApply patch... or svn patch changes.diff).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...