-
I am running my own vercel instance and PAT. I am able to display my Top Languages but my Stats Card shows 0 activity. I also ran into this issue when using the default instance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It was a simple issue, but my first encountering it. My commit email address wasn't set up to what was associated with my account so my pushes weren't registering. The commits I make are now show up after running |
Beta Was this translation helpful? Give feedback.
It was a simple issue, but my first encountering it. My commit email address wasn't set up to what was associated with my account so my pushes weren't registering. The commits I make are now show up after running
git config --global user.email "YOUR_EMAIL"
. Runninggit config --global user.email
confirms the address you're commits are pushing with. Hope this helps anyone else with this issue.