vote up 8 vote down star
9

How can I view the change history of an individual file, 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 ?

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

flag

5 Answers

vote up 4 vote down check

I'd use:

 gitk filename.
link|flag
vote up 12 vote down

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 specifiy commit you can

git show HEAD

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

link|flag
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 at 16:20
vote up 5 vote down

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

git show

link|flag
vote up 0 vote down

If you're using the git GUI (on Windows) under the Repository menu you can use "View 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|flag

Your Answer

Get an OpenID
or

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