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

I have a git repository, After the last commit, I modified a bunch of file. but I want to undo the changes to one of these file, as in reset it to the same version of itself that's in the repository, but I want to undo the change to that file alone! nothing else with it. How do I do that? assuming it's possible of course ..

share|improve this question

7 Answers

up vote 338 down vote accepted
git checkout -- filename

You can do it without the -- (as suggested by nimrodm), but if the filename looks like a branch or tag (or other revision identifier), it may get confused, so using -- is best.

You can also check out a particular version of a file:

git checkout v1.2.3 -- filename         # tag v1.2.3
git checkout stable -- filename         # stable branch
git checkout origin/master -- filename  # upstream master
git checkout HEAD -- filename           # the version from the most recent commit
git checkout HEAD^ -- filename          # the version before the most recent commit
share|improve this answer
8  
what's the difference between HEAD and HEAD^? – hasen j Mar 28 '09 at 22:06
16  
HEAD is the most recent commit on the current branch, and HEAD^ is the commit before that on the current branch. For the situation you describe, you could use git checkout HEAD -- filename. – Paul Mar 28 '09 at 22:21
5  
In short "git checkout sha-reference -- filename" where the sha-reference is a reference to the sha of a commit, in any form (branch, tag, parent, etc.) – Lakshman Prasad Mar 2 '10 at 15:46
1  
HEAD^ , sorry but i am out of touch here little bit. What is last char in HEAD^? Can't find it in windows keyboard – mamu Oct 14 '10 at 2:18
1  
@mamu It's a caret; on a US keyboard, you usually get it by typing Shift-6. – Brian Campbell Oct 14 '10 at 2:44
show 1 more comment
git checkout <commit> <filename>

I used this today because I realized that my favicon had been overwritten a few commits ago when I upgrated to drupal 6.10, so I had to get it back. Here is what I did:

git checkout 088ecd favicon.ico
share|improve this answer
How do I get the commit (of a previously deleted file) except of scrolling throw tons of "git log --stat" output? – Alexander Orlov Mar 1 '12 at 9:40
IMO it's kind of difficult via the commandline to scan through gits log and find the right file. It's much easier with a GUI app, such as sourcetreeapp.com – neoneye Mar 2 '12 at 6:46

Just use

git checkout filename

This will replace filename with the latest version from the current branch. WARNING: your changes will be discarded -- no backup is kept.

share|improve this answer
2  
+1 for "no backup" – michael.kebe Jun 27 '12 at 6:40

If you want to just undo the previous commit's changes to that one file, you can try this:

$> git checkout branchname^ filename

This will checkout the file as it was before the last commit. If you want to go a few more commits back, use the branchname~n notation.

share|improve this answer
This won't remove the changes from the commit, it will just apply the diff to the version on the HEAD. – FernandoEscher Feb 27 at 18:32

git checkout filename

This works. If changes needed to be kept please create a backup before you run this command.

share|improve this answer

use git reset HEAD <file> to unstage your changes.

and then git checkout <file>

share|improve this answer

I restore my files using the SHA id, What i do is git checkout <sha hash id> <file name>

share|improve this answer

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.