svn执行clean up后出现提示:svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted

svn提交遇到恶心的问题,可能是因为上次cleanup中断后,进入死循环了。

错误如下:

SVN clean失败解决方法

 

解决方法:清空svn的队列

1.下载sqlite3.exe (到博主csdn里下载)  

2.找到你项目的.svn文件,查看是否存在wc.db

3.将sqlite3.exe放到.svn的同级目录

4.启动cmd执行sqlite3 .svn/wc.db "select * from work_queue"

SVN clean失败解决方法

5.看到很多记录,下一步执行delete from work_queue

SVN clean失败解决方法

 

6.ok了,现在在到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了。

相关文章:

  • 2021-08-10
  • 2022-12-23
  • 2021-04-07
  • 2021-09-03
  • 2022-01-06
  • 2021-07-21
  • 2021-06-17
  • 2021-07-20
猜你喜欢
  • 2021-07-08
  • 2021-08-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2021-05-17
相关资源
相似解决方案