git 配置代理IP

因为众所周知的原因,我们需要代理IP才可以访问项目,记录一下。 其中 192.168.1.18:7070 替换为你自己的代理IP和端口即可

设置代理

git config –global https.proxy http://192.168.1.18:7070
git config –global https.proxy https://192.168.1.18:7070
git config –global http.proxy ‘socks5://192.168.1.18:7070’
git config –global https.proxy ‘socks5://192.168.1.18:7070’

 

取消代理
git config –global –unset http.proxy
git config –global –unset https.proxy

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注