How to retrieve the last modification date of all files in a Git repository
A simple answer would be to iterate through each file and display its modification time, i.e.: git ls-tree -r –name-only HEAD | while read filename; do echo “$(git log -1 –format=”%ad” — $filename) $filename” done This will yield output like so: Fri Dec 23 19:01:01 2011 +0000 Config Fri Dec 23 19:01:01 2011 +0000 Makefile … Read more