From e0bd4882fb609be998d5d7b6b95e50869cf01e92 Mon Sep 17 00:00:00 2001 From: Ronald Bhuleskar Date: Mon, 18 Sep 2023 11:45:11 -0700 Subject: [PATCH] Documentation: Move writeChangedPaths flag from commitGraph to gc section. The flag commitGraph.writeChangedPaths is not correct. The option was introduced in commit 3b77e33 (Jul 19th) under gc section so updating the documentation to reflect it under correct section. Change-Id: Ie8f82931594ed3fd1ee3e4532d2e7475878a33a1 --- Documentation/config-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/config-options.md b/Documentation/config-options.md index 5ffe5d341..9022e21af 100644 --- a/Documentation/config-options.md +++ b/Documentation/config-options.md @@ -13,7 +13,6 @@ For details on native git options see also the official [git config documentatio | option | default | git option | description | |---------|---------|------------|-------------| -| `commitGraph.writeChangedPaths` | `false`| ⃞ | Whether bloom filter should be written to commit-graph. | | `commitGraph.readChangedPaths` | `false` | ✅ | Whether to use the changed-path Bloom filters in the commit-graph file (if it exists, and they are present). | ## __core__ options @@ -69,6 +68,7 @@ For details on native git options see also the official [git config documentatio | option | default | git option | description | |---------|---------|------------|-------------| +| `gc.writeChangedPaths` | `false`| ⃞ | Whether bloom filter should be written to commit-graph during a gc operation. | | `gc.aggressiveDepth` | `50` | ✅ | The depth parameter used in the delta compression algorithm used by aggressive garbage collection. | | `gc.aggressiveWindow` | `250` | ✅ | The window size parameter used in the delta compression algorithm used by aggressive garbage collection. | | `gc.auto` | `6700` | ✅ | Number of loose objects until auto gc combines all loose objects into a pack and consolidates all existing packs into one. Setting to 0 disables automatic packing of loose objects. |