GitHub commits aren't recorded in the 'Your Contributions` calendar

前端 未结 27 1082
南笙
南笙 2021-01-29 21:59

I\'ve been making continuous commits to my GitHub repos from my linux shell and they show up nicely on the website just as they should. The only problem is that \"Y

相关标签:
27条回答
  • 2021-01-29 22:35

    This did the trick! I just used $ git config user.email "my email address used on my git repo" and it worked.

    0 讨论(0)
  • 2021-01-29 22:39

    I had the same problem and the solution was pretty simple. I had the wrong email set for the global email config

    git config --global user.email "email@yourmail.com"
    

    Just make sure the above email and your GitHub account email are same

    0 讨论(0)
  • 2021-01-29 22:39

    Make sure to use the the user flag. For example git push -u origin instead of git push

    0 讨论(0)
提交回复
热议问题