[SVN오류] svn previous operation has not finished run 'cleanup' if it was interrupted
2023. 9. 13.

https://ngio.co.kr/9971

 

SVN - Previous operation has not finished; run 'cleanup' if it was interrupted 에러일때.

SVN - Previous operation has not finished; run 'cleanup' if it was interrupted 에러일때. clean up 하려면 "Cleanup failed to process the following paths: Previous operation has not finished; run 'cleanup' if it was interrupted Please execute the 'Cle

ngio.co.kr

-commit하려고 했는데 오류 발생.

-clean up해도 되지 않을 때 

 

./svn 폴더가 있는 폴더로 이동해서 sqlite3.exe를 넣어준다.

커맨드 창을 열고, sqlite3.exe 폴더의 위치 즉 ./svn 폴더 위치로 가서 다음 명령어들 해준뒤에 commit다시 하면 잘 된다.

이 경우에도 안되면 sqlite browser를 써야하는데 https://ilutoo.tistory.com/entry/%EC%98%A4%EB%A5%98-E155037-Previous-operation-has-not-finished-run-cleanup-if-it-was-interrupted 의 포스팅을 참고하면 될 것같다.

 

sqlite3 .svn/wc.db "select * from work_queue"
sqlite3 .svn/wc.db "delete from work_queue"
sqlite3 .svn/wc.db "delete from wc_lock"

 

myoskin