A recruiter from a potential employer mentioned to me that she likes to see a "busy" github, so naturally I checked mine only to realize that about half of my commits were not being recognized. I have been making commits to my github repositories for months, but for some reason they weren't represented on my contributions graph. I also noticed that my VS Code did not display my name next to my contributions. So, here's the fix!
1. Open Git Bash
2. Update the email address using:
$ git config --global user.email "email@example.com"
3. Confirm that you have correctly set the email address in Git:
$ git config --global user.email
4. Update the email in github under the settings tab.
That's it! All future commits will be tracked and graphed
1. Open Git Bash
2. Update the email address using:
$ git config --global user.email "email@example.com"
3. Confirm that you have correctly set the email address in Git:
$ git config --global user.email
4. Update the email in github under the settings tab.
That's it! All future commits will be tracked and graphed
Comments
Post a Comment