【git】fatal: Could not read from remote repository.
- 前提操作
- 报错代码
- 纠错过程
- 报错原因
- 处理方法
- 学到
- 问题
- 感谢
)
前提操作
许久没用git了,我有预感,这会是一个**的错
我git clone /username/
报错代码
Cloning into 'offer-Java'...
ssh: connect to host port 22: Connection timed out
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
- 1
- 2
- 3
- 4
- 5
- 6
- 7
纠错过程
-
先看了有道以前的笔记(不知道写的啥,没啥用)
git pull
问题:could not read from remote repository …
原因:git remote -v 出来后都是ssh …
我 git set-url origin https://… 修改地址
再 git remote -v 还是 ssh
是因为设置了提交方式是ssh,而我的远程仓库没有没有添加公钥
解决:1.把提交方式改为https
这样每次提交都要输入密码
2.创建并把公钥加入远程仓库
git remote -v git查看远程仓库地址命令 -
使用命令把ssh更改为https失败
-
搜索“ssh更改为http失败”,无果
-
搜索“git clone 出错”,时间限制在一年内,成功
-
ssh-add ~/.ssh/id_rsa出现错误:
Could not open a connection to your authentication agent
- 1
先执行如下命令:
ssh-agent bash(我通过这个方法解决)
或者关掉当前git bash窗口,重新以管理员身份运行git bash (另一个博主写的)
报错原因
根本原因:ssh key 过期了
处理方法
- ls ~/.ssh 本机是否存在ssh key
存在显示 id_rsa id_rsa.pub known_hosts - 删掉
去/c/Users/ASUS/.ssh 删掉id_rsa、id_rsa.pub文件 - 创建新的ssh key,并添加到github
ssh-keygen -t rsa -b 2048 -C “username@”
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub
学到
- 本机是否存在ssh key
- ls ~/.ssh 显示ssh目录下所有文件,如果有显示如下
id_rsa id_rsa.pub known_hosts
- 1
- cd ~/.ssh 切换目录
ls 显示当前目录下文件 - ls -al ~/.ssh 显示ssh目录下所有文件以及信息
No such file or directory //那么就说明本地没有SSH key
- 1
如果已存在SSH key那么就会显示 id_rsa 和 id_rsa.pub文件的存在以及它的创建日期。
比如我显示
total 29
drwxr-xr-x 1 ASUS 197121 0 3月 3 2019 ./
drwxr-xr-x 1 ASUS 197121 0 2月 5 16:22 ../
-rw-r--r-- 1 ASUS 197121 1675 3月 3 2019 id_rsa
-rw-r--r-- 1 ASUS 197121 403 3月 3 2019 id_rsa.pub
-rw-r--r-- 1 ASUS 197121 1197 3月 8 2019 known_hosts
- 1
- 2
- 3
- 4
- 5
- 6
- mkdir ~/.ssh 创建.ssh文件夹
问题
- ssh-agent bash 干嘛的
答:输入公钥,免密登录所有设备 - 为什么一开始从ssh切换至https 失败了
git remote set-url origin https://email/username/
答:不知道 - 网上搜https和ssh的区别说clone的时候使用ssh必须是管理员或者拥有着,并且需要输入密码,但是设置好后并没有输入密码也clone成功了
答: ssh-keygen 配置SSH无密码登陆
感谢
/sheldonxu/archive/2012/09/17/
/p/2791d5cb762a
/weixin_44394753/article/details/91410463