1、cleanup failed to process the following paths:
working copy 'xx\xxx\xxx' locked.
解决方法:在当前目录打开cmd,输入sqlite3 .svn/wc.db "select * from wc_lock",回车
然后输入sqlite3 .svn/wc.db "delete from wc_lock",回车
2、cleanup failed to process the following paths:
xx\xxx\xxx
Previous operation has not finished;run 'cleanup' if it was interrupted
解决方法:在当前目录打开cmd,输入sqlite3 .svn/wc.db "select * from work_queue",回车
然后输入sqlite3 .svn/wc.db "delete from work_queue",回车
结论:
用navicat登陆了之后,使用语句对“wc_lock”表和“work_queue”进行删除,再重新获取。
(工具删除不了,会显示数据库被锁,语句删除也需要多执行几下才能删除。)