简体   繁体   中英

I can't push commit to github repository

I can't push my game files to git repository. I have a github pro account. I set git config http.postBuffer 524288000, sslVerify = false and the problem still exists.

错误的屏幕截图

On commit push by sourcetree Error: rpc failed curl 56 openssl ssl_read ssl_error_syscall errno 10054

The errno value 10054 means that the remote host closed the connection. That can mean a variety of things:

  • Your connection is too slow to push all of the data, and the connection timed out.
  • Your connection is spotty and enough packets got lost that the connection was closed.
  • The remote side hung up on you in an unexpected way, perhaps due to a permissions error or being overloaded, although this would be extremely uncommon.
  • You're using some software or VM infrastructure that caused the network connection to be broken, such as an antivirus program or an old version of Vagrant.

All of these things (and more) can cause this error, but ultimately the network connection was dropped, leading to the error. Setting http.sslVerify and http.postBuffer won't help here, and the former is just weakening your security.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM