List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH] contrib/hooks: add sample post-receive hook using agefile
@ 2014-12-23 14:40 john
  2014-12-23 15:15 ` mailings
  2015-08-12 12:06 ` Jason
  0 siblings, 2 replies; 9+ messages in thread
From: john @ 2014-12-23 14:40 UTC (permalink / raw)


One of the most frequent questions on the mailing list relates to the
idle time in the repository list.  The answer to this is to use the
"agefile" feature to calculate the time of the last change whenever the
repository receives changes.

Add a sample post-receive hook in a new "contrib" directory so that we
can just point people at the repository in the future.

Signed-off-by: John Keeping <john at keeping.me.uk>
---
 contrib/hooks/post-receive.agefile | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100755 contrib/hooks/post-receive.agefile

diff --git a/contrib/hooks/post-receive.agefile b/contrib/hooks/post-receive.agefile
new file mode 100755
index 0000000..2f72ae9
--- /dev/null
+++ b/contrib/hooks/post-receive.agefile
@@ -0,0 +1,19 @@
+#!/bin/sh
+#
+# An example hook to update the "agefile" for CGit's idle time calculation.
+#
+# This hook assumes that you are using the default agefile location of
+# "info/web/last-modified".  If you change the value in your cgitrc then you
+# must also change it here.
+#
+# To install the hook, copy (or link) it to the file "hooks/post-receive" in
+# each of your repositories.
+#
+
+agefile="$(git rev-parse --git-dir)"/info/web/last-modified
+
+mkdir -p "$(dirname "$agefile")" &&
+git for-each-ref \
+	--sort=-authordate --count=1 \
+	--format='%(authordate:iso8601)' \
+	>"$agefile"
-- 
2.2.1.286.gdf3164c



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-08-12 15:04 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-23 14:40 [PATCH] contrib/hooks: add sample post-receive hook using agefile john
2014-12-23 15:15 ` mailings
2014-12-23 15:48   ` john
2014-12-23 16:12     ` mailings
2015-08-12 10:54       ` john
2015-08-12 12:05         ` Jason
2015-08-12 12:06 ` Jason
2015-08-12 13:41   ` Jason
2015-08-12 15:04     ` john

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).