Git设置Http代理,克隆github上的代码
1. 设置Http代理
由于信息安全策略限制,访问公司外部资源需要通过IT统一提供的代理(proxy.huawei.com),目前已知代理仅支持HTTP协议,无法直接代理SSH协议。
git config --global http.sslVerify false # 不进行ssl检查(因为公司上外网是通过代理,ssl是代理发的,不是github发的,git不认)
# 配置代理
git config --global http.proxy http://域账号:密码@proxy.huawei.com:8080
git config --global https.proxy https://域账号:密码@proxy.huawei.com:8080
# git config --list # 查看设置
git clone https://github.com/darxtrix/ptop.git