因为不想描述的缘由,致使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 repositorynode
查看全部表的表结构
select * from sqlite_master where type = "table";
查看某个表的表结构
select * from sqlite_master where name = "table_name"
锁定提交者
select * from nodes where changed_author = 'zhangsan' limit 3;web