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 made some changes to a file which has been committed in a few times as part of a group of files, but now want to reset/revert the changes on it back to a previous version.

I have done a git log along with a git diff to find the revision I need, but just have no idea how to get the file back to its former state in the past.

Any help is greatly appreciated.

share|improve this question
similar topic here: stackoverflow.com/questions/373812/… – Grzegorz Wierzowiecki Jan 6 '11 at 0:15

4 Answers

up vote 550 down vote accepted

Assuming the commit you want is abcde:

git checkout abcde file/to/restore

The git checkout man page gives more information.

As a side note, I've always been uncomfortable with this command because it's used for both ordinary things (changing between branches) and unusual destructive things (discarding changes in the working directory).

share|improve this answer
10  
@Sam Soffes: The abcde in my answer represents the SHA1 of the specific commit as requested in the question. Using master there also names a specific commit, which is the most recent one on the master branch. – Greg Hewgill Jun 21 '10 at 23:36
85  
If you messed up in "abbcdf" and want the version right before "abbcdf", you can do git checkout "abbcdf~1" path/to/file. – shadowhand Mar 1 '11 at 0:13
3  
@baash05: One of the fab things about Stack Overflow is that answers can be edited later to stay up to date. Link fixed, thanks! – Greg Hewgill Feb 7 '12 at 4:57
1  
@RaffiKhatchadourian: progit.org/2011/07/11/reset.html has an excellent explanation of all the different things git reset can do. – Greg Hewgill Feb 14 '12 at 7:29
3  
@shadowhand -- That abbcdf~1 thing -- particularly useful for the command git checkout master~1 path/to/file -- is WONDERFUL. +99! – DanM Jul 6 '12 at 12:52
show 7 more comments

I had the same issue just now and I found this answer easiest to understand (commit-ref is the SHA value of the change in the log you want to go back to):

git checkout [commit-ref] [filename]

This will put that old version in your working directory and from there you can commit it if you want.

share|improve this answer

And to revert to last committed version, which is most frequently needed, you can use this simpler command.

git checkout HEAD file/to/restore
share|improve this answer

I have to plug EasyGit here, which is a wrapper to make git more approachable to novices without confusing seasoned users. One of the things it does is give more meanings to git revert. In this case, you would say:

eg revert --since your_previous_commit foo/bar foo/baz

share|improve this answer
6  
Whoa, a drop of sanity in the pool of Git. – romkyns May 16 '11 at 12:19
5  
Why not just “revert” like in all other reasonable SCMs? – Timwi May 16 '11 at 12:20

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.