For those who are not getting even with ssh
or https
, Github’s own website provides help, just look in the guide on clone
and you’ll find the commands to be made in git. I’ll leave the commands ready there, any questions go to the Github guide.
These commands should be done in the Git terminal.
To test whether SSH on the HTTPS port is possible, run this SSH command:
$ ssh -T -p 443 [email protected]
Hello username! You were able to authenticate, but Github was not
provides shell access.
If it worked, great! Otherwise, follow our troubleshooting guide.
Enable SSH connections over HTTPS
If you can SSH on [email protected] on port 443, replace SSH settings to force any Github connection to run on that server and on that port.
To set this in the SSH configuration, edit the file in ~/.ssh/config
and add this section:
Host github.com
Hostname ssh.github.com
Port 443
To test if it works, connect once more to Github:
$ ssh -T [email protected]
Hello username! You were able to authenticate, but Github does not provide shell access.
Okay, try these commands and it will definitely work.
You have set up an SSH key?
– Jéf Bueno
I didn’t set up @LINQ
– LeAndrade
How is the beginning of the URL you are using to clone the project?
– Jéf Bueno