SVN 报错 Can't install '*' from pristine store, because no checksum is recorded for this file

SVN同步、cleanup都会出现下面的提示:

svn: E155017: Can't install '*' from pristine store, because no checksum is recorded for this file

svn报错:“Previous operation has not finished; run 'cleanup' if it was interrupted“

解决:

一般的clean up报错,只要回到当前目录上一层进行clean up就能继续提交svn内容。但是,当回到最上层目录都无法clean up时,需要用sqlite3对工程目录下.svn/wc.db的数据库文件进行以下操作 ,步骤如下:

> sqlite3 PROJECT-ROOT\.svn\wc.db
> select * from work_queue  ## 查看未完成的任务列表
> delete from work_queue   ##

Ref: https://blog.csdn.net/banyanmars/article/details/52524178

posted @ 2019-12-22 22:06  opencoder  阅读(1612)  评论(0)    收藏  举报
编辑推荐:
· 从“看懂世界”到“改造世界”:AI发展的四个阶段你了解了吗?
· 协程本质是函数加状态机——零基础深入浅出 C++20 协程
· 编码之道,道心破碎。
· 记一次 .NET 某发证机系统 崩溃分析
· 微服务架构学习与思考:SOA架构与微服务架构对比分析
阅读排行:
· dotnetty 新的篇章- 开源
· 设计模式:简单工厂、工厂方法与抽象工厂
· 【大数据高并发核心场景实战】 - 数据持久化之冷热分离
· DotTrace系列:1. 理解四大经典的诊断类型(上)
· 这5种规则引擎,真香!
点击右上角即可分享
微信分享提示