{"meta":{"title":"Viewing commit details from your timeline","intro":"You can view details for commits from your profile's timeline. If you don't see commits you expect on your profile or can't find commit details from your profile page, the commit date and the commit author date may be different.","product":"Account and profile","breadcrumbs":[{"href":"/en/account-and-profile","title":"Account and profile"},{"href":"/en/account-and-profile/how-tos","title":"How-tos"},{"href":"/en/account-and-profile/how-tos/contribution-settings","title":"Contribution settings"},{"href":"/en/account-and-profile/how-tos/contribution-settings/viewing-commit-details-from-your-timeline","title":"Viewing commit details"}],"documentType":"article"},"body":"# Viewing commit details from your timeline\n\nYou can view details for commits from your profile's timeline. If you don't see commits you expect on your profile or can't find commit details from your profile page, the commit date and the commit author date may be different.\n\n## View commit details\n\n1. In the \"Contribution activity\" section of your profile, click the number of commits next to a specific repository.\n\n![Screenshot of the \"Contribution activity\" section of a user profile. A link, labeled \"29 commits\" is highlighted with an orange outline.](/assets/images/help/profile/commit-link-on-profile-timeline.png)\n\n## Finding missing commits in your timeline\n\nIf you can't find expected commits on your profile, the commit history may have been rewritten, creating different author and commit dates. Follow these steps to locate missing commits:\n\n1. To check if the author date differs from the commit date, use the `git show` command:\n\n   ```shell\n   $ git show YOUR_COMMIT_SHA_NUMBER --pretty=fuller\n   commit YOUR_COMMIT_SHA_NUMBER\n   Author:     octocat USER_EMAIL\n   AuthorDate: Tue Apr 03 02:02:30 2018 +0900\n   Commit:     Sally Johnson USER_EMAIL\n   CommitDate: Tue Apr 10 06:25:08 2018 +0900\n   ```\n\n2. If the dates differ, modify the GitHub URL to search by the specific date:\n\n   * To search by author date (`2018-04-03`):\n\n     `https://github.com/your-organization-or-personal-account/your-repository/commits?author=octocat&since=2018-04-03T00:00:00Z&until=2018-04-03T23:59:59Z`\n\n   * To search by commit date (`2018-04-10`):\n\n     `https://github.com/your-organization-or-personal-account/your-repository/commits?author=octocat&since=2018-04-10T00:00:00Z&until=2018-04-10T23:59:59Z`\n\n3. Open the modified URL in your browser to view the commit details.\n\n## Next steps\n\nIf you're not seeing expected commits on your timeline, it's possible the commit history in Git was rewritten and the commit author date and the commit date are different. For other possibilities, see [Troubleshooting missing contributions](/en/account-and-profile/how-tos/contribution-settings/troubleshooting-missing-contributions).\n\nFor other reference information, see [Profile contributions reference](/en/account-and-profile/reference/profile-contributions-reference#how-github-uses-the-git-author-date-and-commit-date)."}