Skip to main content
3 of 5
added 122 characters in body
user avatar
user avatar

In order to access your Github you need to do it via ssh. So you need to add your ssh public key to github. After that you are able to access github via ssh i.e.:

git init [email protected]:yourname/yourrepo.git 

See also: Github: generating ssh keys, WikiHow

[Edit #1]

without certificate checks:

GIT_SSL_NO_VERIFY=true git clone https://github.com/p/repo.git 

For me it is still not clear what are you asking for, because you know that installing ca-certificates will fix the problem.

user55518