Git doesn't save file change timestamps.
Since GNU Make use these file meta information for automatic buildings we have to restore this information after clone or checkout.
This hook will manage it automatically.
Add following code in .git/hooks/post-checkout
:
#!/bin/sh
# Import global config
source etc/global.cfg
# Only when checkout a branch not a single file or directory
if [ -s "$GIT_CACHE_META_FILE" ] && [ "$3" == '1' ]; then
# apply change date for all files
make/scripts/git-cache-meta.sh --apply
fi
To be able to handle with special characters in file names add the following in .git/config
[core]
filemode = true
logallrefupdates = true
precomposeunicode = true
quotepath = false