git设置和取消代理解决github的push和clone无法进行的问题
# 设置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:7891
git config --global https.proxy https://127.0.0.1:7891
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
正文到此结束
- 本文标签: Linux Java
- 本文链接: https://www.wangwenzhi.top/article/12
- 版权声明: 本文由王开心原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权