git 设置和取消代理
设置git的代理:
对当前项目生效:
git config http.proxy socks5h://localhost:1080
socks5h 远端 dns 解析,socks5 本地 dns 解析。
对全局生效,加上 --global:
git config --global http.proxy socks5h://localhost:1080
取消git 代理:
对当前项目生效:
git config --unset http.proxy
对全局生效:
git config --global --unset http.proxy
https://gist.github.com/laispace/666dd7b27e9116faece6 快照