博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决github push错误The requested URL returned error: 403 Forbidden while accessing
阅读量:6649 次
发布时间:2019-06-25

本文共 486 字,大约阅读时间需要 1 分钟。

来源:http://blog.csdn.net/happyteafriends/article/details/11554043

github push错误:

 

[html]
 
 
  1. git push  
  2. error: The requested URL returned error: 403 Forbidden while accessing https://github.com/wangz/future.git/info/refs  
git version 1.7.1

 

OS:CENTOS

解决方案:

vim .git/config

修改

 

[plain]
 
 
  1. [remote "origin"]  
  2.     url = https://github.com/wangz/example.git  
为:

 

 

[plain]
 
 
  1. [remote "origin"]  
  2.     url = https://wangz@github.com/wangz/example.git  
再次git push,弹出框输入密码,即可提交

转载于:https://www.cnblogs.com/imsoft/p/5046766.html

你可能感兴趣的文章
Windows Phone 8初学者开发—第12部分:改进视图模型和示例数据
查看>>
Redis: under the hood---转载
查看>>
C#笔试题面试题锦集(全)总20篇
查看>>
windows下体验Redis
查看>>
在Phonegap下实现oAuth认证
查看>>
Flash播放mp4的两个问题:编码问题和需要下载完后才能播放的问题
查看>>
ios 去掉UITableView Group形式下面的白色阴影
查看>>
Pascal可视化编程 CodeTyphon 、Lazarus
查看>>
LD_PRELOAD & LD_LIBRARY_PATH 动态库路径
查看>>
linux 下 java 链接oracle数据库
查看>>
网站标签命名规范【转载】
查看>>
android手机内的通讯录数据库
查看>>
与众不同 windows phone (1) - Hello Windows Phone
查看>>
linux 用户管理
查看>>
我是该学JAVA呢,还是学IOS开发呢?
查看>>
HDU 1058 Humble Number
查看>>
活用UML-软件设计高手(深圳 2014年4月26-27日)
查看>>
MySQL之权限管理
查看>>
puppet yum仓库
查看>>
修改Tomcat编码方式的两种方法
查看>>