I work at win7 and set up git server with sshd.
I git --bare init myapp.git
, and clone ssh://git@localhost/home/git/myapp.git
in Cywgin
Remove any config in ~/.ssh/config
or other ssh config places which will disallow it to reach to Github servers
In my case it was below config, and I wasn't connected to VPN.
Host *
ProxyJump 10.0.0.50
Note :- If I am connected to VPN, This config would mean git clone or any git operation will be send via VPN which might be slow depending on type of VPN we are using.