git连接无法连接处理方法

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

首先,清除所有的key-pair ssh-add -D rm -r ~/.ssh 删除你在github中的public-key

重新生成ssh密钥对 ssh-keygen -t rsa -C "[email protected]"

chmod 0700 ~/.ssh chmod 0600 ~/.ssh/id_rsa* 接下来正常操作在github上添加公钥public-key:

1、首先在你的终端运行 xclip -sel c ~/.ssh/id_rsa.pub将公钥内容复制到剪切板 2、在github上添加公钥时,直接复制即可 3、保存测试:在终端 ssh -T [email protected]成功即可

作者:段海宁 链接:https://www.zhihu.com/question/21402411/answer/42836492 来源:知乎 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

转载于:https://my.oschina.net/flyrobin/blog/1599806

你可能感兴趣的:(git连接无法连接处理方法)