diff options
| author | Piotr Szlazak <piotr.szlazak@gmail.com> | 2024-10-19 16:39:57 +0000 |
|---|---|---|
| committer | Taylor Blau <me@ttaylorr.com> | 2024-10-21 15:49:35 -0400 |
| commit | bddfccead1f4a94f4029d1efeacaed0d23e2fbb4 (patch) | |
| tree | c77eb1ef8306efb28ad5dbd3374edb469125bc90 | |
| parent | The third batch (diff) | |
| download | git-bddfccead1f4a94f4029d1efeacaed0d23e2fbb4.tar.gz git-bddfccead1f4a94f4029d1efeacaed0d23e2fbb4.zip | |
doc: document how uploadpack.allowAnySHA1InWant impact other allow options
Document how setting of `uploadpack.allowAnySHA1InWant`
influences other `uploadpack` options - `allowTipSHA1InWant`
and `allowReachableSHA1InWant`.
Signed-off-by: Piotr Szlazak <piotr.szlazak@gmail.com>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
| -rw-r--r-- | Documentation/config/uploadpack.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/config/uploadpack.txt b/Documentation/config/uploadpack.txt index 16264d82a7..0e1dda944a 100644 --- a/Documentation/config/uploadpack.txt +++ b/Documentation/config/uploadpack.txt @@ -25,7 +25,11 @@ uploadpack.allowReachableSHA1InWant:: uploadpack.allowAnySHA1InWant:: Allow `upload-pack` to accept a fetch request that asks for any object at all. - Defaults to `false`. + It implies `uploadpack.allowTipSHA1InWant` and + `uploadpack.allowReachableSHA1InWant`. If set to `true` it will + enable both of them, it set to `false` it will disable both of + them. + By default not set. uploadpack.keepAlive:: When `upload-pack` has started `pack-objects`, there may be a |
