因为SVN客户端中有一个嵌入式DB(里面大约有10多个表)SQLite
第一步,先要下载sqlite3.
将下载好的sqlite3.exe放到项目根目录,svn报错导致Previous operation has not finished; run 'cleanup' if it was interrupted
第二步,打开cmd进入到项目.svn目录
svn报错导致Previous operation has not finished; run 'cleanup' if it was interrupted
进入目录后,输入sqlite3 wc.db打开数据库。
数据库打开后,输入.table查看数据库的表。
我们看到work_queue这个表,就是svn工作队列。
我们把这个表的内容删掉。输入delete from work_queue;
然后回到eclipse 就能运行clean up了。

相关文章:

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