Git (TortoiseGit) – How to revert a single file to a previous revision and then undo the revert?
From the command line: git checkout is probably what you want. The documentation shows an example of: $ git checkout master~2 Makefile to revert Makefile to two revisions back in the master branch From within TortoiseGit (via Windows Explorer) it looks like you can do this with the following steps: Navigate in Explorer to the … Read more