config的作用域

# local 只对单个仓库有效
git config --local
# local 对当前系统用户所有仓库有效
git config --global
# local 对系统所有用户仓库有效
git config --system

查看config的配置

# 显示所有作用域下的配置
git config --list
# 显示global作用域下的配置
git config --list --global

配置用户信息


# 配置global作用域下的用户信息
git config --global user.name "yourname"
git config --global user.email "youremail"