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