GIT Error:- expected committer email '' but found 'karan@xyz.com'

一个人想着一个人 提交于 2019-12-18 12:18:09

问题


Git push is getting rejected with the following error message:

expected committer email '' but found 'karan@xyz.com'

I have already tried:

  1. setting use properties in .gitconfig file.
  2. trying git push making different clones of same repository.
  3. setting up whole system all together after formatting it.

But none has worked. What else can I do to resolve it.


回答1:


This doesn't seem like a git limitation, but should be some kind of pre-receive hook on the remote side (the Git repository hosting service/server to which you are pushing to)

That hook seems to parse the commits and check the committer email against a specific criteria which rejects karan@xyz.com.
You should check with the remote side administrator to see what is going on.


The OP Karan Singla confirms in the comments it was an issue at the server side:

Issue got resolved. Admin re-created my account and it is working fine now.




回答2:


This worked for me

git config --global user.name "Correct Name" 
git config --global user.email name@email.com 
git commit --amend --reset-author



回答3:


This work for me :
git config --global user.name "Correct Name" 
git config --global user.email name@email.com 
git commit --amend --reset-author
it will show the screen where you can edit the commit message, after edit or keep it as it is, then press escape and then :wq and hit enter
git push



回答4:


I would suggest to open git terminal and set correct email. This worked for me when I encountered same issue.

git config --global user.email "your_correct_email@example.com"



回答5:


git config --list --show-origin

Allows you to see the file where the setting is coming from. In my case it was an unrelated git settings file somehow making it into my portable git install.




回答6:


Had a similar situation where a hook was involved, as @VonC mentioned, while trying to do the initial push (which contained commits from me and other colleagues) to a empty in-house Bitbucket Git repo. In my case it was the YACC (Yet Another Commit Checker) hook which complained, see also this Atlassian article.

But, instead of globally deactivating the hook (as suggested by the Atlassian article), I explicitly activated it for my repo with empty settings (that overrides the global hook settings for my repo), made the initial push, then again disabled the plugin in my repo (which leaves the plugin still active, but configured with the global server settings!).



来源:https://stackoverflow.com/questions/28425670/git-error-expected-committer-email-but-found-karanxyz-com

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!