Git
报错解决
unable to access 'https://github.com/HkwJsxl/PythonFullStack.git/': OpenSSL SSL_read: Connection was reset, errno 10054
git config --global http.sslVerify "false"
设置和取消代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
git config --global --unset http.proxy
git config --global --unset https.proxy
标签:git,http,--,global,Git,https,config
From: https://www.cnblogs.com/hkwJsxl/p/17053901.html