git码云报错 "Could not read from remote repository.Please make sure you have the correct access rig
Posted 泠泠在路上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git码云报错 "Could not read from remote repository.Please make sure you have the correct access rig相关的知识,希望对你有一定的参考价值。
最近做项目,因为用到码云,但是在连接并用ssh的方式clone码云上项目代码时,一直报这个错误,然后作为一个码农必备技能----百度
结果呢,看到千篇一律的重新生成public key,重新添加ssh key到码云的配置文件里【此处试了好多遍!!!】,但是依然没有解决我的问题!!
终于边找边尝试,成功解决了这个问题,可能每个人导致的情况不一样,我这里就说一下我的问题解决步骤:
1.如何生成ssh公钥
你可以按如下命令来生成 sshkey:
ssh-keygen -t rsa -C "xxxxx@xxx.com"
三次回车即可生成 ssh key
查看你的 public key,并把他添加到码云(Gitee.com) SSH key添加地址:https://gitee.com/profile/sshkeys)
查看所生成的key,生成的时候会显示在哪个文件夹里,自己按照目录打开即可,一定要添加带ssh-rsa片段的key
例如:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
添加后,在终端(Terminal)中输入这一段代码一定要输入!!,
血淋淋的教训,就因为这个没输入,找了一晚上错误!!
ssh -T git@gitee.com
我是属于本机和服务器上都要连接并clone git上的代码的,一开始我只是配了本机上生成的key,后面通过百度知道用
ssh -T git@gitee.com
生成了 本机的known_hosts文件,因为我的本机和服务器都需要配置ssh key,然后我就如法炮制,把我
服务器上也生成了public key并添加到码云配置里,然后。。重点是我忘了运行!!
ssh -T git@gitee.com
然后又找了好久,
发现其实是缺少了 known_hosts 文件, 而且必须生成 gitee.com 的执行内容. 如下:(这个也适用github等git工具)
[root@iZ94xpmg9boZ .ssh]# ssh git@gitee.com
The authenticity of host 'github.com (192.30.252.131)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes #这里写 yes
Warning: Permanently added 'github.com,192.30.252.131' (RSA) to the list of known hosts.
Permission denied (publickey).
最后,我再运行clone的时候,就不会再报这个错误了~~
假如有小伙伴遇到类似的问题,欢迎一起讨论啊~
以上是关于git码云报错 "Could not read from remote repository.Please make sure you have the correct access rig的主要内容,如果未能解决你的问题,请参考以下文章
执行git pull命令报告"fatal: early EOF fatal: index-pack failed error: Could not fetch origin fatal: r
git提示错误关于错误:ssh: Could not resolve hostname github.com: Name or service not known.fatal: Could not r
anaconda安装Opencv报错:Could NOT find PythonLibs: Found unsuitable version "2.7.6",
postgresql 日志报错could not write to log file: No space left on device,could not write lock file "
部署OpenStack问题汇总--解决apache启动错误"httpd:Could not reliably determine..."
git fetch upstream 报错 XXX Permission denied (publickey). fatal: Could not read from remote repositor