krunchy
Joined: 26 Mar 2007 Posts: 2
|
Posted: Mon Mar 26, 2007 5:12 pm Post subject: Recover/remove bad revision |
|
|
I have a new SVN repository I'm administering, and I discovered that one changeset is corrupted:
| Code: | [root@ts ~]# svnadmin verify myrepo
* Verified revision 7282.
svnadmin: Checksum mismatch while reading representation:
expected: 1e0dc8faea443bbdf95e56f0c8a593f3
actual: e2f86ad0c7f9e834eb0581c6139e2bda |
So, I attempt to recover:
| Code: | svnadmin recover myrepo
Repository lock acquired.
Please wait; recovering the repository may take some time...
Recovery completed.
The latest repos revision is 12761. |
But it still fails on the verify:
| Code: | [root@ts ~]# svnadmin verify myrepo
* Verified revision 7282.
svnadmin: Checksum mismatch while reading representation:
expected: 1e0dc8faea443bbdf95e56f0c8a593f3
actual: e2f86ad0c7f9e834eb0581c6139e2bda
|
This changeset is when a bunch of files were moved to a different path within the repository.
I am unsure what to do at this point. If I dump/restore incrementals excluding the bad revision 7283, I am concerned I will lose track of the files...? Is there a way to skip/repair just this revision?
Thanks.
[/code] |
|