解决github pull/push 超时问题
Contents
步骤:
- 查看翻墙软件的代理端口
- 修改git配置
全局
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
单个项目
git config --local http.proxy http://127.0.0.1:7890
git config --local https.proxy https://127.0.0.1:7890
只对 GitHub 进行代理
git config --global http.https://github.com.proxy https://127.0.0.1:7890
git config --global https.https://github.com.proxy https://127.0.0.1:7890
socks5代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:7890
git config --global https.https://github.com.proxy socks5://127.0.0.1:7890
查看已有配置
git config --global -l
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy