aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/config
diff options
context:
space:
mode:
authorCorentin Garcia <corenting@gmail.com>2023-05-13 09:30:02 +0000
committerJunio C Hamano <gitster@pobox.com>2023-05-14 21:51:33 -0700
commit0aefe4c8412087f8cf02f5cfcdde4f827a76c6d7 (patch)
treead4deae71ec85234e0bdfeb6aa1427aea5ce142b /Documentation/config
parent0d1bd1dfb37ef25e1911777c94129fc769ffec38 (diff)
downloadgit-0aefe4c8412087f8cf02f5cfcdde4f827a76c6d7.tar.gz
doc/git-config: add unit for http.lowSpeedLimit
Add the unit (bytes per second) for http.lowSpeedLimit in the documentation. Signed-off-by: Corentin Garcia <corenting@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config')
-rw-r--r--Documentation/config/http.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/config/http.txt b/Documentation/config/http.txt
index afeeccfbfa..51a70781e5 100644
--- a/Documentation/config/http.txt
+++ b/Documentation/config/http.txt
@@ -246,8 +246,9 @@ significantly since the entire buffer is allocated even for small
pushes.
http.lowSpeedLimit, http.lowSpeedTime::
- If the HTTP transfer speed is less than 'http.lowSpeedLimit'
- for longer than 'http.lowSpeedTime' seconds, the transfer is aborted.
+ If the HTTP transfer speed, in bytes per second, is less than
+ 'http.lowSpeedLimit' for longer than 'http.lowSpeedTime' seconds,
+ the transfer is aborted.
Can be overridden by the `GIT_HTTP_LOW_SPEED_LIMIT` and
`GIT_HTTP_LOW_SPEED_TIME` environment variables.