Commiter email address does not match in IntelliJ even changing it to correct one

前端 未结 5 1727
余生分开走
余生分开走 2021-01-31 04:04

When I try to push my commits from git repository to gerrit remote repository from Linux environment in IntelliJ idea I get the following error:

remote: ERROR:           


        
5条回答
  •  天命终不由人
    2021-01-31 04:28

    you need to reconfigure your email

    $ git config user.email 
    $ git commit --amend --reset-author
    

    git commit --amend updates your last commits

提交回复
热议问题