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]
git diff -U give you a unified diff.
git diff -U
It should be colored on red and green. If it's not, run: git config color.ui auto first.
git config color.ui auto