github 由于使用代理引起连接错误提示

github 提示 Failed to connect to github.com port 443:Time out

由于使用了代理 所以需要在github 全局配置文件里面增加 设置全局代理.
可以通过cmd命令 git config --global http.proxy 127.0.0.1:52700
查看是否设置成功 git config --get http.proxy.
其中IP地址和端口号8080 根据你实际使用的情况定.

schannel:next InitializeSecurityContext failed

如果github出现以上错误,可以通过cmd命令输入以下代码进行gitconfig文件配置
$ git config --global http.sslBackend “openssl”

你可能感兴趣的:(代码管理)