zoukankan      html  css  js  c++  java
  • svn clearup svn cleanup failed–previous operation has not finished; run cleanup if it was int错误的解决办法

    今天svn提交,
    出现异常:
    svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted
    百度后,大多解决办法:
    team--> Refresh/Cleanup
    会出现异常:
    SVN: org.apache.subversion.javahl.ClientException:Previous operation has not finished
    ===========================================
    解决方法:清空svn的队列
    1.下载sqlite3.exe   
    2.找到你项目的.svn文件,查看是否存在wc.db
    3.将sqlite3.exe放到.svn的同级目录
    4.启动cmd执行sqlite3 .svn/wc.db "select * from work_queue"
    5.看到很多记录,下一步执行delete from work_queue
    6.ok了,现在在到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了。

     附常用命令:

    1  进入E盘   e:

    2  进入E盘下面的 kcp 目录   cd kcp

    3  回到上一级目录   cd ..

    3 显示当前目录下的文件   dir

  • 相关阅读:
    Comet OJ
    AtCoder Grand Contest 002题解
    AtCoder Grand Contest 001 题解
    线性基求交
    2019牛客暑期多校训练营(第四场)题解
    AtCoder Grand Contest 036题解
    计算几何 val.2
    计算几何 val.1
    模拟退火学习笔记
    动态点分治学习笔记
  • 原文地址:https://www.cnblogs.com/Jimmy104/p/7019155.html
Copyright © 2011-2022 走看看