Git push fails with “fatal: early EOF” when PUSHing but only on one file

前端 未结 3 479
名媛妹妹
名媛妹妹 2020-12-16 15:43

When I try adding textures and text files to my repo it all works, but when I try adding a .blend file I get this error. I\'ve tried a bunch of things I found here and on go

3条回答
  •  生来不讨喜
    2020-12-16 16:20

    (This answer is a workaround, not a solution.)

    I've just had the same problem (can't push my changes anymore using TortoiseGit/msysgit). Since the problem occurs during unpacking, it can be avoided by disabling compression:

    1. Context Menu on the folder/TortoiseGit/Settings
    2. "Edit local .git/config"
    3. Add compression = 0 to the [core] section.

    Obviously, disabling compression might affect performance, so use this workaround at your own discretion.

提交回复
热议问题