556 B
556 B
title, createTime, tags
| title | createTime | tags | |
|---|---|---|---|
| github ssh timeout | 2024/01/21 20:00:26 |
|
该方法需要先检查是否可以直接访问/通过代理访问 github
-
在
C:\Users\{username}\.ssh目录下创建 or 编辑config文件。 -
将以下内容复制到 config
Host github.com
User git
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
- 使用
ssh -T git@github.com命令测试连接