the file • git log -p [filename] #Shows commits for the file with changes • git log --follow -p [filename] #Shows commits for the file including renames • git blame [filename] #Shows author and commit per line of the file • git blame -L 1,3 [filename] #Shows author and commit from line 2 to line 3 • git commit --amend -m "More changes - now correct" #To amend changes to previous commit before pushing