]> git.phdru.name Git - git-scripts.git/blob - hooks/post-checkout/set-last-commit-date-all
e950e4cbad05c10027c7374f0beb139ff9b8a8a6
[git-scripts.git] / hooks / post-checkout / set-last-commit-date-all
1 #!/bin/sh
2
3 # post-checkout hook that changes timestamps on all 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    find . \( -name .git -type d -prune \) -o \
13       -exec touch --date="$commit_date" '{}' \+
14 fi
15
16 exit 0