GitLab (SSH) über öffentliches WLAN, Port 22 blockiert

Ich benutze Starbucks Wifi und bekomme folgendes, wenn ich versuche, auf ein gitlab.com-Repo zu pushen:

  $ git push origin master
  ssh: connect to host gitlab.com port 22: Connection refused
  fatal: Could not read from remote repository.

Ich habe versucht, eine Problemumgehung für GitHub anzupassen:Github (SSH) über öffentliches WLAN, Port 22 blockiert durch Hinzufügen des Folgenden zu ~ / .ssh / config

 Host gitlab.com
        Hostname gitlab.com
        Port 443

Aber das funktioniert nicht, da ich diesen Fehler erhalte:

 $ git push origin master
 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.

Ich habe eine Problemumgehung, die es mir ermöglicht, über Port 443 auf GitLab.com zu pushen?

Antworten auf die Frage(6)

Ihre Antwort auf die Frage