diff options
author | Giteabot <teabot@gitea.io> | 2023-03-13 08:20:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 12:20:10 +0000 |
commit | fa33919e24566fb0e83e1a54616d61b69bdf93cd (patch) | |
tree | a7591013edacf575d58313a5229cfae8d93214c4 /custom | |
parent | b1162495af41e7d2da79e6c716936c2de7e5f44a (diff) | |
download | gitea-fa33919e24566fb0e83e1a54616d61b69bdf93cd.tar.gz gitea-fa33919e24566fb0e83e1a54616d61b69bdf93cd.zip |
Support reflogs (#22451) (#23438)
Backport #22451 by @philip-peterson
This PR adds support for reflogs on all repositories. It does this by
adding a global configuration entry.
Implements #14865
Signed-off-by: Philip Peterson <philip.c.peterson@gmail.com>
Co-authored-by: Philip Peterson <philip-peterson@users.noreply.github.com>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index b7875c12dd..ca0565e49f 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -2256,6 +2256,17 @@ ROUTER = console ;PULL = 300 ;GC = 60 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Git Reflog timeout in days +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;[git.reflog] +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;ENABLED = true +;EXPIRATION = 90 + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;[mirror] |