summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2017-02-26 10:30:16 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2017-02-26 10:30:16 +0100
commit69f7eb115a0a48d4d2808708bcfef9eaf292f64c (patch)
treee8e4ac633b88099b6836ba3f637b0ab2b1d6a472 /doc
parentfdd932ff8d5e5899cfeae9a8b29011fa2cf9d439 (diff)
parent5fd417d70154470d145c83a4b60693c8d877b016 (diff)
downloadaur-69f7eb115a0a48d4d2808708bcfef9eaf292f64c.tar.gz
aur-69f7eb115a0a48d4d2808708bcfef9eaf292f64c.tar.xz
Merge branch 'master' into maint
Diffstat (limited to 'doc')
-rw-r--r--doc/git-interface.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/git-interface.txt b/doc/git-interface.txt
index 14ff0c5d..475fda66 100644
--- a/doc/git-interface.txt
+++ b/doc/git-interface.txt
@@ -81,8 +81,8 @@ the GIT_NAMESPACE environment variable accordingly before forwarding a request.
An example configuration for nginx and fcgiwrap can be found in the INSTALL
instructions in the top-level directory.
-Further Configuration
----------------------
+Further Configuration and Administration
+----------------------------------------
When using Git namespaces, Git advertises refs outside the current namespace as
so-called "have" lines. This is normally used to reduce traffic but it has the
@@ -94,3 +94,10 @@ In order to omit these advertisements, one can add the strings "^refs/",
"!refs/" and "!HEAD" to the transfer.hideRefs configuration setting. Note that
the order of these patterns is important ("^refs/" must come first) and that
Git 2.7 or newer is required for them to work.
+
+Since garbage collection always affects all objects (from all namespaces), it
+is also recommended to disable automatic garbage collection by setting
+receive.autogc to false. Remember to periodically run `git gc` manually or
+setup a maintenance script which initiates the garbage collection if you follow
+this advice. For gc.pruneExpire, we recommend "3.months.ago", such that commits
+that became unreachable by TU intervention are kept for a while.