公司内网git clone失败
1、公司git需要使用代理,使用下面方式配置代理即可
git config --global http.sslverify false //不进行ssl检查,因为公司上外网是通过代理,ssl是代理发的,不是github发的,git不认。
git config --global http.proxy "http://username:password@proxycn2.huawei.com:8080/" //如果proxycn2不成功,试试proxyhk
git config --global https.proxy "https://username:password@proxycn2.huawei.com:8080/"
git config --global credential.helper store
git config --global push.default matching
git config --global http.postBuffer 2M
2、查看配置成功
git config --global --list