gerri push git remote: ERROR: committer email address remote: ERROR: does not match your user account.
原因如题,git邮箱配置错误
修改 git config --global user.name "xxx";
git config --global user.email "xxx";
执行完后切记将之前已经做的add、commit操作reset 掉,然后再重新add、commit,因为add、commit 时已经记录下了做了该操作时的帐号信息。