summaryrefslogtreecommitdiff
path: root/.config/git/hooks/post-receive.d
diff options
context:
space:
mode:
authorParabola git <git@parabola.nu>2016-07-08 00:55:19 +0000
committerParabola git <git@parabola.nu>2016-07-08 00:55:19 +0000
commit3eb16d93bf95b2a7d40fb1607622cab1e2f4b81e (patch)
tree6b971400f294f1b5b5bfd34ef93924715bdd7c75 /.config/git/hooks/post-receive.d
parent4fe7bac236d7c1895271bf15bdb9dda1253ec230 (diff)
redo hooks infrastructure (yay git 2.9 core.hooksPath)
Diffstat (limited to '.config/git/hooks/post-receive.d')
-rwxr-xr-x.config/git/hooks/post-receive.d/agefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/git/hooks/post-receive.d/agefile b/.config/git/hooks/post-receive.d/agefile
new file mode 100755
index 0000000..10fc253
--- /dev/null
+++ b/.config/git/hooks/post-receive.d/agefile
@@ -0,0 +1,9 @@
+#!/bin/bash
+set -x
+agefile="$(git rev-parse --git-dir)"/info/web/last-modified
+
+mkdir -p "$(dirname "$agefile")" &&
+git for-each-ref \
+ --sort=-committerdate --count=1 \
+ --format='%(committerdate:iso8601)' \
+ > "$agefile"