Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I view the change history of an individual file in Git, complete with what has changed?

I have got as far as:

git log -- [filename]

which shows me the commit history of the file, but how do I get at the content of each of the changes?

I'm trying to make the transition from MS SourceSafe and that used to be a simple right-click → show history.

share|improve this question
2  
The Git Community Book is a great place to learn Git (since you brought up the quality of Git documentation.) – zeromodulus Dec 25 '09 at 21:02
17  
The above link is no-longer valid. This link is working today: Git Community Book – norm May 10 '10 at 8:58

14 Answers

up vote 423 down vote accepted

For this I'd use:

gitk [filename]
share|improve this answer
8  
But I rather even have a tool that combined the above with 'git blame' allowing me to browse the source of a file as it changes in time... – Egon Willighagen Apr 6 '10 at 15:50
1  
GitWeb is the answer to that. – Jonas Byström Feb 17 '11 at 17:16
4  
Unfortunately, this doesn't follow the history of the file past renames. – Dan Moulding Mar 30 '11 at 23:17
43  
I was also looking for the history of files that were previously renamed and found this thread first. The solution is to use "git log --follow <filename>" as Phil pointed out here. – Florian Gutmann Apr 26 '11 at 9:05
19  
The author was looking for a command line tool. While gitk comes with GIT, it's neither a command line app nor a particularly good GUI. – nailer Jul 18 '11 at 15:17
show 3 more comments

You can use

git log -p filename

to let git generate the patches for each log entry, see

git help log

for more options - it can actually do a lot of nice things :) To get just the diff for a specific commit you can

git show HEAD 

or any other revision by identifier. Or use gitk to browse the changes visually.

share|improve this answer
14  
Thanks! I've been looking for this simple solution for a while now. I love git, but the documentation seems to have the same basic standards as Unix man pages. That is to say, if you know what you're looking for you usually can't find the syntax unless you know more about the underlying code. – ShawnMilo Aug 13 '09 at 16:20
2  
git show HEAD shows all files, do you know how to track an individual file (as Richard was asking for)? – Jonas Byström Feb 17 '11 at 17:13
THIS is the solution. – David Jan 31 '12 at 21:56
1  
you use: git show <revision> -- filename, that will show the diffs for that revision, in case exists one. – Marcos Oliveira Feb 9 '12 at 21:44
1  
--stat is also helpful. You can use it together with -p. – Raffi Khatchadourian May 9 '12 at 22:29
show 1 more comment

git log --follow -p file

This will show the entire history of the file (including history beyond renames and with diffs for each change).

In other words, if the file named bar was once named foo, then git log -p bar (without the --follow option) will only show the file's history up to the point where it was renamed -- it won't show the file's history when it was known as foo. Using git log --follow -p bar will show the file's entire history, including any changes to the file when it was known as foo.

share|improve this answer
I find it a bit weird but you cannot use -CC flag with log --follow file or it will find nothing (git 1.7.0.4). – Mikko Rantalainen Feb 9 '12 at 12:45
3  
--stat is also helpful. You can use it together with -p. – Raffi Khatchadourian May 9 '12 at 22:29
6  
Dan's answer is the only real one! git log --follow -p file – zzeroo Sep 6 '12 at 14:11
I agree this is the REAL answer. (1.) --follow ensures that you see file renames (2.) -p ensures that you see how the file gets changed (3.) it is command line only. – Trevor Boyd Smith Sep 11 '12 at 18:54

git whatchanged -p [filename] is also equivalent to git log -p [filename] in this case.

You can also see when a specific line of code inside a file was changed with git blame [filename]. This will print out a short commit id, the author, timestamp, and complete line o code for every line in the file. This is very useful after you've found a bug and you want to know when it was introduced (or who's fault it was).

share|improve this answer
+1, but filename is not optional in command git blame filename. – rockXrock Mar 8 at 9:45

To show what revision and author last modified each line of a file:

git blame filename
share|improve this answer

If you prefer to stay text-based, you may want to use tig :

# apt-get install tig
# tig [filename]

Same as gitk but text based, with colors !

share|improve this answer
2  
Excellent text-based tool, great answer. I freaked out when I saw the dependencies for gitk installing on my headless server. Would upvote again A+++ – Tom McKenzie Oct 24 '12 at 5:28

Or:

gitx -- <path/to/filename>

if you're using gitx

share|improve this answer
For some reason my gitx opens up blank. – Igor Ganapolsky Sep 4 '11 at 16:19

Summary of other answers after reading through them and playing a bit:

The usual command line command would be

git log --follow --all -p dir/file.c

But you can also use either gitk (gui) or tig (text-ui) to give much more human-readable ways of looking at it.

gitk --follow --all -p dir/file.c

tig --follow --all -p dir/file.c

Under debian/ubuntu, the install command for these lovely tools is as expected :

sudo apt-get install gitk tig

And I'm currently using:

alias gdf='gitk --follow --all -p'

so that I can just type gdf dir to get a focussed history of everything in subdirectory dir.

share|improve this answer
1  
I think this is a great answer. Maybe you arent getting voted as well because you answer other ways (IMHO better) to see the changes i.e. via gitk and tig in addition to git. – PopcornKing Feb 25 at 17:11

If you want to see the whole history of a file, including on all other branches use:

gitk --all <filename>
share|improve this answer

If you're using the git GUI (on Windows) under the Repository menu you can use "Visualize master's History". Highlight a commit in the top pane and a file in the lower right and you'll see the diff for that commit in the lower left.

share|improve this answer

I wrote git-playback for this exact purpose

pip install git-playback
git playback [filename]

This has the benefit of both displaying the results in the command line (like git log -p) while also letting you step through each commit using the arrow keys (like gitk).

share|improve this answer

The answer I was looking for that wasn't in this thread is to see changes in files that I'd staged for commit. i.e.

git diff --cached
share|improve this answer

With the excellent Git Extensions, you go to a point in the history where the file still existed (if it have been deleted, otherwise just go to HEAD), switch to the File tree tab, right-click on the file and choose File history.

By default, it follows the file through the renames, and the Blame tab allows to see the name at a given revision.

It has some minor gotchas, like showing fatal: Not a valid object name in the View tab when clicking on the deletion revision, but I can live with that. :-)

share|improve this answer
Worth noting that this is Windows-only. – Evan Hahn May 9 at 20:39

If you are using eclipse with the git plugin, it has an excellent comparison view with history. Right click the file and select "compare with"=> "history"

share|improve this answer

protected by Kev Oct 30 '12 at 14:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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