diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-10-25 18:40:20 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-25 18:40:20 -0700 |
commit | aa06b4d3f43be3879556361768a07934f23ac230 (patch) | |
tree | 897ec81a3b69366c46a07bbe15956cb577b6dec7 /Documentation | |
parent | 0ee10febe0e0b745e25a25bbfc3cccdea9f4ba3e (diff) | |
parent | 77e3efbf43a1060049121350cc3ae8c208e77d57 (diff) | |
download | git-aa06b4d3f43be3879556361768a07934f23ac230.tar.gz git-aa06b4d3f43be3879556361768a07934f23ac230.tar.xz |
Merge branch 'jc/receive-pack-auto'
* jc/receive-pack-auto:
receive-pack: run "gc --auto --quiet" and optionally "update-server-info"
gc --auto --quiet: make the notice a bit less verboase
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 5a8f57cbf..d1e2120e1 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1324,6 +1324,11 @@ rebase.stat:: Whether to show a diffstat of what changed upstream since the last rebase. False by default. +receive.autogc:: + By default, git-receive-pack will run "git-gc --auto" after + receiving data from git-push and updating refs. You can stop + it by setting this variable to false. + receive.fsckObjects:: If it is set to true, git-receive-pack will check all received objects. It will abort in the case of a malformed object or a @@ -1359,6 +1364,10 @@ receive.denyNonFastForwards:: even if that push is forced. This configuration variable is set when initializing a shared repository. +receive.updateserverinfo:: + If set to true, git-receive-pack will run git-update-server-info + after receiving data from git-push and updating refs. + remote.<name>.url:: The URL of a remote repository. See linkgit:git-fetch[1] or linkgit:git-push[1]. |