1、查看全局用户名和邮箱
$ git config --global user.name
$ git config --global user.email
2、修改某git仓库的用户名和邮箱
在该仓库目录下,提交以下命令
$ git config user.name ${your name}
$ git config user.email ${your email}
3、查看验证
可以先用命令查看用户名修改是否成功
$ git config --local --list
标签:git,--,用户名,user,邮箱,config
From: https://www.cnblogs.com/capybara-lsq/p/18066000