个人信息配置
1. 配置邮箱
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
2. 查看 Config 配置信息
config 配置有system级别 global(用户级别) 和local(当前仓库)三个 设置先从system-》global-》local 底层配置会覆盖顶层配置 分别使用--system/global/local 可以定位到配置文件
系统 Config
git config --system --list
当前用户(global)配置
git config --global --list
当前仓库配置信息
git config --local --list
标签:配置,--,global,个人信息,system,git,config
From: https://www.cnblogs.com/aclq/p/17973028