Aynı sorunla karşılaştım ve çalışan bir çözüm bulamadım. Yerel bir sunucu kurarken bu sorunla karşılaştım ve git proxy ağım üzerinden bağlanamadı ama iş istasyonum olabilir. Komutu çalıştırdığımda çıktı buydu
ssh -vT git@github.com
ubuntu@server:~$ ssh -vT git@github.com
OpenSSH_7.2p2 Ubuntu-4ubuntu2.8, OpenSSL 1.0.2g 1 Mar 2016
debug1: Reading configuration data /home/ubuntu/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to github.com [13.234.176.102] port 22.
Bu yüzden yapılandırma dosyasını düzenleyerek HTTPS bağlantı noktası üzerinden yapılan bir SSH bağlantısı kullanmayı denedim, ~/.ssh/config
ancak boşuna değil.
Host github.com
Hostname ssh.github.com
Port 443
Sonunda, gerçek sorunu çözen ve ortaya çıkaran bu makaleyi buldum .
# github.com
Host github.com
Hostname ssh.github.com
ProxyCommand nc -X connect -x <PROXY-HOST>:<PORT> %h %p
Port 443
ServerAliveInterval 20
User git
Bu benim config dosya ve şimdi git ssh ile mükemmel iyi çalışıyor!
git push
. Benim için çalıştı.