git - Commiter email address does not match in IntelliJ even changing it to correct one -
when try push commits git repository gerrit remote repository linux environment in intellij idea following error:
remote: error: committer email address ***** [k remote: error: not match user account.[k
even if changed settings correct ones git , gerrit (i can see at: git config -l
console), still picks old "wrong" email.
what wrong?
you need reconfigure email
$ git config user.email <your email> $ git commit --amend --reset-author
git commit --amend
updates last commits
Comments
Post a Comment