欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决Git 推送 超时问题

程序员文章站 2024-03-14 13:54:40
...

git提交代理超时,大概率是因为设置了代理,比如使用了Vpn

解决方式就是关闭代理

# 取消代理
git config --global --unset http.proxy

git config --global --unset https.proxy

如需要也可以手动设置代理

# 设置ss
git config --global http.proxy 'socks5://127.0.0.1:1080'

git config --global https.proxy 'socks5://127.0.0.1:1080'

# 设置代理
git config --global https.proxy http://127.0.0.1:8888

git config --global https.proxy https://127.0.0.1:8888