git proxy

A 1-post collection
5 年前

linux下设置git代理访问

git proxy  

设置http代理 git config --global https.proxy http://127.0.0.1:1080 设置https代理 git config --global https.proxy https://127.0.0.1:1080 取消代理 git config --global --unset http.proxy git config --global --…