-2

Ok I'm aware this sounds stupid and I'm actually stunned this is such a problem, I changed my account under linux before but in Windows it somehow doesn't work at all.

All I want is to use another account. I tried setting new account name etc.

git config --global ***

However, while it display the right name, when I try to push it still uses my old account.

I cant believe this is so hard and wasted already way too much time on it, could someone please enlighten me (I'd prefer using bash but whatever gets the job done is good).

And for some reason google only gives me crap on this...

3
  • Could you add some examples of what commands you're running which will cause it to push using your old account?
    – alexmuller
    Sep 20, 2017 at 15:03
  • Pretty much everything on the first two pages when you enter "change Github accounts". Nothing works, I'm giving up on this, not worth the time, I'll just reinstall.
    – meow
    Sep 20, 2017 at 17:16
  • Possible duplicate of Remove credentials from Git
    – meow
    Sep 23, 2017 at 9:08

3 Answers 3

0

git config --global -e for editing the config.

As specified by the command line: -e, --edit open an editor

This only changes the display name. To change accounts, switch your SSH key identity or HTTP credentials.

3
  • The question is WHAT DOES WORK, not why nothing described on the web seems to be working, but thanks anyways.
    – meow
    Sep 20, 2017 at 17:27
  • I just did. Change your SSH key or HTTP credentials. help.github.com/articles/… help.github.com/articles/caching-your-github-password-in-git That is the way you change your account. Either you're doing it wrong or you're explaining your issue incorrectly. Sep 21, 2017 at 10:30
  • Hm I tried all of those commands to be honest. The only thing that helped was the Credential Manager.
    – meow
    Sep 21, 2017 at 20:54
0

all you're doing is setting your display name

Try this

git config credential.https://github.com.username yourusername

More info on the git documentation

0
0

Ok finally found an answer:

  1. Go to Credential Manager

  2. Go to Windows Credentials

  3. Delete the entries under Generic Credentials

As described in this post:

Remove credentials from Git

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.