Git报错 “fatal: unable to access CRYPT_E_REVOCATION_OFFLINE (0x80092013)“问题的解决方法
报错信息
fatal: unable to access 'https://gitlab.com/.git/': schannel: next InitializeSecurityContext failed: CRYPT_E_REVOCATION_OFFLINE (0x80092013)
解决方法
禁用证书吊销检查
# 全局禁用(所有仓库)
git config --global http.schannelCheckRevoke false# 仅当前仓库禁用
git config http.schannelCheckRevoke false