Mercurial > self-hosted
comparison cgit/post-receive.agefile @ 5:19a4c3672796 default tip
RE:重新新增Cgit配置文件
| author | Franklin Schmit <meokcin@gmail.com> |
|---|---|
| date | Wed, 04 Sep 2024 08:15:23 +0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 4:4977c0f8b002 | 5:19a4c3672796 |
|---|---|
| 1 #!/bin/sh | |
| 2 # | |
| 3 # An example hook to update the "agefile" for CGit's idle time calculation. | |
| 4 # | |
| 5 # This hook assumes that you are using the default agefile location of | |
| 6 # "info/web/last-modified". If you change the value in your cgitrc then you | |
| 7 # must also change it here. | |
| 8 # | |
| 9 # To install the hook, copy (or link) it to the file "hooks/post-receive" in | |
| 10 # each of your repositories. | |
| 11 # | |
| 12 | |
| 13 agefile="$(git rev-parse --git-dir)"/info/web/last-modified | |
| 14 | |
| 15 mkdir -p "$(dirname "$agefile")" && | |
| 16 git for-each-ref \ | |
| 17 --sort=-authordate --count=1 \ | |
| 18 --format='%(authordate:iso8601)' \ | |
| 19 >"$agefile" |
