Age of git tracked file II
Goal
Identify the last time an arbitrary line (let's say line 1) was changed for every file in the repository.
Step 1
Try and use blame to identify changes to the first line only:
$ git blame -L 1,1 -- README ^193d722 (Paul Schwendenman 2012-07-23 16:51:03 +0200 1) ======================
Grab …