驗(yàn)證當(dāng)前本地屬性:
本地配置
git config --local --list
image.png
查詢用戶名/郵箱
git config user.name/email
image.png
全局修改
git config --global user.name 你的目標(biāo)用戶名
git config --global user.email 你的目標(biāo)郵箱名
修改當(dāng)前的項目
git config user.name 你的目標(biāo)用戶名
git config user.email 你的目標(biāo)郵箱名

