How to view a file at a specific commit in git?

How 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

Similar Posts

One Comment

Leave a Reply

Your email address will not be published. Required fields are marked *