执行 svn update,却抛出个错误警报:
svn: E200033: database is locked, executing statement 'RELEASE s0'
?
之后无论是cleanup,还是release locker都没反应!
?
别急,试试以下方案:
$ cd /your project path/.svn $ mv wc.db wc.db.old #做事都要有备份的习惯 $ sqlite3 wc.db.old #打开copy的数据库 sqlite> .backup main wc.db sqlite> .exit
?
现在再试试 svn update,就 ok 啦...
?
参考:http://technosophos.com/content/sqlite-database-locked-error-and-unlocking-database
?
?
?
?
?
?
?