SSL:在钥匙串中找不到证书“”及其私钥
SSL: Can't find the certificate "" and its private key in the Keychain
尝试通过 https 从 github 克隆时出现以下错误。
fatal: unable to access 'https://github.com/<any-github-repo>.git/': SSL: Can't find the
certificate "" and its private key in the Keychain.
git+ssh 确实可以继续工作,但在某些情况下我需要能够使用 https,例如 运行 brew update
。
我有证书只是 ""
。我有的每个其他示例至少指定了它正在寻找的证书,这有助于推断出问题所在。
有人知道 ""
是什么证书吗?或者如何最好地解决这个问题?
我找到了问题的根源。我在 ~/.gitconfig
有一个 github 配置文件
在那里我找到了这条线
[http]
sslCert =
sslVerify = false
sslCert =
是定义 ""
的地方。我删除了 [http]
部分,现在可以使用了。
尝试通过 https 从 github 克隆时出现以下错误。
fatal: unable to access 'https://github.com/<any-github-repo>.git/': SSL: Can't find the
certificate "" and its private key in the Keychain.
git+ssh 确实可以继续工作,但在某些情况下我需要能够使用 https,例如 运行 brew update
。
我有证书只是 ""
。我有的每个其他示例至少指定了它正在寻找的证书,这有助于推断出问题所在。
有人知道 ""
是什么证书吗?或者如何最好地解决这个问题?
我找到了问题的根源。我在 ~/.gitconfig
在那里我找到了这条线
[http]
sslCert =
sslVerify = false
sslCert =
是定义 ""
的地方。我删除了 [http]
部分,现在可以使用了。