Let's say I have a project which is currently on revision 100. I now realize that the last few days of changes are completely wrong, and I want roll back all changes to revision 95 and begin development again from there. Ideally, I would execute command(s) to roll back to 95, then recommit the changes so my repository would be at revision 101 with all files in the project being equivalent to version 95.
The first few times I tried this (I don't remember exactly what I did) all it managed to do was set all my changed files into a conflicted state (and gave me weird errors when I tried to resolve them). I finally managed to get my working copy rolled back to 95 (via something like this), but when I tried to do a commit, it told me I could not do it until I updated the project. Well, updating the project bumped all the files back to the 100 version, except the 1 or 2 I had changed since rolling back (they went back into conflicted).
How can I tell SVN to put my working copy at version 95, ignore all changes in versions 96-100, and commit the ver 95 working copy as the new head revision for all files?
Additional info: We are running a self-hosted version of SubversionEdge, and interfacing with it via TortoiseSVN and AnkhSVN. I am the only person working on said project, and there is almost no chance of any changes being made by someone else (even if there were, I'd still want 95 to overwrite everything).
