我在/git/.gitconfig
[http "https://dpl.tdk.com"]
proxy = http://10.0.11.25:8080
但是当我执行git config --list
我想手动添加它,但是我不知道该怎么做,因为我没有<username>:<password>
git config --global http.proxy http://<username>:<password>@10.0.14.15:8080
答案 0 :(得分:1)
git config --global http.proxy http://10.0.14.15:8080
答案 1 :(得分:0)
您将要关闭:
git config --global http."https://dpl.tdk.com".proxy http://<username>:<password>@10.0.14.15:8080
对于<username>
和<password>
,请咨询您的网络管理员。