I messed up on my SVN repository and now need to revert the entire repository from revision 28 to 24 and don\'t want to deal with diffs or conflicts. Is there a quick and si
If you really need to wipe 'evidence' that the files ever existed, you need to do the svndump/svnload actions described above.
In a 'normal' situation, where you made a mistake, you need to use reverse merge. This make sure that undoing the changes after r24 can also be reverted, diffed, etc.
The command below should work to undo your changes (you need to commit the result of the merge to reflect the merge in the repository)
svn merge -r 28:24