How can I view the change history of an individual file in Git, complete details with what has changed?
I have got as far as:
git log -- [filename]
For this I'd use:
gitk [filename]
or to follow filename past renames
gitk --follow [filename]