解决SVN“Failed to run the WC DB work queue associated with”错误

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

错误信息:

Error:Error performing cleanup for 'D:\Personal\Sha\Work\FE\SVN\feauto\feauto\trunk\fe_server': svn: E155009: Failed to run the WC DB work queue associated with 'D:\Personal\Sha\Work\FE\SVN\feauto\feauto\trunk\fe_server', work item 1393 (file-install feauto/trunk/fe_client/config/db.yaml 1 0 1 1)
svn: E720005: Can't move 'D:\Personal\Sha\Work\FE\SVN\feauto\.svn\tmp\svn-BEA58468' to 'D:\Personal\Sha\Work\FE\SVN\feauto\feauto\trunk\fe_client\config\db.yaml': �ܾ����ʡ�

错误原因:

在svn checkout/commit/update时,如果文件名中存在无法识别的符号,那么checkout操作会阻塞后面的其他操作——包括cleanup;

错误解决:

解决方法:清空svn的队列

1.下载sqlite3.exe;

参考地址:http://www.runoob.com/sqlite/sqlite-installation.html

2.找到你项目的.svn文件,查看是否存在wc.db;

3.将sqlite3.exe放到.svn的同级目录;

4.启动cmd执行sqlite3 .svn/wc.db "select * from work_queue";

5、看到很多记录,下一步执行delete from work_queue;

解决SVN“Failed to run the WC DB work queue associated with”错误_第1张图片

6、ok了,现在在到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了;

你可能感兴趣的:(解决SVN“Failed to run the WC DB work queue associated with”错误)