When I clone a git repository using \"git clone ...\" command all cloned files in my local repository have the same modification time with date and time when
git clone ...
Adding to the list of one-liners ...
for f in $(git ls-files) ; do touch -d $(git log -1 --format='%aI' "$f") "$f" ; done