I committed a bunch of files (dozens of files in different folders) by accident. What is the easiest, cleanest (and safest!) way to \'undo\' that commit without having to de
You can revert your working copy to the revision prior to the commit. Once you have reverted your working copy, then simply commit the changes and you will effectively rolled back the accidental commit.
In a case like yours specifically, I would probably check out the revision that I wanted to roll back into a new working copy and then commit the working copy to the head revision.