How are commits counted by the GitHub contributions graph?

前端 未结 2 1181
面向向阳花
面向向阳花 2020-11-27 23:35

How are contributions in the GitHub Contributions graph on my profile counted? (The one with the green dots.) Does whether a commit is counted or not depend on the username

相关标签:
2条回答
  • 2020-11-28 00:01

    Make sure setting your email in local configuration.

    git config --global user.name "kimcrab"
    git config --global user.email "kimcrab89@gmail.com"
    
    0 讨论(0)
  • 2020-11-28 00:06

    GitHub has an article about this on their site. See Why are my contributions not showing up on my profile? Regarding commits, the article says:

    Commits

    Commits will appear on your contributions graph if they meet all of the following conditions:

    • The commits were made within the past year.
    • The email address used for the commits is associated with your GitHub account.
    • The commits were made in a standalone repository, not a fork.
    • The commits were made:
      • In the repository's default branch (usually master)
      • In the gh-pages branch (for repositories with Project Pages sites)

    In addition, at least one of the following must be true:

    • You are a collaborator on the repository or are a member of the organization that owns the repository.
    • You have forked the repository.
    • You have opened a pull request or issue in the repository.
    • You have starred the repository.

    You can associate multiple email addresses with your GitHub account from your email settings page.

    0 讨论(0)
提交回复
热议问题