I can easily find out what changed for a file since the last commit with git diff HEAD^ -- <filename> but is there an equivalent shorthand to view a diff for a particular file since it was last committed, regardless of how many commits have happened since? Or to go back N commits of that particular file?
Context: I found an error in a file and I want to track down when it snuck in. It's easy enough to get a log report for a particular file with git log -<n> <filename> to show only the commits that included changes to that file. So clearly I can just copy and paste the SHAs from that log report, but what I really want is to be able to do something like git diff ^ -- <filename> or git diff ~2 -- <filename>.
git blame? – Carl Norum Jan 22 at 21:07