设置代理
#http代理
git config --global http.proxy 'socks5://127.0.0.1:1086'
#https代理
git config --global https.proxy 'socks5://127.0.0.1:1086'取消代理
#取消http代理
git config --global --unset http.proxy
#取消https代理
git config --global --unset https.proxy #http代理
git config --global http.proxy 'socks5://127.0.0.1:1086'
#https代理
git config --global https.proxy 'socks5://127.0.0.1:1086'#取消http代理
git config --global --unset http.proxy
#取消https代理
git config --global --unset https.proxy
评论已关闭