美文网首页
Svn error “Previous operation ha

Svn error “Previous operation ha

作者: Mitchell | 来源:发表于2016-07-26 17:41 被阅读34次

由于修改图片名称再上传的时候引起的错误,上一个操作没完成,这个时候又不可以去 cleanup ,这个时候去清空 svn 版本控制中的工作队列。
参考这个链接
首先下载 SQLITE,进入本地svn 工作目录(.svn),解决方法

  • windows:
sqlite3.exe .svn/wc.db "select * from work_queue"
sqlite3.exe .svn/wc.db "delete from work_queue"
  • mac:
sqlite.exe .svn/wc.db "select * from work_queue"
sqlite.exe .svn/wc.db "delete from work_queue"

相关文章

网友评论

      本文标题:Svn error “Previous operation ha

      本文链接:https://www.haomeiwen.com/subject/oonnjttx.html