git 修改 email

https://blog.csdn.net/qq_29846663/article/details/73498853

查看email

% cat ~/.gitconfig
[user]
email = a@bc.com
[credential]
helper = store
[http]
sslverify = false

修改提交name和email
(1)修改  全局的gitconfig,适用于当前登陆用户
  $git config --global user.email "xiaoming1@xxx.com"
 
原文地址:https://www.cnblogs.com/jxba/p/14684487.html