Repositories section (for a repo that is solely my own), I see myself multiple times[email protected] emailgit log shows commits on my machine by me (the gmail), and PRs by me (the [email protected]); commits I made on GitHub.com seem to have my username (and gmail), commits I made on my machine have my full name (and gmail), and PR's merged also have my full name (but with the [email protected]email)[email protected] email is being used for what I do on GitHub.com (like merging PRs) and the gmail.com for local commits (?) But the gmail is also being used for commits I made on GitHub.com 馃槙 
You can use the "mailmap" feature of Git (via a .mailmap file) to merge multiple commit identities into 1 (which GitLens will then honor).
Here is a good overview of Git mailmap (while this is from Atlassian it isn't Atlassian/Bitbucket specific): https://blog.developer.atlassian.com/aliasing-authors-in-git/
Hope that helps!
Thanks! That's exactly what I needed! I appreciate the help! 馃憤
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
You can use the "mailmap" feature of Git (via a
.mailmapfile) to merge multiple commit identities into 1 (which GitLens will then honor).Here is a good overview of Git mailmap (while this is from Atlassian it isn't Atlassian/Bitbucket specific): https://blog.developer.atlassian.com/aliasing-authors-in-git/
Hope that helps!