Published on

Checksum Mismatch During SVN Update

Authors

After a recent migration of our SVN server, the following error started appearing frequently when I tried to check out working copies with SVN.

svn: E200014: Checksum mismatch for 'C:\Users\daisuke\home\project\test expected: 3b5a82b210f660599a0ecac44ad38e63 actual: 444a2e67fb695ded847d7f0e97b3ab8f

Running the commands below allowed me to check out the repository again. This is not a fundamental fix, though. Be careful that svn update --set-depth empty deletes all files under the working copy.

svncleanupsvn cleanup svn update --set-depth empty $ svn udpate --set-depth infinity

References