Git 配置
* 简介
命令行查看配置
* 查看帮助 git config --help
* 查看全局配置 git config --global --list
* 查看系统配置 git config --system --list
* 查看当前配置 git config --local --list
权重 ------ 仓库>全局>系统
全局配置
安装 Git 后 ,首先要配置的是全局的用户名和邮箱📮
命令行配置如下:
git config --global user.name "username"
git config --global user.email demo@example.com