配置 user 信息

配置 user.nameuser.email

  1. $ git config --global user.name 'your_name'
  2. $ git config --global user.email 'your_email@domain.com'

config 的三个作用域

缺省等同于 local

  1. $ git config --local # 只对某个仓库有效
  2. $ git config --global # 对当前用户所有仓库有效
  3. $ git config --system # 对系统所有登录的用户有效
  4. # 清除设置
  5. $ git config --unset --local user.name

显示 config 的配置,加上 --list