반응형

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 'Cleanup' command. "  이런 에러 나고. 

 

http://www.sqlite.org/download.html  에서  sqlite 다운로드

sqlite-tools-win32-x86-3360000.zip
(1.82 MiB)

 

CMD 창으로 해당 .svn 폴더있는 곳으로 들어가서

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

select 되는게 있으면 삭제

sqlite3 .svn/wc.db "delete from work_queue"


//-- 폴더가 lock 되어있으면   

sqlite3 .svn/wc.db "delete from wc_lock"

 

반응형

+ Recent posts