I have a large git repository and I would like to find the list of files that were not modified for the long time sorted by date, I tried the command:
git log --pretty=format: --summary --before="<date>"
It gives me the list of files modified files before date
, but I would like to know all files sorted by date of last modification in descending order (the oldest files will be on top). Also the list should have only files currently present in the repository, I don't care about already deleted files.
Can anyone suggest the right command?