SVN cleanup问题

简要说明:

svn: E155017: Can't install '*' from pristine store, because no checksum is recorded for this file

svn报错:“Previous operation has not finished; run 'cleanup' if it was interrupted“ 

 

问题描述:

使用Tor 执行update操作,出现更新错误,提示信息如下:

 

按照提示执行cleanup操作,

 

 

 

 

 

解决方案:

一般的clean up报错,只要回到当前目录上一层进行clean up就能继续提交svn内容。但是,当回到最上层目录都无法clean up时,需要按照如下步骤:

sqlite3 PROJECT-ROOT\.svn\wc.db

delete from work_queue

 

解决步骤

1)清空SVN队列

搜索wc.db,看是否存在该数据库文件

 

 

2) 安装sqlite3

SQLite on Windows

  1. 进入 SQL 下载页面:http://www.sqlite.org/download.html
  2. 下载 Windows 下的可执行文件包:
    • sqlite-tools-win32-x86-<build#>.zip
    注意: <build#> 是 sqlite 的编译版本号
  3. 将 zip 文件解压到你的磁盘,双击sqlite3.exe。

         

 

         4. 使用.open filename命令打开wc.db,删除work_queue中记录

            

 

 

 至此,问题解决,重新进行cleanup之后,进行update等操作即可

 

posted @ 2019-09-03 14:36  成长的程序员  阅读(898)  评论(0编辑  收藏  举报