游戏开发中的坑之八 SVN 相关报错

报错1:执行cleanup 失败,报错如下

Cleanup failed to process the following paths:

Failed to run the WC DB work queue associated with 

can't intall'###'from pristine store,

because no checksum is recorded for this file

解决方式:使用SQlite 

下载https://www.sqlite.org/download.html

sqlite-dll-win64-x64

sqlite-tools-win32-x86-

分别解压,把文件都拷贝到.svn 目录下

双击sqlite3,输入.open wc.db  

输入 select * from work_queue;

输入 delete from work_queue;

输入.exit

OK!可以执行cleanup 和update了!!

猜你喜欢

转载自blog.csdn.net/yijiankun100/article/details/84099287