840

Is there a way to go through different commits on a file. Say I modified a file 5 times and I want to go back to change 2, after I already committed and pushed to a repository.

In my understanding the only way is to keep many branches, have I got that right? If I'm right I'm gonna have hundreds of branches in a few days, so I'm probably not understanding it really.

Could anyone clear that up please?

3
  • 1
    Do you want to revert the file back to change two permanently, or do you temporarily want to pull out change 2 to see what the file looked like at the time?
    – Jim Hurne
    Commented Apr 28, 2010 at 23:55
  • I still use SVN daily and git only a little so I can't help with your question - but thought you might be interested in this resource - the book 'Pro Git' is available online here - progit.org/book I own and have read the book - it is excellent, too bad I don't get to use git at the moment sounds like you just need to get a historical version of your file and then recommit the old version, not branch?
    – house9
    Commented Apr 28, 2010 at 23:58
  • @Jim Hurne: Yes, I want to revert the file back permantently @house9: Thanks I'll take a look at that book. The historical bit sounds good, how is it done? Commented Apr 29, 2010 at 0:05

5 Answers 5

1143

Let's start with a qualitative description of what we want to do (much of this is said in Ben Straub's answer). We've made some number of commits, five of which changed a given file, and we want to revert the file to one of the previous versions. First of all, git doesn't keep version numbers for individual files. It just tracks content - a commit is essentially a snapshot of the work tree, along with some metadata (e.g. commit message). So, we have to know which commit has the version of the file we want. Once we know that, we'll need to make a new commit reverting the file to that state. (We can't just muck around with history, because we've already pushed this content, and editing history messes with everyone else.)

So let's start with finding the right commit. You can see the commits which have made modifications to given file(s) very easily:

git log path/to/file

If your commit messages aren't good enough, and you need to see what was done to the file in each commit, use the -p/--patch option:

git log -p path/to/file

Or, if you prefer the graphical view of gitk

gitk path/to/file

You can also do this once you've started gitk through the view menu; one of the options for a view is a list of paths to include.

Either way, you'll be able to find the SHA1 (hash) of the commit with the version of the file you want. Now, all you have to do is this:

# get the version of the file from the given commit
git checkout <commit> path/to/file
# and commit this modification
git commit

(The checkout command first reads the file into the index, then copies it into the work tree, so there's no need to use git add to add it to the index in preparation for committing.)

If your file may not have a simple history (e.g. renames and copies), see VonC's excellent comment. git can be directed to search more carefully for such things, at the expense of speed. If you're confident the history's simple, you needn't bother.

11
  • 17
    Shouldn't you use also -C or --find-copies-harder to detect renames and copies, plus --follow to continue listing the history of a file beyond renames? Given the emphasis of your answer on file content, it might be good to complete it by mentioning its natural consequence: the inference aspect (see stackoverflow.com/questions/612580/…)
    – VonC
    Commented Apr 29, 2010 at 4:00
  • 3
    Fantastic explanation. Not only did you answer the question perfectly, you also furthered my understanding. I'd never seen gitk before either - amazing! Commented Mar 25, 2013 at 21:49
  • One nice thing to add is that if the change you're reverting is a file rename, you'll need a different workflow. You'll need something like git log --diff-filter=D --summary in order to find the desired commit, and remove the file with the new name. Commented Dec 23, 2013 at 22:50
  • 2
    Will git checkout head~3 filename not work?
    – Ed Randall
    Commented Sep 27, 2016 at 12:16
  • 2
    @EdRandall Sure, HEAD~3 will work, if the commit you want is the one three before HEAD. In general you may not be totally confident, so I covered how to figure out which commit you actually want.
    – Cascabel
    Commented Sep 27, 2016 at 15:23
123

Git is very flexible. You shouldn't need hundreds of branches to do what you are asking. If you want to revert the state all the way back to the 2nd change (and it is indeed a change that was already committed and pushed), use git revert. Something like:

git revert a4r9593432 

where a4r9593432 is the starting characters of the hash of the commit you want to back out.

If the commit contains changes to many files, but you just want to revert just one of the files, you can use git reset (the 2nd or 3rd form):

git reset a4r9593432 -- path/to/file.txt
# the reverted state is added to the staging area, ready for commit
git diff --cached path/to/file.txt        # view the changes
git commit
git checkout HEAD path/to/file.txt        # make the working tree match HEAD           

But this is pretty complex, and git reset is dangerous. Use git checkout <hash> <file path> instead, as Jefromi suggests.

If you just want to view what the file looked like in commit x, you can use git show:

git show a4r9593432:path/to/file.txt

For all of the commands, there are many ways to refer to a commit other than via the commit hash (see Naming Commits in the Git User Manual).

6
  • 6
    Won't the git revert just back out one change though -- not "revert the state all the way back to the 2nd change"? Commented Apr 29, 2010 at 0:44
  • 1
    @Alex - Yes, you are correct. Good catch! Only the changes introduced in the given commit are backed out. It is painful, but you could use multiple calls to get revert to back out all of the commits to a certain point in time. Or you can do something like what you suggest in your answer with git diff and git apply.
    – Jim Hurne
    Commented Apr 29, 2010 at 2:03
  • 15
    Also, git revert is not for one specific file, but for the whole repository. Commented Mar 4, 2015 at 13:01
  • @PaŭloEbermann Yes, but it will only revert the files affected in the specified commit. Commented Jun 23, 2017 at 7:22
  • 8
    Can we have our cake and eat it to? Is it possible to revert a single commit from a single file and leave other future changes in place? Commented Jul 17, 2018 at 15:17
11

Git doesn't think in terms of file versions. A version in git is a snapshot of the entire tree.

Given this, what you really want is a tree that has the latest content of most files, but with the contents of one file the same as it was 5 commits ago. This will take the form of a new commit on top of the old ones, and the latest version of the tree will have what you want.

I don't know if there's a one-liner that will revert a single file to the contents of 5 commits ago, but the lo-fi solution should work: checkout master~5, copy the file somewhere else, checkout master, copy the file back, then commit.

1
  • 7
    The one-liner you're asking for is checkout on a single file instead of the entire work tree; see my answer.
    – Cascabel
    Commented Apr 29, 2010 at 0:27
8

You can take a diff that undoes the changes you want and commit that.

E.g. If you want to undo the changes in the range from..to, do the following

git diff to..from > foo.diff  # get a reverse diff
patch < foo.diff
git commit -a -m "Undid changes from..to".
6
  • 3
    A few problems. If you want to create a patch, it needs to be the patch for only the file in question (git diff to..from path/to/file). To apply a patch, you should use git apply instead of patch. And there's no need to use a patch at all in this case; see my answer.
    – Cascabel
    Commented Apr 29, 2010 at 0:28
  • Still helpful, as you can edit the diff (ie. revert only part of changes).
    – kgadek
    Commented Aug 1, 2013 at 12:18
  • 3
    @Jefromi There is absolutely a reason to use a patch, because your answer is NOT equivalent to revert: it will obliterate all changes since the offending commit, not just undo the changes of that one commit as git revert would do. A file- and commit- specific patch is a far more precise and semantically correct change. Commented May 4, 2015 at 23:51
  • @JohnWhitley This question is explicitly about reverting a file to a previous version. It's in the title. I totally agree that if you want to undo just a single commit of many, my answer is wrong, but fortunately that wasn't the question I was answering here.
    – Cascabel
    Commented May 5, 2015 at 0:04
  • 2
    @Jefromi This answer doesn't do the same as your answer. This answer reverts one commit. Your answer reverts one file. This one happens to be exactly what I needed.
    – Rudie
    Commented Sep 7, 2015 at 13:31
8

Extracted from here: http://git.661346.n2.nabble.com/Revert-a-single-commit-in-a-single-file-td6064050.html

 git revert <commit> 
 git reset 
 git add <path> 
 git commit ... 
 git reset --hard # making sure you didn't have uncommited changes earlier 

It worked very fine to me.

4
  • 1
    Intuitively, before reading your answer, I did git revert, git reset and git add, then I searched before commiting to see if I was doing right. +1 for your answer! Commented Nov 17, 2015 at 12:07
  • Do you know if reverting a single file that way, git recognizes I'm actually reverting a file? Commented Nov 17, 2015 at 12:08
  • gitk shows as new file Commented Nov 17, 2015 at 12:16
  • @AntonioViniciusMenezesMedei: It doesn't work, as you discovered. It shows you reverting all the changes and adding all the other files as if you did them fresh.
    – Joshua
    Commented Jan 22, 2019 at 23:47

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