你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

github 设置代理

2022/1/2 10:55:32

http/https协议

//设置代理(clone https://前缀的repo会走代理)

git config --global http.proxy 'http://127.0.0.1:1080'

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

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 --unset http.proxy
git config --global --unset https.proxy