Git clone changes file modification time
Solution 1:
Git does not record timestamp for the files, since it is a Distributed VCS (meaning the time on your computer can be different from mine: there is no "central" notion of time and date)
The official argument for not recording that metadata is explained in this answer.
But you can find scripts which will attempt to restore a meaningful date, like this one (or a simpler version of the same idea).
Solution 2:
You can retrieve the last modification date of all files in a Git repository (last commit time). See How to retrieve the last modification date of all files in a Git repository.
Then use the touch command change the modification date:
git ls-tree -r --name-only HEAD | while read filename; do
unixtime=$(git log -1 --format="%at" -- "${filename}")
touchtime=$(date -d @$unixtime +'%Y%m%d%H%M.%S')
touch -t ${touchtime} "${filename}"
done
Also see my gist here.
Solution 3:
Another option for resetting the mtime is git-restore-mtime.
sudo apt install git-restore-mtime # Debian/Ubuntu example
git clone <myurl>
cd <mydir>
git restore-mtime