Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 925 Bytes

git.md

File metadata and controls

42 lines (30 loc) · 925 Bytes

Git settings

Hooks

post-checkout

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

Git config

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