Почему я на git получаю ssh_exchange_identification: соединение закрыто удаленным хостом? - PullRequest
0 голосов
/ 21 октября 2019

Клонирование репо с терминала:

git clone git@github.foohost.com:barrepo.git
Cloning into 'foorepo'...
ssh_exchange_identification: Connection closed by remote host
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Я следовал инструкциям на генерации и добавлении ключа SSH , но когда я проверяю свое соединение SSH У меня тот же результат:

ssh -T git@github.foohost.com:
ssh_exchange_identification: Connection closed by remote host

с использованием подробного

ssh -v git@github.foohost.com
OpenSSH_7.9p1, LibreSSL 2.7.3
debug1: Reading configuration data /Users/Fred/.ssh/config
debug1: /Users/Fred/.ssh/config line 18: Applying options for *
debug1: /Users/Fred/.ssh/config line 27: Applying options for github.foohost.com
debug1: /Users/Fred/.ssh/config line 41: Applying options for *.foohost.com
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 48: Applying options for *
debug1: Executing proxy command: exec ssh -q b.snc1 nc github 22
debug1: identity file /Users/Fred/.ssh/baz_rsa type 0
debug1: identity file /Users/Fred/.ssh/baz_rsa-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.9
ssh_exchange_identification: Connection closed by remote host

Я могу клонировать репо с помощью https, но после этого я не могу выполнять другие действия (извлечение / отправка ...).

Есть предложения, что может вызвать это или как это исправить?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...