VSCode_Go拉取扩展包失败处理办法

VSCode_Go扩展包拉去失败

fatal: unable to access 'https://github.com/davecgh/go-spew/': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

解决办法

取消证书认证

git config --global http.sslVerify "false"
OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

取消代理

git config --global --unset https.proxy

重新拉去即可