[에러메세지]
Cleanup failed to process the following paths:
Previous operation has not finished; run 'cleanup' if it was interrupted.
Please execute the 'Cleanup' command.
[sqlite3 파일 다운로드]
http://www.sqlite.org/download.html
sqlite-tools-win32...버전 zip 파일을 다운받음.(윈도우일 경우)
[쿼리 날리기]
압축을 해제 후 sqlite3.exe 파일을 SVN 홈 경로로 이동.
CMD 창을 통해서 SVN 경로로 이동한 후에 명령어를 수행.
> sqlite3 .svn/wc.db "select * from work_queue"
큐에 있는 대상이 출력되면 DELETE 실행.
> sqlite3 .svn/wc.db "delete from work_queue"
다시 Cleanup 실행 후 폴더가 lock 되었다는 에러 발생할 경우.
이번에는 락에 있는 폴더 대상을 삭제하기.
> sqlite3 .svn/wc.db "delete from wc_lock"
Cleanup 실행이 되면 완료!
'::protected > 이것저것' 카테고리의 다른 글
작업중 자주 사용하는 코드.. (0) | 2023.11.13 |
---|---|
Visual Studio 깃허브 연동.. (0) | 2022.04.08 |
C++ 코드 컨벤션(by김포프) (0) | 2019.11.20 |
깃허브 (0) | 2019.11.15 |
알고리즘 문제 풀때 자주 쓰는 것들(?) (0) | 2019.09.06 |