본문 바로가기

카테고리 없음

SVN Cleanup 실행시 오류 처리


1. SVN CleanUp 실행시 오류 발생
   Previous operation has not finished; run 'cleanup' 
   if it was interrupted Please execute the 'Cleanup' command.

2. 처리
  - work_queue 확인 및 삭제
    sqlite3 .svn/wc.db "select * from work_queue"
    sqlite3 .svn/wc.db "delete from work_queue"
  - wc_lock 확인 및 삭제
    sqlite3 .svn/wc.db "select * from wc_lock"
    sqlite3 .svn/wc.db "delete from wc_lock"
  - cleanup 다시 시도

참조 : https://mozi.tistory.com/313

3. 처리 2
  - cleanup 실행시 Break locks 체크후 실행