由于不想描述的原因,导致svn cleanup出现找不到/path/to/.svn/pr.../文件
cd /data/web/domain.com
sqlite3 .svn/wc.db
sqlite> .tables
ACTUAL_NODE NODES PRISTINE WC_LOCK
EXTERNALS NODES_BASE REPOSITORY WORK_QUEUE
LOCK NODES_CURRENT WCROOT
清空work_queue表数据
sqlite> delete from work_queue
退出
sqlite> .exit
重新执行命令
svn cleanup
已经可以更新啦
svn up
如果.svn目录下文件丢失或者损坏,可以到wc.db里面找到你的仓库地址
sqlite> select * from repository
查看所有表的表结构
select * from sqlite_master where type = "table";
查看某个表的表结构
select * from sqlite_master where name = "table_name"
锁定提交者
select * from nodes where changed_author = 'zhangsan' limit 3;