git 命令
查看系统config
git config --system --list
查看当前用户(global)配置
git config --global --list
查看当前仓库配置信息
git config --local --list
修改用户名邮箱
git config --global user.name "你的名称" 回车 git config --global user.email "你的邮箱" 回车
查看系统config
git config --system --list
查看当前用户(global)配置
git config --global --list
查看当前仓库配置信息
git config --local --list
修改用户名邮箱
git config --global user.name "你的名称" 回车 git config --global user.email "你的邮箱" 回车