SVN update 时报错 Please execute the 'Cleanup' command. 继续报错 Failed to run the WC DB work queue ass...

问题及现象:

svn 在 update 时报错 Please execute the 'Cleanup' command.

按照提示 cleanup操作时 又 继续报错 Failed to run the WC DB work queue associated

解决办法:

1、下载sqlite3工具工具

2、将解压的文件拷贝到 你报错的项目目录的 .svn 目录里面(wc.db文件同目录)

3、cmd命令行cd 到 步骤2的 目录中  

4、执行命令(注意替换红色文字为你自己的本地目录文件) :sqlite3.exe F:\SVN\Project\.svn\wc.db "delete from work_queue"

5、enter键执行步骤4里的命令后,等待几十秒左右,再去你的项目目录,执行update 即可。到此该问题解决完毕。
 

猜你喜欢

转载自blog.csdn.net/hnlht/article/details/87940081