up vote 213 down vote favorite
75
share [g+] share [fb]

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.

link|improve this question

The Git Community Book is a great place to learn Git (since you brought up the quality of Git documentation.) – Blaine LaFreniere Dec 25 '09 at 21:02
9  
The above link is no-longer valid. This link is working today: Git Community Book – norm May 10 '10 at 8:58
I would also recommend the Pro Git Book – TrinitronX Sep 12 '11 at 19:42
feedback

8 Answers

up vote 135 down vote accepted

For this I'd use:

 gitk [filename]
link|improve this answer
5  
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
2  
Unfortunately, this doesn't follow the history of the file past renames. – Dan Moulding Mar 30 '11 at 23:17
10  
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
5  
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
feedback

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.

link|improve this answer
6  
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
1  
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
feedback

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.

link|improve this answer
feedback

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).

link|improve this answer
feedback

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

git blame filename

link|improve this answer
feedback

Or:

gitx -- <path/to/filename>

if you're using gitx

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

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.

link|improve this answer
feedback

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