Private commits correctly linked to my account are missing from my contribution graph #202000
Replies: 5 comments 1 reply
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Based on your checklist, you have already covered the most common causes. The remaining things I would verify are the less obvious contribution-graph rules. GitHub’s contribution rules for commits are here:
For commits to count, the docs require the commit email to be associated with your account, the repository not to be a fork, and the commits to be on the default branch or
Since this is a private organization repository, I would specifically check whether your account is an organization member or only has repository access through an outside-collaborator/invited access path. The commits can still link to your profile while not satisfying all contribution-graph eligibility conditions. A few concrete checks: # Confirm the commit author/committer dates and emails
# Add .patch to a commit URL and inspect From/Date headers, or locally:
git show --format=fuller COMMIT_SHA
# Confirm the default branch right now
gh api repos/ORG/REPO --jq '{default_branch, fork, private}'
# Confirm the commit is reachable from the current default branch
git merge-base --is-ancestor COMMIT_SHA origin/main && echo reachableAlso check the author date vs committer date. GitHub notes that the contribution graph uses the author date for commits, so if author dates are outside the visible range or unexpected, the graph may not show them where you expect. If all of these are true: then I would treat this as a contribution graph indexing/account issue. At that point only GitHub can rebuild or inspect the private contribution state, so I would open Support and include:
One more small UI note: private contributions are anonymized on public profiles, so other people will not see repository details. But you should still see the private contribution counts on your own profile when private contributions are enabled. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for completing the remaining checks. With the commit reachable from the default branch, the author and committer linked to your verified email/account, the private repository not being a fork, direct collaborator access confirmed, private contributions enabled, and the commits older than 24 hours, the documented user-side causes appear to be exhausted. At this point the useful next step is GitHub Support, because they can inspect or reindex the contribution attribution data for the private repository. Share the private repository name, representative commit SHA, default branch, author/committer emails, and approximate dates only through the private ticket; do not post those private repository details publicly. I would describe it as a contribution-graph attribution/reindexing issue rather than an email-linking question, and mention that newer commits in the same repository are affected too. That distinction should help Support route it past the standard checklist. |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue on my profile, although this is after moving the email address tied to the commits to another Github account. It's been over 72 hours and while the commits themselves have the author properly updated, the contribution graph on my profile does not show them. |
Beta Was this translation helpful? Give feedback.
-
|
You've already checked the usual causes, so this does sound like it may need GitHub Support to refresh or investigate the contribution graph. Hope it gets resolved soon, and thanks for the detailed report hh98 game download is also worth a look. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Discussion Type
Bug
Discussion Content
My contribution graph shows 0 contributions for 2026, although I have multiple qualifying commits in a private organization repository.
I have verified the following:
The commits are present in the repository’s default branch (main).
The repository is not a fork.
The commits are more than 24 hours old.
The author email exactly matches a verified email on my GitHub account.
GitHub correctly links the commit author to my profile, CaballeroSebastian.
“Include private contributions on my profile” is enabled.
The organization does not use SAML SSO.
I have access to the private repository through the affected personal account.
The commits were made between June 9 and June 17, 2026, but my profile still shows 0 contributions for the entire year.
Is there another eligibility condition I may be missing, or does GitHub need to rebuild the contribution graph for my account?
Beta Was this translation helpful? Give feedback.
All reactions