Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Username of comitter is not clickable on github website

Tags:

git

github

Do you guys know why username of comitter is not clickable in github's "Commit History" ? I set my username by calling

git config --global user.name "myname"

And it matches my account name but still commits look like they were made by non-github user (no access to profile, no profile picture and etc.)

like image 350
expert Avatar asked Oct 26 '12 23:10

expert


1 Answers

GitHub matches contributors by email, so make sure to set user.email as well.

like image 104
Amber Avatar answered Sep 18 '22 06:09

Amber