# 查看当前git 的设置
git config --global -l
# 设置代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
http://也可以改成sockets5://,但是区别在于:socks5不支持通过pubkey免密登录github,每次提交代码只能输入用户名和密码。http可以支持免密登录。
# 取消代理:
git config --global --unset http.proxy
git config --global --unset https.proxy