aboutsummaryrefslogtreecommitdiff
path: root/Documentation/config
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-04-23 15:05:56 -0700
committerJunio C Hamano <gitster@pobox.com>2024-04-23 15:05:56 -0700
commit5c7ffafcea5fe37d435cc684d59eee91696dfb9f (patch)
tree92cf92dfae892cb60d6fc974cda2b11a01b5fc3e /Documentation/config
parent5b7877482082698a730f1045c78cf90af544ab6c (diff)
parent7bf3057d9cf569bcbdf3c1b43cce0eacde98a20b (diff)
downloadgit-5c7ffafcea5fe37d435cc684d59eee91696dfb9f.tar.xz
Merge branch 'ps/run-auto-maintenance-in-receive-pack'
The "receive-pack" program (which responds to "git push") was not converted to run "git maintenance --auto" when other codepaths that used to run "git gc --auto" were updated, which has been corrected. * ps/run-auto-maintenance-in-receive-pack: builtin/receive-pack: convert to use git-maintenance(1) run-command: introduce function to prepare auto-maintenance process
Diffstat (limited to 'Documentation/config')
-rw-r--r--Documentation/config/receive.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/config/receive.txt b/Documentation/config/receive.txt
index c77e55b1cd..36a1e6f2d2 100644
--- a/Documentation/config/receive.txt
+++ b/Documentation/config/receive.txt
@@ -8,7 +8,7 @@ receive.advertisePushOptions::
capability to its clients. False by default.
receive.autogc::
- By default, git-receive-pack will run "git-gc --auto" after
+ By default, git-receive-pack will run "git maintenance run --auto" after
receiving data from git-push and updating refs. You can stop
it by setting this variable to false.