博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Mac + GitHub】之在另一台Mac电脑上下载GitHub的SSH链接报错
阅读量:5144 次
发布时间:2019-06-13

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

当输入git命令github项目时报错:

⇒  git clone git@github.com:/TX-Class.gitCloning into 'TX-Class'...Warning: Permanently added the RSA host key for IP address '13.250.177.223' to the list of known hosts.git@github.com: Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.

错误①:

Warning: Permanently added the RSA host key for IP address '13.250.177.223' to the list of known hosts. 此错误参考:《》

hosts文件的位置:

1、Mac:/etc/hosts

vim /etc/hosts

添加一行:13.250.177.223  github.com

但是修改完文件输入::wq!时报错

Can't open file for writing

解决参考:《

修改文件命令时,应该用sudo

 

sudo vim /etc/hosts

 

再修改成功!!

错误②

fatal: Could not read from remote repository.

参考文章:《》

 

输入命令:

ssh-keygen -t rsa -C xxx@xxx.comxxx@xxx.com # 为你的github账号

一直按回车,什么都不输入。

Generating public/private rsa key pair.Enter file in which to save the key (/Users/[username]/.ssh/id_rsa):Enter passphrase (empty for no passphrase):Enter same passphrase again:Your identification has been saved in /Users/[username]/.ssh/id_rsa.Your public key has been saved in /Users/[username]/.ssh/id_rsa.pub.The key fingerprint is:SHA256:HyXP86ndZiNVOchlHrHMriy5SoHredqReKwESZgtZx4 xxx@xxx.comThe key's randomart image is:+---[RSA 2048]----+|               ..||    +         o+.||   + E    . o =+o||    * o .  = o.+.||     + .S.. +  .o||      . +.o.oo.o ||       + *.o o+  ||      o *.. o+ oo||       =oo... ooo|+----[SHA256]-----+

再输入:

cd ~/.sshls # 如果有下面几个文件就成功了 id_rsa      id_rsa.pub  known_hosts

接下来打开github官网:选择设置

添加新的SSH key

复制新的key内容,输入:

pbcopy < ~/.ssh/id_rsa.pub

复制完粘贴到下面如图里

 新的keys

最后就可以下载github中的SSH链接的项目了:

 

转载于:https://www.cnblogs.com/Owen-ET/p/10340303.html

你可能感兴趣的文章
破产姐妹第一季/全集2 Broke Girls迅雷下载
查看>>
PHP Switch 语句判断成绩
查看>>
Picture
查看>>
[洛谷P1600] 天天爱跑步
查看>>
nginx配置注意事项
查看>>
configmap使用-查看configmap个数
查看>>
关于实时监测网络每秒上下行流量问题
查看>>
Django框架nvm和node.js环境配置
查看>>
地下城游戏
查看>>
python简述以及安装
查看>>
fail fast
查看>>
什么是https
查看>>
IOS性能调优系列:使用Zombies动态分析内存中的僵尸对象
查看>>
Jenkins 部署 PHP 应用
查看>>
extjs发布
查看>>
python元编程详解
查看>>
使用css 设置高度等于宽度
查看>>
ECMAScript 6 字符串的扩展
查看>>
特征选择--->卡方选择器
查看>>
struts2中动态方法调用
查看>>