HOWTO: retrieve a single file from a specific version in git
git show
will help you. Few examples below:
$ git show file.py
$ git show HEAD^^^:file.py
$ git show 948a17:file.py
git show
will help you. Few examples below:
$ git show file.py
$ git show HEAD^^^:file.py
$ git show 948a17:file.py
Comments