git如何针对不同IP设置不同代理

cd ~

gedit .gitconfig

然后在编辑器中加入如下:

全局代理

[http]

proxy=http://name:[email protected]:port

[https]

proxy=http://name:[email protected]:port

要指定IP的代理(以下为无代理设置)

[http "http://192.168.0.1:port"]

proxy =

[https "http://192.168.0.1:port"]

proxy =


如果不想配置,也可以直接命令行:
git clone -c http.proxy=http://name:[email protected]:port https://github.com/npm/cli.git



create at 2017/10/21 16:59:19

你可能感兴趣的:(git如何针对不同IP设置不同代理)