How can I check out a particular version of one file in Git?

Git

Git Problem Overview


How can I check out a particular version of one file in git?

I found this mail on the mailing list, which said:

$ git checkout HEAD~43 Makefile
$ git reset Makefile

But I don't understand how to find out 'HEAD43', if I do a git log aFile, how can I find out which 'HEAD43' I should use?

And why do I need to run git reset for that file? What does it do?

Git Solutions


Solution 1 - Git

You know what commit (ie: the specific revision) the file belongs to? Then do:

git checkout <commit> <file>

The other command:

git checkout HEAD~N <file>

Is for when you want to get a version of the file from a range back (which I do for nostalgia).

Solution 2 - Git

HEAD~43 is just treeish, so you can use a hash or a tag. You have to separate treeish from the filename with --, otherwise it is treated as filename. For example.

git checkout v0.45 -- filename
git checkout HEAD^ -- filename
git checkout 16bb1a4eeaa9 -- filename

Solution 3 - Git

HEAD~43 refers to the commit (version) of the file. Instead of that, you can use the commit hash you get from doing git log on the file. If you just want the file, you don't need to run git reset on it; that's only necessary if you want to forward-port the file to the current HEAD.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionn179911View Question on Stackoverflow
Solution 1 - GitFake Code Monkey RashidView Answer on Stackoverflow
Solution 2 - GitdhillView Answer on Stackoverflow
Solution 3 - GitJim PulsView Answer on Stackoverflow