git-bash配置代理

git-bash命令提交执行命令:
"git push origin main"时发生错误:
“$ git push origin main
fatal: unable to access ‘https://github.com/satadriver/locust_server.git/’: Failed to connect to github.com port 443 after 21035 ms: Couldn’t connect to server”

明明已经开启了代理,为什么还会这样呢?因为git-bash没有使用代理呗!

设置git-bash代理的命令如下:

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

查看代理命令:

git config --global --get http.proxy
git config --global --get https.proxy

取消代理命令:

git config --global --unset http.proxy
git config --global --unset https.proxy

参考网址:
https://blog.csdn.net/zpf1813763637/article/details/128340109

你可能感兴趣的:(工具和网站,git,bash)