SVN Update Error: Please execute the 'Cleanup' command

      在使用SVN做更新代码的时候,有时会碰到无法更新的情况,一般会提示如下的信息,说是:

      Working copy 'E:\mySVNDirectory' locked

      Please execute the 'Cleanup' command.

 SVN Update Error: Please execute the 'Cleanup' command_第1张图片

     按上面的意思是说你只要Clearnup一下就可以再更新了,但是很多时候,当你再点cleanup的时候,它会再提示你已经被锁定,无法更新。

 

     原因有可能是

      1. 有文件正在更新或上传,该文件夹被锁定。

      2. 更新或上传的时候动作没有完成,导致本地存在锁定状态没有释放。

     解决方法是

     1. 对于上面的第1种情况,等待你所做的操作完成。

     2. 对于第2种情况,把对应的文件来里的.svn里面的lock文件删除。

SVN Update Error: Please execute the 'Cleanup' command_第2张图片

     接下来更新就可以了。

你可能感兴趣的:(C/C++/C#)