Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a command in git to see (either dumped to stdout, or in $PAGER or $EDITOR) a particular version of a particular file?

share|improve this question

4 Answers

You can use git show:

$ git show REVISION:path/to/file

For example, to show the 4th last commit of the file src/main.c, use:

$ git show HEAD~4:src/main.c

Note that the path must start from the root of the repository. For more information, check out the man page for git-show.

share|improve this answer
That doesn't actually seem to work -- did you try it? For "git show HEAD:path/to/file.c", I get an "ambiguous argument" error. – mike Dec 3 '08 at 20:06
4  
Yeah, I tried it out -- it worked for me. – mipadi Dec 3 '08 at 22:13
4  
If you're on windows, it might be a path separator thing; if I do git show HEAD:dir\subdir\file, I get the anbiguous argument. If I do git show HEAD:dir/subdir/file, it works as expected. – Matt McMinn Jul 21 '10 at 14:56
2  
The path you must provide after the : is from the root of the git repository. (this was given below as an answer but I think it was intended as a comment on this answer) – MatrixFrog Feb 28 '11 at 19:21
1  
@ashishsony: Yes, you can use git checkout <revision>. – mipadi Jan 3 '12 at 14:52
show 8 more comments

Use git show. For example, the current checkout file would be:

$ git show :./path/to/file

If you want see an old revision, use:

$ git show HEAD~4:./path/to/file

For more information, check out the man page for git-show.

share|improve this answer
2  
The link is broken – George Jempty Jan 8 '12 at 16:22
fixed, thank you – Casey Jan 17 '12 at 17:34

Doing this by date looks like this:

git show HEAD@{2013-02-25}:./fileInCurrentDirectory.txt
share|improve this answer

If you like GUIs, you can use gitk:

1) start gitk with:

gitk /path/to/file

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:

  • Click on the "tree" radio button. This will show the root of the file tree at that revision.
  • Drill down to your file.
share|improve this answer
This also works with tig, which is a curses git repo viewer. – Matthew G May 13 at 5:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.