How to find a files age in git
You can find a files age using the git log command. As seen below
git log --diff-filter=A --follow <file>
For Example
git log --diff-filter=A --follow README.md
How it works
--diff-filter=Afilters only added files--followfollows the file through any renames it has had