Android studio使用svn管理项目,Update时候失败了,报错svn E155037:Previous operation has not finished; run 'cleanup' if it was interruptedsvn 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:

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

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

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

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

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

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

或者使用sqlite工具删除work_queue:

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

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

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

4.update project,更新成功。

相关文章:

  • 2021-05-23
  • 2021-12-21
猜你喜欢
  • 2021-04-29
  • 2021-07-24
  • 2021-04-27
  • 2022-03-05
  • 2021-11-27
  • 2022-12-23
  • 2021-12-03
相关资源
相似解决方案