查看代理配置

1
2
3
4
git config http.proxy
git config --local http.proxy
git config --global http.proxy
git config --system http.proxy

配置列表

1
2
3
4
git config --list
git config --local --list
git config --global --list
git config --system --list

优先级

1
system-》global-》local

参考

https://www.cnblogs.com/merray/p/6006411.html