【GIT】git常见错误解决

  1. fatal: unable to access ‘https://github.com/xxx’: OpenSSL SSL_read: Connection was reset, errno 10054
git config --global http.sslVerify false
  1. fatal: unable to access ‘https://github.com/xxx/’: Failed to connect to github.com port 443 after 21105 ms: Timed out
git config --global --unset http.proxy
git config --global --unset https.proxy
  1. ! [remote rejected] main -> main (pre-receive hook declined)
    参考:https://blog.csdn.net/cljdsc/article/details/127112417

猜你喜欢

转载自blog.csdn.net/weixin_44624036/article/details/131565792