国内访问Github很慢,可以通过配置代理来加快访问速度,但是对公司内部git服务器却不能使用代理。
打开Git 配置文件
vi ~/.gitconfig
添加如下配置:
[http "https://github.com/"]
proxy = http://127.0.0.1:1081
[https "https://github.com/"]
proxy = http://127.0.0.1:1081
[http "https://my.comapnyserver.com/"]
proxy = ""