修改commit作者名及邮箱


可以直接以CMD方式运行:

查看用户名和地址
git config user.name
git config user.email

修改用户名和地址

--修改本版本库--

git config  user.name "your name"
git config  user.email "your email"

--修改全局--
git config --global user.name "your name"
git config --global user.email "your email"

相关