nowox
nowox

Reputation: 29178

Git push uses the wrong credentials

I just git clone one of my repository with:

git clone https://github.com/org/repo.git
cd repo
vi ...
git commit -am "things"
git push 
remote: Permission to org/repo.git denied to nowox.
fatal: unable to access 'https://github.com/org/repo.git/': 
The requested 
URL returned error: 403

Curiously I do not have this nowox user configured on this PC. The proof is:

git config --list | grep nowox

Also in this repository I could not find nowox

grep -r nowox

Any idea?

Upvotes: 1

Views: 441

Answers (1)

VonC
VonC

Reputation: 1329092

Check your git config credential.helper output

If the helper is caching the wrong credentials, force it to ask you again said credentials with (as explained in "How do I sign out in the Git Bash console?")

git credential-manager reject https://github.com

Upvotes: 1

Related Questions