0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SVNの"previous operation has not finished”の解決方法

Posted at

はじめに

SVNの操作中に上記エラーが出てCleanupしろとのメッセージが出ていたのですがCleanupが失敗し操作ができなくなってしまいました。
その解決方法になります。

環境

Windows 7 64bit
Subversion 1.9.2
TortoiseSVN 1.9.2

解決法

SQLiteを以下よりDL
https://www.sqlite.org/download.html

Windowsの場合c:\とかに解答して適当にPathを通しておく。

ローカルのワーキングコピーのルートに移動
cd C:\work\hoge

以下を実行してwork_queueを確認
sqlite3 .svn/wc.db "select * from work_queue"

Errorなしでなにかあるようならwork_queueごと削除する
sqlite3 .svn/wc.db "delete from work_queue"

あとはTortoiseSVNでCleanupを実行すると操作できる様になりました。

参考

以下参考
https://stackoverflow.com/questions/10128201/subversion-stuck-due-to-previous-operation-has-not-finished

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?