You can use git log --pretty="%ct %H" -- foo.bar
, which will give you something like:
1322212187 f75e724eec4e11a720d4620b3ca09eff91bb754e
1311666567 d6b578f1b778c67d78322d914d3ab46e02d12f6c
1311584563 cb76c3e39553cf20c9e96ad3d2c963b905d19180
1311321178 bec391005805ca01e9c7b11032b456d426f4fa52
1311321089 b29afbf8c4ca7e8f178cec981b5d3d14f0abeb15
1311081641 74d5747f2094a8f1696344c6c2b94244e52c7cc9
The first column is the commit (unix) timestamp, the second is the commit's SHA. You may change the date format if you want something else ('%ct
' in the --pretty
argument, RTFM to see options) if you like. From this, it'd be easy to write git commands to check out that specific revision of that specific file and copy it with your naming convention using shellscript - left as an exercise to the reader.