标签:
查看GIT所有配置的命令:
git config --list
查看GIT全局配置的命令:
git config --global --list
添加GIT全局配置(HTTPS代理)
git config --global https.proxy http://10.224.10.252:808
删除GIT全局配置
git config --unset --global https.proxy
标签:
原文地址:http://www.cnblogs.com/stonefeng/p/5703272.html