Pycharm using a hidden GitHub account.

已回答

I own many GitHub accounts but I have one logged in on Pycharm: "criox-thorn", but one of my other accounts "atlastoatlantis" always commits changes and I cannot figure out why, I have set Criox to default, I have deleted all accounts and add Criox back, as far as I can tell there is only the Criox account. I have a video of this for help.

0

You can see this commits signed by different user because of `git config` configuration. GitHub has an article on this:
https://docs.github.com/en/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user

So you need to change your 

  1. $ git config --global user.email "YOUR_EMAIL"
  2. git config [--global] user.name "Full Name"
0

请先登录再写评论。