vote up 10 vote down star
4

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 it's former state in the past.

Any help is greatly appreciated.

flag

3 Answers

vote up 12 vote down check

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|flag
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
1  
This doesn't work for me – Milan Babuškov Sep 23 at 8:09
Thanks, this was really helpful. – Mattew Oct 16 at 14:44
vote up 3 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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