Alex M
Alex M

Reputation: 59

GitHub commit is not linked to my account

All my github commits aren't linked to my account when I push from integrated terminal so I don't appear in any repository insights when it comes about statistics and stuff. Also the commit isn't linked to any author so I wouldn't be reachable

I tried everything found before on GitHub manuals but couldn't solve it enter image description here

Upvotes: 0

Views: 1962

Answers (1)

Code-Apprentice
Code-Apprentice

Reputation: 83527

You made commits with an email that is not associated with your GitHub account. You have two choices:

  1. Add the email to your account settings.

  2. Use git filter-branch to change the email on your commits to the one that you already registered with GitHub.

Upvotes: 1

Related Questions