I have a Git repository with about a two years of history in it. I have single file in it, for which I wish to find all the commits, and for each commit: all the other files that were committed in it. Let's assume this file is named file.txt. I can run gitk with this file as argument:

gitk file.txt

and I do get each commit. However, browsing that tree in gitk only shows changes done to file.txt. I'd like to see what other files were changed in that commit. I can copy paste each commit SHA1 and display it, but there are over hundred of commits related to this file.

I notice that "comments" section in bottom-right part of screen is empty (only shows text "Comments"). Maybe a list of files could be shown there?

link|improve this question

For EOL else where see unix.stackexchange.com/questions/10277/… – Thorbjørn Ravn Andersen May 2 '11 at 11:33
feedback

1 Answer

up vote 5 down vote accepted

In the command line,

git log -p --full-diff file.txt

will output what you want.

If you must see it in gitk, invoke it with no arguments, find commit "touching path" file.txt, and the commit contains that file will be bold. And you can use the "next" and "prev" button to traverse through it.

link|improve this answer
I have edited my answer, hope it is what you want. – Iamamac Dec 29 '09 at 13:41
Excellent! Exactly what I need. Thank you very much (I'm sorry I can only upvote and accept it) – Milan Babuškov Dec 29 '09 at 22:55
feedback

Your Answer

 
or
required, but never shown

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