git 提交代码到github错误处理
Posted 茫海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 提交代码到github错误处理相关的知识,希望对你有一定的参考价值。
git push -u origin master
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/hjyoung/php-redis-in-action.git/info/refs
修改配置
vim .git/config
将配置
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = https://github.com/hjyoung/php-redis-in-action.git
修改为
url = https://[email protected]github.com/hjyoung/php-redis-in-action.git
再次push,输入密码,上传成功
以上是关于git 提交代码到github错误处理的主要内容,如果未能解决你的问题,请参考以下文章