首页 » 鲜货 » 正文

解决git push 中remote: Permission to xxxxx.git denied to xxx. fatal: unable to acces

remote: Permission to xxxxx.git denied to xxx. fatal: unable to accees

最近不止一次遇到这个问题了,大概跟我修改git密码有关,索性记录一下:

第一步:

cd 到项目中,编辑 .git/cofig中的url
vim .git/config
[remote "origin"]
url = https://github.com/git的用户名/项目名称
的url改为
url = https://git的用户名@github.com/git的用户名/项目名称

第二步:

执行:git push -u origin master