svn E155037:Previous operation has not finished; run 'cleanup' if it was interrupted

Android studio使用svn管理项目,Update时候失败了,报错svn E155037:Previous operation has not finished; run 'cleanup' if it was interrupted

点击“ VCS -> Cleanup Project”进行Cleanup操作,还是不好用,

这时候需要操作项目.svn目录中wc.db文件。

1.将sqlite3.exe放到项目的.svn文件夹下。sqlite3可以到网上下载,也可以到SDK里面去复制。

   (1)SDK里面的sqlite3:

   (2)复制到项目的.svn目录下面:

2.执行sqlite3命令操作wc.db数据库的内容

1. 命令行cd进入项目的.svn目录下
2. sqlite3 wc.db
3. .table
4. delete from work_queue;

或者使用sqlite工具删除work_queue:

3.点击“ VCS -> Cleanup Project”进行Cleanup操作

4.update project,更新成功。

猜你喜欢

转载自blog.csdn.net/KingsleyCheng/article/details/90202866