After reinstalling Git did nothing, I found an issue on GitHub that helped me solve it.
In your terminal run this command first:
git config --global http.sslBackend "openssl"
Then this one:
git config --global http.sslCAInfo "C:\Program Files\Git\mingw64\ssl\cert.pem"
You may need to change your path depending on where you have itβ¦
Top comments (1)
I installed new version on Git 2.24.1 and not sure what I changed in between but I was not able to clone using https://, no push to server. It was only allowing it if I use my admin rights.
Below are the steps to resolve this issue::
1.In your terminal run this command first:
git config --global http.sslBackend "openssl"
That's all:)