GitLab (SSH) a través de WIFI público, puerto 22 bloqueado

Utilizo el wifi de Starbucks y obtengo lo siguiente cuando intento ingresar a un repositorio de gitlab.com:

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

Intenté adaptar una solución para GitHub:Github (SSH) a través de WIFI público, puerto 22 bloqueado agregando lo siguiente a ~ / .ssh / config

 Host gitlab.com
        Hostname gitlab.com
        Port 443

Pero eso no funciona cuando recibo este error:

 $ 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.

¿Hay una solución que me permita acceder a GitLab.com usando el puerto 443?

Respuestas a la pregunta(3)

Su respuesta a la pregunta