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 3 years have passed since last update.

SVNでクリーンアップしろと言われるが、クリーンアップ出来ないときの対処方法

Last updated at Posted at 2021-03-05

previous operation has not finished; run 'cleanup' if it was interrupted Error:​Please execute the 'Cleanup' command.

こんなエラーでクリーンアップ出来なくて詰みかけたので、調べたついでにメモ

発生状況としては、SVNからファイルの削除をしようとしてエラーが出た。

対処方法##

1. sqliteのダウンロード###

https://www.sqlite.org/download.html
ここらダウンロード
sqlite.PNG

正直どれ選ばばいいのかよくわからなかったんで適当に選択しましたw

2. sqliteの配置###

svnで管理している、一番上のフォルダに**.svn**という名前のフォルダで
中に「wc.db」がある所にコピーします

DLしたファイルに入っている
sqlite3.exe
をSVN管理しているルートフォルダと同じ階層にある「.svn」の中に配置します。

SVNで管理している、一番上のフォルダに**.svn**という名前のフォルダで
中に「wc.db」がある所にコピーすれば大丈夫です。

3. コマンドプロンプトを立ち上げる###

cdコマンドでsqlite3.exeを配置したフォルダに移動します。

cd c:\user\hoge\.svn

4. sqliteでsvnのdbを見る###

「wc.db」がsvnのdbがになるので
SELECT, DELETEを行っていきます。

キューを確認####

sqlite3 wc.db "select * from work_queue"

恐らく何かしらSELECT出来ると思います。

キューを削除####

sqlite3 wc.db "delete from work_queue"

delete後にもう一度selectしてみて
無くなっていればOKです。

4. svnのクリーンアップ###

svn管理しているルートフォルダでクリーンアップを実行すれば成功するはずです。

参考##

こちらを参考にさせていただきました。
https://qiita.com/tetsu8/items/11adce538942f738d231

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?