The company firewall does only allow https connection to github.com ( no ssh ), so I added the repository like this:
git remote add origin https://github.com/myProject.git
Unfortunately if I call git push, github asks for my username and password. I already created an ssh key using ssh-keygen.
How is it possible to use SSH keys with a https repository?
I tried SSh over HTTPS:
ssh -T -p 443 [email protected]
But I get this error:
ssh: connect to host ssh.github.com port 443: Connection refused
SSH over HTTPSit isSSH over the HTTPS port. The protocol is still SSH just the used port changes from 22 to 443.