配置用户名和邮箱地址:
git config --global user.name 'your_name'
git config --global user.email 'your_email@domain.com'
这个配置会存储在本地的C:\Users\用户名.gitconfig 文件。
参数:
- global:对当前用户所有仓库有效
- local:只对某个仓库有效
- system:对系统所有登录的用户有效
查看config配置
git config --list --global
git config --list --local
git config --list --system