美文网首页
git无法正常连接到github的问题整理

git无法正常连接到github的问题整理

作者: oldwai | 来源:发表于2019-11-27 15:29 被阅读0次

    ssh: Could not resolve hostname xxx.com: Name or service not known

    1. 删除文件,重新生成公、私钥文件
    ssh-keygen -t rsa -b 4096 -C "your_email@example.com" -f your_rsa_file_name
    
    1. 将生成的文件加入到ssh-agent,在后台启动ssh-agent后添加
    eval $(ssh-agent -s) 
    ssh-add ~/.ssh/id_rsa
    
    1. 测试一下
    $ ssh -T git@github.com
    $ ssh -V git@github.com   #查看执行步骤
    

    [帮助文档]https://help.github.com/

    相关文章

      网友评论

          本文标题:git无法正常连接到github的问题整理

          本文链接:https://www.haomeiwen.com/subject/ohrpwctx.html