up vote 116 down vote favorite
52
share [g+] share [fb]

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.

link|improve this question

feedback

5 Answers

up vote 163 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).

link|improve this answer
7  
The git command set is a bit messed up. Ask a new user what they think "revert" does - it sure wasn't what I thought – 1800 INFORMATION Oct 18 '08 at 23:53
2  
Thanks, this was really helpful. – Mattew Oct 16 '09 at 14:44
3  
Saved my ass. Thank you. – tester Apr 13 '10 at 6:03
3  
@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
14  
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
show 4 more comments
feedback

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.

link|improve this answer
feedback

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

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

similar topic here: Rollback File to much earlier version

link|improve this answer
feedback

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

git checkout HEAD file/to/restore
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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