SVN cleanup问题

*爱你&永不变心* 提交于 2021-01-06 05:06:48

简要说明:

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 的编译版本号
  • 将 zip 文件解压到你的磁盘,双击sqlite3.exe。
  •          

     

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

                

     

     

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

     

    标签
    易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
    该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!