12345678# git config --global 协议.proxy 协议://ip地址:端口号git config --global http.proxy http://127.0.0.1:7890git config --global https.proxy http://127.0.0.1:7890# 取消代理git config --global --unset http.proxygit config --global --unset https.proxy 1234567#只对github.comgit config --global http.https://github.com.proxy http://127.0.0.1:7890git config --global http.https://github.com.proxy socks5://127.0.0.1:7891#取消代理git config --global --unset http.https://github.com.proxy 12git config --global --get http.proxygit config --global --get https.proxy