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

时间:2020-12-21 01:54:07

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