Please make sure you've setup your commit email address. It makes it much
easier to find out who committed something and how to contact them if
there's a problem.

You typically use the following to set your email address globally in git:

$ git config --global user.email "em...@example.com"

You can also setup different repos with different email addresses by using:

$ git config user.email "em...@example.com"

In the below example, it's much easier to follow up with the author of the
1st commit than the author of the 2nd commit:

commit b1107d2e403404337c22830a4964eefc2490ef50
Author: John Doe <j...@pivotal.io>
Date:   Tue Jun 16 12:25:30 2020 -0700

    GEODE-8888: add something new

commit e159238175766b46cbb6fe1e3459aa2da68db756
Author: John Doe <john...@users.noreply.github.com>
Date:   Tue Jun 16 10:55:16 2020 -0700

    GEODE-9999: fix something bad

For more info, see:
https://help.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address

Thanks,
Kirk

Reply via email to