SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

  • 今天在用svn更新公司代码时,发现更新错误,报了如下错误:
Error:svn: E155037: Previous operation has not finished; run 'cleanup' if it was interrupted
  • 然后在idea中右键项目名Subversion–Cleanup时,也会报错

SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

  • 在网上找了下答案,发现了一个能解决我问题的方法
  • 简单来说就是在使用svn的项目中,项目文件夹下会有一个.svn文件夹,.svn文件夹下面会有一个SQLite数据库类型的文件wc.db,这个文件中存储的是svn项目中的文件类型,项目结构树,用户操作进度等。
  • 因此我们接下来要做的就是找到wc.db中的相关记录,然后删除。
  • 为了方便操作wc.db,首先要安装SQLite,https://www.sqlite.org/download.html

SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

  • 然后将文件解压缩后,把其中的sqlite3.exe复制到.svn目录下。

SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

  • 然后使用管理员身份打开命令提示符,切换到.svn目录下:

SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

sqlite3 wc.db 查看wc,db文件内容

.table 查看wc.db中所有的表 其中WORK_QUEUE表就是用来记录用户操作

DELETE FROM WORK_QUEUE 删除work_queue表中数据,注意sqlite区分大小写,具体命令的情况百度即可

  • 然后重新svn的clean up操作,就好了

SVN Error:svn: E155037: Previous operation has not finished; run ‘cleanup‘ if it was interrupted

  • 本文参考大佬的文章:https://blog.csdn.net/yu102655/article/details/83714524
上一篇:从零开始学编程02--项目管理工具的使用


下一篇:《第三方JavaScript编程》——1.2 第三方JavaScript的用法