前言全局说明
git config --xx --xxx 参数 【汇总】
一、说明
1.1 Windows 默认证书路径
C:\Program Files\Git\etc\gitconfig
1.2 Linux 默认证书路径
/home/${USER}/.gitconfig
注意: .gitconfig 是隐藏文件,需要用 ls -a 命令才能看到
二、查看全局配置
2.1 查看全部配置
git config --list
三、查看 system 系统级配置文件
3.1 列出所有内容
git config --system --list
3.2 关闭证书校验
git config --system http.sslverify false
3.3 指定仓库登录密钥证书路径:
git config --system http.sslcainfo "D:\Git\mingw64\ssl\certs\ca-bundle.crt"
注意: 不要放到项目路径下,会泄露
四、查看 global 全局配置文件
4.1 列出所有内容
git config --global --list
五、查看 local 仓库级配置文件
4.1 列出所有内容
git config --local --list
免责声明:本号所涉及内容仅供安全研究与教学使用,如出现其他风险,后果自负。
参考、来源:
https://www.cnblogs.com/wutou/p/17769495.html