github使用常见错误集萃

错误提示the remote end hung up unexpectedly Everything up-to-date:

git push时出现错误 the remote end hung up unexpectedly Everything up-to-date,导致代码无法成功上传。

原因是因为自己的git库上面有一些数据导致整个git库比较大,而curl的postBuffer 默认值较小,所以出现了这个错误。

解决方法:

默认 Git 设置 http post 的缓存为 1MB,使用命令将git的缓存设为500M,重新配置一下postBuffer值

方法1:命令行输入

$ git config --global http.postBuffer 524288000

方法2:直接在配置文件中添加参数即可.

windows:

在 .git/config 文件中加入

[http]
postBuffer = 524288000

linux:

$ git config http.postBuffer 524288000

错误提示schannel: failed to receive handshake, SSL/TLS connection failed

这个错误解决方法:

git config --global http.sslBackend "openssl"

同时打开科学上网工具,就可以git push 文件了.

  • QQ群:253510359
  • 建议:VPS商家层出不穷,根据需要购买,切莫剁剁剁!
  • 评测:很多VPS虽已评测,但网络环境改变稳定性,速度也会随之改变.评测只能作为一般性参考.不负任何法律,道义责任.
  • 申明:所有vps,域名,服务器优惠信息均来自网络公开内容,由于水平有限不免有谬误.请以官方为准.
标签:,