Reputation: 1622
I was using public WIFI when pushing changes to the Git. But when checked who committed I got different user.
But I also had this error when pushing to master but still able to push.
Could someone explain why it happened and is it security concern?
Upvotes: 0
Views: 45
Reputation: 1323223
Check your git configuration:
git config user.name
git config user.email
The email must be the one from your GitHub account.
Upvotes: 1