diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-03-23 22:09:30 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-03-23 22:09:30 +0100 |
commit | bfce3e7b9290a8fe8c4ffc97d6b1e60e041db4f1 (patch) | |
tree | 09dfb2333e77c6813e03e6d7ed0b9eb9ae76dafe /Documentation | |
parent | Merge branch 'ds/doc-maintenance-synopsis-fix' (diff) | |
parent | repack: add config to skip updating server info (diff) | |
download | git-bfce3e7b9290a8fe8c4ffc97d6b1e60e041db4f1.tar.xz git-bfce3e7b9290a8fe8c4ffc97d6b1e60e041db4f1.zip |
Merge branch 'ps/repack-with-server-info'
"git repack" learned a new configuration to disable triggering of
age-old "update-server-info" command, which is rarely useful these
days.
* ps/repack-with-server-info:
repack: add config to skip updating server info
repack: refactor to avoid double-negation of update-server-info
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config/repack.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/config/repack.txt b/Documentation/config/repack.txt index 9c413e177e..41ac6953c8 100644 --- a/Documentation/config/repack.txt +++ b/Documentation/config/repack.txt @@ -25,3 +25,8 @@ repack.writeBitmaps:: space and extra time spent on the initial repack. This has no effect if multiple packfiles are created. Defaults to true on bare repos, false otherwise. + +repack.updateServerInfo:: + If set to false, linkgit:git-repack[1] will not run + linkgit:git-update-server-info[1]. Defaults to true. Can be overridden + when true by the `-n` option of linkgit:git-repack[1]. |