错误:
$ git push origin master
remote: Permission to CURRENTUSER/repo.git denied to OLDUSER.
fatal: unable to access 'https://github.com/CURRENTUSER/repo.git/': The requested URL returned error: 403
$ git remote -v
origin https://github.com/CURRENTUSER/repo.git (fetch)
origin https://github.com/CURRENTUSER/repo.git (push)
upstream https://github.com/UPSTREAMUSER/repo.git (fetch)
upstream https://github.com/UPSETREAMUSER/repo.git (push)
$ git config user.name
CURRENTUSER
我在使用Git for Windows(请不要拍我,这不是我的选择)。 OLDUSER来自哪里?我无法在任何地方找到它。我甚至从我的机器上完全卸载了Git,但没有用。
此外,我已阅读了大量说明,大多数人都建议重置密钥链 - 但这不是OSX,我无法找到任何有关Windows的帮助。
谢谢!