Disabling SSL checks

I’m trying to install Doom in my work pc. Problem is that due to the corporate firewall git commands fail with: CRYPT_E_NO_REVOCATION_CHECK because of the firewall issuing it’s own SSL certificates. If I perform the manual git command like: git clone --origin origin --no-checkout https://git.savannah.gnu.org/git/emacs/nongnu.git /Users/ELOSER/.emacs.d/.local/straight/repos/nongnu-elpa/ --single-branch --no-tags Works fine and also running git fetch origin manually also works fine. I tried setting: git config --global http.sslVerify false to no success. Is there a way to bypass this? EDIT: I’m running on windows 10 without admin priviledges

Did you find an answer to this situation. I have the the same issue (also in a corporate environment with a firewall issuing it’s own SSL certificate). The issue happenend after upgrading my git for windows from git 2.23 to 2.46. So, I downgraded again and now the issue no longer appears. However, this does not feel like a permanent solution.