Github is not registering contributions

0

I have the following problem with Github, it is not registering my contributions although in the repository it shows that the updates are being performed without any problem. Anyone know what it can be? I am currently using the visual code.

    
asked by anonymous 17.12.2018 / 22:29

1 answer

1

Run this command on the terminal git config --global user.name and see if 'Richard' or 'Richar2' is appearing, if 'Richard' appears, run the following command git config --global user.name "Richar2" and then try to commit something again, and see if you are counting your contributions.

The reason for this is that your last commits came with the username Richard , but its name in GitHub is Richar2 , and when they are different, commits are not considered yours.

If this does not solve your problem, also check your email git config --global user.email and see if the configured email is the same as you have linked to your github account, if it is not, run the following git config --global user.email seuemailaqui command. (But I believe the email is already correct)

    
19.12.2018 / 03:36