]> git.phdru.name Git - git-scripts.git/blob - hooks/post-checkout/set-last-commit-date
a39bca468b5fc4e250cd2c20e541971d6447b3bf
[git-scripts.git] / hooks / post-checkout / set-last-commit-date
1 #!/bin/sh
2
3 # post-checkout hook that changes timestamps on known files
4 # to that one of the last commit (head) if branch was changed
5
6 prev_HEAD="$1"
7 new_HEAD="$2"
8 new_branch="$3"
9
10 if [ "$new_branch" = 1 ]; then
11    commit_date="`git show --format='%cD' | head -1`" &&
12    touch --date="$commit_date" `git ls-files --cached`
13 fi
14
15 exit 0