git push 时报错 fatal: unable to access 'https://[email protected]/lisir2/react-study.git/': The req...

报错原因:

报错提示没有权限访问(由于我的公司电脑上已经登录了公司的git账号,所以推送到我个人的github账号提示没有权限)

解决办法:

1、 找到仓库下面的 .git 文件,如果没有的话就是被隐藏了

2、如果 .git 文件被隐藏,设置显示步骤


企业微信截图_16190723751487.png

3、编辑 .git/cofig中的url

将[remote "origin"]
url = https://github.com/git的用户名/项目名称
的url改为
"http://" 后面添加你的github的账号 + ":" + 你的github密码 + git仓库地址 url = http://yourname:[email protected]/xxxxxx/xxxxxxx.git

4、修改之后再去 git push origin master 提交你的代码到远程仓库

你可能感兴趣的:(git push 时报错 fatal: unable to access 'https://[email protected]/lisir2/react-study.git/': The req...)