美文网首页
git push 时报错 fatal: unable to ac

git push 时报错 fatal: unable to ac

作者: 文芬 | 来源:发表于2021-04-22 14:22 被阅读0次
报错原因:

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

解决办法:

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

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


企业微信截图_16190723751487.png

3、编辑 .git/cofig中的url

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

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

相关文章

网友评论

      本文标题:git push 时报错 fatal: unable to ac

      本文链接:https://www.haomeiwen.com/subject/wmaxrltx.html