Cloning into 'tg_bing_dalle'...
kex_exchange_identification: Connection closed by remote host
Connection closed by 20.205.243.166 port 22
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
1
horizon 325 天前
export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890
|
2
stinkytofu 325 天前 1
这片土地上的程序员, 想要愉快的编程, 首先就得精通翻墙
|
3
qingjiang OP @stinkytofu 节点一直开着的
|
5
jim9606 325 天前
看上去好像是你用了 ssh 客户端不支持服务器允许的密码套件?
例如 ssh 版本过旧。 |
10
yuanix 325 天前
这题我会,可能是 22 端口被阻断了,让 ssh 协议走 443 端口就好了
在你的 ssh 配置里面加上: ``` Host github.com HostName ssh.github.com Port 443 User git ``` |
11
qingjiang OP 现在是这样了:
``` kex_exchange_identification: Connection closed by remote host Connection closed by UNKNOWN port 65535 fatal: Could not read from remote repository. ``` |
13
qingjiang OP @qingjiang 厉害了,可以拉取了,使用
Host keep.github.com HostName ssh.github.com Port 443 User keep 重点是这里 ssh.github.com 443 |
14
nagisaushio 325 天前 via Android
proxychains
|
15
qingjiang OP @yuanix
厉害了,可以拉取了,使用 ``` Host keep.github.com HostName ssh.github.com Port 443 User keep ``` 重点是这里 ssh.github.com 443 |
16
qingjiang OP @nagisaushio 又学到了
|
17
qingjiang OP 谢谢大家的帮忙,解决了
|