win10下解决github账户更改后git push无权限问题

win10下解决github账户更改后git push无权限问题

git push执行后报错如下:

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

1. 首先,出现这种情况的原因是因为我们将原来的账户密码保存下来了。

win10下在‪C:\Users\Administrator\.gitconfig中有如下配置:

[credential] helper = store

添加这个配置后git账户信息就会保存在‪C:\Users\Administrator\.git-credentials

解决办法就是删除这个文件中的账户信息

之后再执行git push就是出现输入账户密码的提示了。

2. 我们clone仓库的时候使用ssh方式就会重新指定用户。

ssh方式clone项目参考设置gitlab、github默认push的用户名和密码

你可能感兴趣的:(git)