赞
踩
一、问题描述
1.svn 更新或者提交时,报错:svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted
提醒先clean up
2.当clean up时,报错如下:
3.Failed to run the WC DB work queue associated with。。。之类的错误
三、解决办法
1.下载sqlite3.exe https://www.sqlite.org/download.html
2.找到你项目的最外层的.svn文件,进入.svn文件夹查看是否存在wc.db
.svn是隐藏文件,在“查看”选项中勾选“隐藏的项目”,就可看到
3.将sqlite3.exe放到项目最外层.svn的同级目录
4.windows+R快捷键,输入cmd,进入dos命令窗口
5.进入到sqlite3.exe所在目录
6.依次执行以下命令
第一条命令是查看冲突的文件,第二条是删除冲突记录,强制清除
sqlite3 .svn/wc.db "select * from work_queue"
sqlite3 .svn/wc.db "delete from work_queue"
7.再试clean up,ok了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。