Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Git repositories can only be accessed via https ((warning) 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
    languagebash
    titleFIX: https ssl error
    git config http.sslVerify false
    OR
    git config --global http.sslVerify false


...