From 8608de32e9f0d042bb43504ac03949d550413b8e Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Wed, 24 Aug 2016 11:50:23 -0700 Subject: [PATCH] Config.pm: tidy up and clarify some comments Signed-off-by: Kyle J. McKay --- Girocco/Config.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Girocco/Config.pm b/Girocco/Config.pm index c8b4f04..64bb7f7 100644 --- a/Girocco/Config.pm +++ b/Girocco/Config.pm @@ -740,6 +740,7 @@ our %reserved_suffixes = ( our @throttle_classes = (); # Any tag names listed here will be allowed even if they would otherwise not be. +# Note that @allowed_tags takes precedence over @blocked_tags. our @allowed_tags = (); # Any tag names listed here will be disallowed in addition to the standard @@ -755,10 +756,12 @@ our @blocked_tags = (); # Leave undef to use the default (which should generally be fine). # Lowering this from the default can increase disk use. # Values less than 1000 * number of CPU cores will be silently ignored. +# The "girocco.redelta" config item can be used to modify this behavior on +# a per-repository basis. See the description of it in gc.sh. our $new_delta_threshold = undef; # If this is set to a true value, then core.packedGitWindowSize will be set -# to 1 MiB the same as if Git was compiled with NO_MMAP set. If this is NOT +# to 1 MiB (the same as if Git was compiled with NO_MMAP set). If this is NOT # set, core.packedGitWindowSize will be set to 32 MiB (even on 64-bit) to avoid # memory blowout. If your Git was built with NO_MMAP set and will not work # without NO_MMAP set, you MUST set this to a true value! -- 2.11.4.GIT