Svnadmin download checksum error

I have an SVN dump with some manually modified code, I'm trying to upload the dump back to the repository. The problem is that now I have error checksums for the modified versions. Is there a way to recalculate the md5 checksums for the entire dump file, or at least get svnadmin to download it?

+4
source share
3 answers

In some cases, you do not need the md5 checksum. I had this problem and we just deleted these lines.

sed -i '/Text-copy-source-md5/d' repo.dump

+1
source

During loading, the new checksum will be printed out (as far as I remember) as part of the error message ... Just take the checksum and place it in the field in the dump file.

0
source

I had the exact problem, and I fixed it by completely deleting the checksum lines:

 sed '/Text-content-md5/d' dumpfile.txt | svnadmin load repo --bypass-prop-validation 
0
source

All Articles