I am trying to clone a git repo via the URL and have the command as follows:
git clone https://LastName%20FirstName%20CertNumber:Token@bitbucket.../someProject/someProject.git
but keep running into the same error.
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?)
I checked my git config and the properties are all set properly:
http.sslcert=someCert.crt
http.sslkey=someKey.key
http.sslcainfo=someCa.cer
http.sslverify=true
http.sslcertpasswordprotected=true
What could be giving me this error?