gerri push git remote: ERROR: committer email address remote: ERROR: does not match your user account.
时间:2016-06-29 15:49:44
收藏:0
阅读:1234
原因如题,git邮箱配置错误
修改 git config --global user.name "xxx";
git config --global user.email "xxx";
执行完后切记将之前已经做的add、commit操作reset 掉,然后再重新add、commit,因为add、commit 时已经记录下了做了该操作时的帐号信息。
原文:http://www.cnblogs.com/boann/p/5627082.html
评论(0)