I'm trying to push my first project in gitLab but i get this error "fatal: unable to access 'https://.git. : SSL certificate problem: unable to get local issuer certificate"
finally i find the solution here https://newbedev.com/invalid-ssl-certificate-when-pushing-to-git-server
After reading and making the settings, you should do
git config --system http.sslCAInfo "C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt"
and in the root of your project that you are uploading to gitLab you should do
git config http.sslCAInfo "C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt"
I also experienced this issue and our dev team recommended running below command :
git config --global http.sslbackend schannel
In visual studio, select git , then again select open in command prompt , see below attachment :
paste the command as suggested above , after that you should be able to perform whatever you were trying to do on git
I have a privately deployed Gitlab runner in a Docker container on my AWS EC2 server, and to solve this problem, I just restarted the Gitlab runner container ✅
© 2022 - 2024 — McMap. All rights reserved.
https://.git.
seems like an invalid path. Please show us what the remote URL is and how you're trying to push it. – Clehttps://git.companyName.com
– Ecdysis