博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决报错:error: The requested URL returned error: 401 Unauthorized while accessing
阅读量:4980 次
发布时间:2019-06-12

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

问题

报错:error: The requested URL returned error: 401 Unauthorized while accessing
git版本:1.7.1

解决方法一:指定用户

git clone https://github.com/org/project.git

换成

git clone https://username@github.com/org/project.git
或者
git clone https://username:password@github.com/org/project.git

在push或者pull出出现的话,则需要更改远程地址

git remote set-url origin https://username@github.com/org/project.git

解决方法二:去除验证

git config –global http.sslverify false

解决方法三:(推荐)

升级git 版本≥1.7.10

解决方法四:

添加ssh秘钥

转载于:https://www.cnblogs.com/stone1989/p/8064460.html

你可能感兴趣的文章
【翻译】自定义 UIViewController Transitions
查看>>
sql不同表相同的CID qty2替换qt1数量
查看>>
多线程备忘
查看>>
水波形图片切换
查看>>
Javascript的console.log()用法
查看>>
【知识向】——计算机基础知识总结及相关
查看>>
【代码笔记】iOS-只让textField使用键盘通知
查看>>
过滤器
查看>>
trie-[HNOI2004]L语言
查看>>
实验三 网际协议IP 实验报告
查看>>
数据库1
查看>>
数据高级操作
查看>>
[bzoj2152]聪聪可可
查看>>
swiper
查看>>
Lodop打印如何隐藏table某一列
查看>>
Idea基于maven搭建多模块单体结构项目
查看>>
tasklet / 工作队列 / 软中断
查看>>
【推荐】腾讯android镜像(做Android开发的得好好利用下这个网站,国内的大公司还是可以滴……)...
查看>>
跨域访问之CORS
查看>>
关于 this指向问题的详解
查看>>