首页 > 其他 > 详细

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

时间:2019-12-22 22:33:58      阅读:543      评论:0      收藏:0      [点我收藏+]

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

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

原文:https://www.cnblogs.com/open-coder/p/12081338.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!