You could also define :
- a pre-commit hook which will take care of the rollback for you,
- and a post-commit hook to restore your file.
Ouch... actually this is not a good idea, according to the SVN Manual.
- All triggers are executed on the server side (not the client side, as it is the case for ClearCase)
- Subversion keeps client-side caches of certain bits of repository data, and if you change a commit transaction in this way, those caches become undetectably stale. This inconsistency can lead to surprising and unexpected behavior. Instead of modifying the transaction, you should simply validate the transaction in the pre-commit hook and reject the commit if it does not meet the desired requirements
A possible way would be to modify your file in a post-commit script, and then commit that file as an independent change, before restoring it in anotehr post-commit script...
