GitHub push 时的remote: Permission to xxxxx.git denied to xxx. 问题解决记录

问题描述

将新的github账号中项目 push到之前的github中时出现以下报错信息:
remote: Permission to xxxxx.git denied to xxx.
在这里插入图片描述

解决方案

一开始尝试了修改用户名和邮箱,但是还是报错

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

然后在在网上搜索解决方案 解决方法如下

$ git config credential.username UserB
$ git push origin master

最后push一下代码。成功!

你可能感兴趣的:(git,github,git,github)