查看,添加和删除GIT配置的正确姿势

查看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

 配置GIT第三方编辑器

git config --global core.editor D:/Notepad++/notepad++.exe

 

posted @ 2016-07-25 14:05  StoneFeng  阅读(2909)  评论(0编辑  收藏  举报