When I change files and write:
git add .
git commit -m "test"
git push
then git automaticaly pushes it to my github account without asking about username and password. I have tried:
git config --global --remove-section user
git config --global --unset-all user.name
git config --global --unset-all user.email
git config --global --unset-all user.password
but didn't help...
I have also delete folder with git SSH keys.
When I commit I get a message: Committer: Xxx Xxx <xxx@xxx.com> Your name and email address were configured automatically based on your username and hostname.
But this email xxx@xxx.com differs from my github account email...
Why still git recognizes password and username?