博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决 connect to host github.com port 22 operation timed out
阅读量:5276 次
发布时间:2019-06-14

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

本来好好地.不知道为什么不能push了.估计是被墙,于是搜搜解决办法.改换端口

参考 https://mozillazg.com/2015/08/use-443-port-fix-github-connection-timeout.html

参开: https://help.github.com/articles/using-ssh-over-the-https-port/

修改 ~/.ssh/config 中 github.com 的配置, Hostname 改为 ssh.github.com, Port 改为 443:

如果没有config文件就手动创建一个

1 Host github.com2   Hostname ssh.github.com3   Port 443

测试

ssh -T git@github.comThe authenticity of host '[ssh.github.com]:443 ([xxx.xxx.xxx.xxx]:443)' can't be established.RSA key fingerprint is SHA256:xxxxxxxx....Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added '[ssh.github.com]:443,[xxx.xxx.xxx.xxx]:443' (RSA) to the list of known hosts.Hi unixc3t! You've successfully authenticated, but GitHub does not provide shell access.

 

转载于:https://www.cnblogs.com/or2-/p/6185917.html

你可能感兴趣的文章
5天不再惧怕多线程——第三天 互斥体
查看>>
C#多线程学习之(五)使用定时器进行多线程的自动管理
查看>>
查询反模式 - 隐式的列
查看>>
Excel找出两列相同部分
查看>>
珍珠(bead)
查看>>
最优布线问题
查看>>
Django中间件
查看>>
android弹出窗口的实现(PopupWindow)
查看>>
ubuntu分区初探
查看>>
查询局域网内在线电脑IP
查看>>
SQL Stored Procedure Generator
查看>>
对象检测和浏览器检测
查看>>
JS使用onscroll、scrollTop实现图片懒加载
查看>>
帕秋莉·诺蕾姬 (Standard IO)
查看>>
网络游戏引擎简介
查看>>
串口调试助手-打开报错
查看>>
二维LIS(CDQ分治)
查看>>
自学ng2 -生命周期钩子
查看>>
什么是Git?
查看>>
Solaris 性能基础
查看>>