My system is Windows 11. I am using latest git bash from 2025-06-28.
I am trying to clone the public github repository https://github.com/eringee/biodata (over HTTPS) / [email protected]:eringee/biodata (over SSH). The complete repository is a bit under 6 megabytes in size.
- It always works with https
- If I clone it in /c/dev it works with SSH 60% of the time
- If I clone it in /d/dev it works with SSH maybe 5% of the time
The failure is: it consistently gets stuck at
Cloning into 'biodata'... remote: Enumerating objects: 991, done. remote: Counting objects: 100% (293/293), done. remote: Compressing objects: 100% (172/172), done. Receiving objects: 36% (357/991) Then, after some timeout:
fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output If i don't wait until the timeout the only way I have to stop the process is through taskkill /IM git.exe /F but maybe that's just windows being windows.
I tried various settings, from an empty .gitconfig to this:
[core] askpass = compression = 0 eol = lf autocrlf = false fileMode = false ignoreStat = false packedGitLimit = 512m packedGitWindowSize = 512m [user] email = [email protected] name = Jean-Michaël Celerier [filter "lfs"] smudge = git-lfs smudge -- %f process = git-lfs filter-process required = true clean = git-lfs clean -- %f [http] postBuffer = 1548576000 maxRequestBuffer = 200M [ssh] postBuffer = 1548576000 maxRequestBuffer = 200M [pack] window = 1 deltaCacheSize = 2047m packSizeLimit = 2047m windowMemory = 2047m I am a bit at loss at what else I can try.