解决方法:GitHub push 中 remote: Permission to xxxxx.git denied to xxx.

使用 git push 时遇到如下报错:

Pushing to https://github.com/xxx/xxx.git
remote: Permission to xxx/xxx.git denied to Usernamexxx.
fatal: unable to access 'https://github.com/xxx/xxx.git/': The requested URL returned error: 403

已经使用如下命令去配置了全局用户:

git config --global user.name userA
git config --global user.email [email protected]

但是还是报错,解决方法如下:

git config credential.username UserB

然后再尝试 push 一次就可以了。

你可能感兴趣的:(解决方法:GitHub push 中 remote: Permission to xxxxx.git denied to xxx.)