GNU/Linux Desktop Survival Guide
by Graham Williams |
|||||
Git Recover File from Previous Commit |
Recover the file abc.py from a previous commit.
$ git rev-list -n 1 HEAD -- abc.py d6be5838101f3bc86f01d3a8379063b34a95a71f $ git checkout d6be5838101f3bc86f01d3a8379063b34a95a71f^ -- abc.py |