Github提交了';没有证实

Github提交了';没有证实,git,github,Git,Github,由于某些原因,我的github提交没有正确注册 从7月份开始,该项目的十项承诺中,只有两项得到了验证并来自我本人: 在这个最近的项目中,我的任何提交都没有得到验证(在最近的提交中,我更改了本地git配置中的user.name设置,以匹配我的Github帐户): 当我在终端上键入git config user.email时,它会列出与我的Github帐户关联的正确电子邮件地址。为什么我的提交没有被识别?因此,我的贡献图看起来是空的。这仅仅是因为在执行提交时使用了错误的user.name/use

由于某些原因,我的github提交没有正确注册

从7月份开始,该项目的十项承诺中,只有两项得到了验证并来自我本人:

在这个最近的项目中,我的任何提交都没有得到验证(在最近的提交中,我更改了本地git配置中的user.name设置,以匹配我的Github帐户):


当我在终端上键入
git config user.email
时,它会列出与我的Github帐户关联的正确电子邮件地址。为什么我的提交没有被识别?因此,我的贡献图看起来是空的。

这仅仅是因为在执行提交时使用了错误的user.name/user.email

如果我显示作者/提交人姓名和电子邮件,我会得到:

D:\git\tests\WikiScraper>git log --pretty="format:%aN %ae %cN %ce"
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Zalman Kelber 62047666+ZalmanKelber@users.noreply.github.com GitHub noreply@github.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Zalman Kelber 62047666+ZalmanKelber@users.noreply.github.com GitHub noreply@github.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
Alex Kelber ZalmanKelber@gmai.com Alex Kelber ZalmanKelber@gmai.com
  • 名称错误:

    Alex Kelber 
    # instead of
    Zalman Kelber
    
    ZalmanKelber@gmai.com  
    # instead of
    ZalmanKelber@gmail.com  
    
  • 电子邮件错误:

    Alex Kelber 
    # instead of
    Zalman Kelber
    
    ZalmanKelber@gmai.com  
    # instead of
    ZalmanKelber@gmail.com  
    
如果您有,电子邮件必须是:

<project-name>@users.noreply.github.com
@users.noreply.github.com

他们网站上的“为什么捐款没有出现”的一些症状。也许可以参考一下,GitHub显然不知道“Alex Kelber”是谁。这不仅仅是名字;您会注意到,在两个验证之一中,“ZalmanKelber”是指向您的链接。很明显,你对这两个人使用了正确的身份。谢谢!昨天我把邮件改成了noreply github邮件,结果它成功了——不知怎的,我漏掉了“gmai”的打字错误。@ZalmanKelber太棒了。我已相应地编辑了答案。如果这回答了你的问题,别忘了阅读。