From 7fba71bd00dd86cab3902a6c43cbf93f09e49b59 Mon Sep 17 00:00:00 2001 From: someone Date: Fri, 29 Nov 2024 15:19:26 +0000 Subject: [PATCH] send-pack: unexpected disconnect while reading sideband packet FIX RECOMMENDATION --- ru/HELP.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ru/HELP.md b/ru/HELP.md index f130202..a8257ee 100644 --- a/ru/HELP.md +++ b/ru/HELP.md @@ -31,3 +31,11 @@ git clone http://git.community.i2p/community/docs.git ```bash git config --global --unset http.http://git.community.i2p.proxy ``` + +--- + +Из-за медленного соединения, при отправке локальных изменений, локальное приложение гит может обрывать операцию по таймауту (сообщение вроде `send-pack: unexpected disconnect while reading sideband packet`). Чтобы минимизировать возникновение этой проблемы, следует увеличить размер буфера (например, до 500МБ - с запасом): + +```bash +git config --global http.postBuffer 524288000 +``` \ No newline at end of file