send-pack: unexpected disconnect while reading sideband packet FIX RECOMMENDATION

master
someone 2024-11-29 15:19:26 +00:00
parent b4ae0b5459
commit 7fba71bd00
1 changed files with 8 additions and 0 deletions

View File

@ -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
```