svn远程仓库切换
问题:远程仓库与本地uuid不一致
$ svn relocate http://*****/trunk/ http://*****/trunk/
svn: E195009: The repository at 'http://*****/trunk' has uuid 'aca99792-2bd1-4e14-a1d2-bebde70d4aed', but the WC has '8118e7b0-0357-4bc4-b323-666fc34be34f'
通过手工修改本地的uuid可以统一版本
$sqlite3 wc.db
sqlite> update REPOSITORY set uuid='aca99792-2bd1-4e14-a1d2-bebde70d4aed';
问题:更新时出现为找到版本号
$ svn update
Updating '.':
svn: E160006: No such reported revision '254515' found in the repository.
未解决