【发布时间】:2023-04-02 04:00:01
【问题描述】:
我正在尝试通过 URL 克隆一个 git repo,命令如下:
git clone https://LastName%20FirstName%20CertNumber:Token@bitbucket.../someProject/someProject.git
但一直遇到同样的错误。
Clone failed: unable to access 'https://LastName%20FirstName%20CertNumber:Token@bitbucket.../someProject/someProject.git/': could not load PEM client certificate, OpenSSL error error:02001003:system library:fopen:No such process, (no key found, wrong pass phrase, or wrong file format?)
我检查了我的 git 配置,所有属性都设置正确:
http.sslcert=someCert.crt
http.sslkey=someKey.key
http.sslcainfo=someCa.cer
http.sslverify=true
http.sslcertpasswordprotected=true
什么可能给我这个错误?
【问题讨论】:
标签: git http ssl ssh bitbucket