cd ~
gedit .gitconfig
然后在编辑器中加入如下:
全局代理
[http]
proxy=http://name:password@proxy.domain.com:port
[https]
proxy=http://name:password@proxy.domain.com: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:password@proxy.domain.com:port https://github.com/npm/cli.git
create at 2017/10/21 16:59:19
网友评论