I had a problem with a corrupt repository today.
svn log gave me "Malformed file" errors even though svnadmin verify said everything was OK.
It's always bad when your source history is gone so I'll also post an answer in case it helps someone.
|
I had a problem with a corrupt repository today. svn log gave me "Malformed file" errors even though svnadmin verify said everything was OK. It's always bad when your source history is gone so I'll also post an answer in case it helps someone.
| |||
|
feedback
|
|
Backup your repository!
Note the last revision it was able to dump (eg. 99), the next one has the error (e.g. 100).
If it contains garbage or NULs you can fix it:
run "svnadmin dump REPOSPATH > nul" again - it should finish without errors | |||||||
feedback
|