Is there a command in git to see (either dumped to stdout, or in $PAGER or $EDITOR) a particular version of a particular file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You can use
For example, to show the 4th last commit of the file
Note that the path must start from the root of the repository. For more information, check out the man page for |
|||||||||||||||||||
|
|
Use
If you want see an old revision, use:
For more information, check out the man page for |
|||||||
|
|
Doing this by date looks like this:
|
|||
|
|
|
If you like GUIs, you can use gitk: 1) start gitk with:
2) Choose the revision in the top part of the screen, e.g. by description or date. By default, the lower part of the screen shows the diff for that revision, (corresponding to the "patch" radio button). 3) To see the file for the selected revision:
|
|||
