git clone遇到错误 fatal: unable to access ‘http://github.com/xxx‘: Failed to connect to github.com port

  • Post author:
  • Post category:其他


git clone出错 fatal: unable to access ‘http://github.com/xxx’: Failed to connect to github.com port


  1. 使用命令

    git config --list

    查看git的配置信息,这里面可以看到user.name 还有 user.email 如果没有的话不要慌,看下一步;

  2. git config --global user.name "github_name"



    git config --blobal user.email "email"

上面的github_name填github的用户名,email则是github的email

  1. 然后使用指令

    ssh-keygen -t rsa -C "github_name"


  2. 在github上的设置中填写公钥信息SSH key,需要自行生成并填入,具体怎么查看公钥,使用命令行

    cat /root/.ssh/id_rsa.pub



    在这里插入图片描述
  3. 使用命令行

    cat /root/.ssh/id_rsa.pub

    后将得到的 ssh-rsa xxx……这一干内容复制下来(结尾的用户名不用复制)粘贴到github的 New SSH key上;

    在这里插入图片描述

    在这里插入图片描述



注意

:第3、4、5步还可以解决

Could not read from remote repository.Please make sure you have the correct access rights

的问题

  1. 检测是否可用,使用命令

    ssh -T git@github.com

    ,运气好的人可能就成功了,若没报错就可以结束了,出问题就继续往下看;

    在这里插入图片描述
  2. 修改config文件

    vim ~/.ssh/config

    ,在里面添加以下内容:(记得保存退出)

Host github.com

Hostname ssh.github.com

Port 443

  1. 然后使用命令

    ssh -T git@github.com

    发现可以正常了。

  2. 最后再正常git clone

    git clone git@github.com/xxx.git

    就可以了(一定要把目的代码fork到自己的Repositories里)。

    在这里插入图片描述



版权声明:本文为qq_40520596原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。