git push报错 unexpected disconnect while reading sideband packet
应该是缓冲不够引起的,可以使用以下命令增加缓存:
git config --global http.postBuffer 1048576000
1048576000这里的单位是Byte, 也就是1G。
亲测可以了
应该是缓冲不够引起的,可以使用以下命令增加缓存:
git config --global http.postBuffer 1048576000
1048576000这里的单位是Byte, 也就是1G。
亲测可以了