提交或更新SVN文件时,提示须要先执行Clean up,但在Clean up时又弹出错误信息:sql
Cleanup failed to process the following paths:xxxxxxx Previous operation has not finished; run 'cleanup' if it was interruptedshell
Please execute the 'Cleanup' command.svn
本人英文水平欠佳,按此提示文字大体理解为:由于上一操做还未完成,致使本次执行失败,请执行清理命令。post
看到此提示就汗颜了,明明正在执行清理命令,居然提醒“清理失败,请执行清理命令”,由此进入死循环......spa
搜索资料一番以后发如今.svn/wc.db中的work_queue表中记录了SVN的工做队列,须要清空工做队列,让SVN认为已经没有“Previous operation”了,就能够正常执行当前命令了。3d
操做步骤以下:版本控制
1. 下载 Sqlite3.exesqlite
2. 将Sqlite3.exe放到.svn的同级目录blog
3. 在cmd控制台中将盘符转到svn版本控制的文件夹队列
4. 执行sqlite3 .svn/wc.db "select * from work_queue"
5. 看到work_queue中保存的工做队列
6. 执行sqlite3 .svn/wc.db "delete from work_queue" 删除工做队列
7. 从新执行Cleanup命令,成功!
http://bigmiao.com/Program/Item/61