Git设置HTTP/HTTPS代理服务器
git config --global http.proxy http://localhost:port git config --global https.proxy https://localhost:port
其中,localhost为服务器地址,port为服务端口
实例
这里以设置本地代理服务127.0.0.1:1080为例。
git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080