How to view a file at a specific commit in git?
Posted on In QAHow to view a file at a specific commit/revision in git?
You can use git show
to view a file’s content at a specific commit in git: https://www.systutorials.com/docs/linux/man/1-git-show/
$ git show REVISION:/path/to/file
You can also save a copy by
$ git show REVISION:/path/to/file >file.copy
Life is hard to get back a few strokes