...
- Git repositories can only be accessed via https ( ssh access is NOT allowed currently)
Trouble shootingTroubleshooting
In case of certificate errors via https access (e.g., git push), turn off sslVerify option as follows :
Code Block language bash title FIX: https ssl error git config http.sslVerify false OR git config --global http.sslVerify false
...