Github ssh over 443

Github ssh over 443

Created
May 19, 2024 03:22 PM
Tags
用来面对22端口无法使用的情况
编辑SSH配置文件(通常位于~/.ssh/config
Host github.com Hostname ssh.github.com Port 443 User git IdentityFile ~/.ssh/id_rsa # 你的私钥路径,如果与默认的不同请进行修改
测试连接:
ssh -T [email protected]