When operating TORTOISESVN, the following error is reported:
Command Update
Repository UUID ' 62b86956-73d9-2945-ba87-0546d71898f9 ' doesn ' t match expected
UUID ' 6aed1349-fe9f-9245-a4a0-02dba53eb2d0 '
finished!
As you can see, the UUID of the original repository creator is the former and the UUID of the latter is now being manipulated. Therefore, the current workaround is to update the UUID of the repository with the relevant commands.
The specific measures are as follows:
1. First look at the UUID of the project owner
# Svnlook UUID E:/svn_root/mydoc
62b86956-73d9-2945-ba87-0546d71898f9
2, update the UUID of the project
# svnadmin Setuuid E:/svn_root/mydoc 6aed1349-fe9f-9245-a4a0-02dba53eb2d0
3. Check the updated UUID
# Svnlook UUID E:/svn_root/mydoc
Report:
The UUID is a random number generated automatically when repository is created, and SVN client uses the UUID to determine whether it is the same resp. You will need to re-checkout when you encounter a different UUID.
Transferred from: http://morgan363.iteye.com/blog/706756
from:http://tjmljw.iteye.com/blog/1612556
"Turn" SVN's UUID Error