svn版本管理工具和svn终端命令,同时使用的时候,下次再使用svn。svn就会出现这样的错误。下面说下,此类问题的解决方法:

1
1) Get an sqlite executable (for Windows: download a pre-compiled binaryfrom http://www.sqlite.com/download.html). Put it somewhere in your PATH.
1
2
3
2) Open a command prompt and go to the root of your working copy. Execute:
sqlite3 .svn\wc.db "select * from nodes where checksum like '%d9b41b57756396b9cb236801fc02e0da0a83dffe%'"
This should return exactly 1 row from the svn working copy database.
1
2
3
4
3) Now execute:
sqlite3 .svn\wc.db "update nodes set presence='not-present' where checksum like '%d9b41b57756396b9cb236801fc02e0da0a83dffe%'"
Now you've changed the presence value of that particular row to "not-present", giving svn a chance to recover from the actually
missing pristine file.

1
2
4) svn cleanup again. There might be more missing pristines. Repeat steps 2 and 3 for them.
missing pristine file.
1
2
5) Finally:
svn update –force

h4

This makes svn actually restore the pristines. The –force is there because svn will also try to install the working versions of the “not-present” files. But those files are still there. Without –force you’ll get tree conflicts on those files because of the “unversioned obstructions” that svn thinks they are (because of “not-present” svn thinks they shouldn’t be there).

本文地址 https://laoona.com/post/6bf7e4a7.html