草庐IT

certificate-authority

全部标签

git - 此错误消息意味着什么 : fatal: unable to access 'https:URL' : Peer's Certificate issuer is not recognized?

我尝试了很多与证书相关的不同搜索,但我没有找到。我不知道如何查看我是否有良好的证书。此消息是在尝试像这样在Fedora中推送git提交后给出的:$gitpushoriginmaster这个证书相关还是git相关?顺便说一句,ssh工作... 最佳答案 一种可能是您的系统上缺少证书颁发机构证书。如果是这种情况,您可以按照thisanswer中的说明添加这些内容.这比忽略上述CA更好(envGIT_SSL_NO_VERIFY=truegitclonehttps://github...)。在此OP的特定情况下,Brandoncomment

git - 此错误消息意味着什么 : fatal: unable to access 'https:URL' : Peer's Certificate issuer is not recognized?

我尝试了很多与证书相关的不同搜索,但我没有找到。我不知道如何查看我是否有良好的证书。此消息是在尝试像这样在Fedora中推送git提交后给出的:$gitpushoriginmaster这个证书相关还是git相关?顺便说一句,ssh工作... 最佳答案 一种可能是您的系统上缺少证书颁发机构证书。如果是这种情况,您可以按照thisanswer中的说明添加这些内容.这比忽略上述CA更好(envGIT_SSL_NO_VERIFY=truegitclonehttps://github...)。在此OP的特定情况下,Brandoncomment

eclipse - 继续指定无效的作者。示例 : A U Thor <author@example. com>

使用EclipseIndigo和egit,每次我提交时都会出现一个pop窗口并且在作者和提交者框中有我的名字和电子邮件。他们看起来很好。然而,egit告诉我:Invalidauthorspecified.Example:AUThor当,我复制粘贴AUThor进入作者框,消息消失。我什至可以将其编辑回我的姓名和电子邮件,这很好。这毫无意义-首先它出了什么问题?类似的问题发生在committerbox上。我得到:Invalidcommitterspecified.Example:COMitter 最佳答案 从命令行提交:gitcommi

eclipse - 继续指定无效的作者。示例 : A U Thor <author@example. com>

使用EclipseIndigo和egit,每次我提交时都会出现一个pop窗口并且在作者和提交者框中有我的名字和电子邮件。他们看起来很好。然而,egit告诉我:Invalidauthorspecified.Example:AUThor当,我复制粘贴AUThor进入作者框,消息消失。我什至可以将其编辑回我的姓名和电子邮件,这很好。这毫无意义-首先它出了什么问题?类似的问题发生在committerbox上。我得到:Invalidcommitterspecified.Example:COMitter 最佳答案 从命令行提交:gitcommi

git - SSL证书: self signed certificate when cloning repo from github?如何解决

我刚刚安装了gitforwindows并尝试像这样克隆glew的repo$gitclonehttps://github.com/nigels-com/glew.git但是我得到了以下错误Cloninginto'glew'...fatal:unabletoaccess'https://github.com/nigels-com/glew.git/':SSLcertificateproblem:selfsignedcertificate我见过有人遇到过这个问题和一些可能的解决方法。先试试$git-chttp.sslVerify=falseclonehttps://github.com/ni

git - SSL证书: self signed certificate when cloning repo from github?如何解决

我刚刚安装了gitforwindows并尝试像这样克隆glew的repo$gitclonehttps://github.com/nigels-com/glew.git但是我得到了以下错误Cloninginto'glew'...fatal:unabletoaccess'https://github.com/nigels-com/glew.git/':SSLcertificateproblem:selfsignedcertificate我见过有人遇到过这个问题和一些可能的解决方法。先试试$git-chttp.sslVerify=falseclonehttps://github.com/ni

git - OS X : Git with client certificates rejected

我们通过将以下行添加到~/.gitconfig来使用客户端证书访问我们的Git服务器[http]sslCAInfo=/path/to/git-ca.crtsslCert=/path/to/git-client.crtsslKey=/path/to/git-client.pem这在Linux、Windows和OSXbash-3.2$gitfetchfatal:unabletoaccess'https://ourserver:12345/repository.git/':SSL:Can'tloadthecertificate"/path/to/git-client.crt"anditspr

git - OS X : Git with client certificates rejected

我们通过将以下行添加到~/.gitconfig来使用客户端证书访问我们的Git服务器[http]sslCAInfo=/path/to/git-ca.crtsslCert=/path/to/git-client.crtsslKey=/path/to/git-client.pem这在Linux、Windows和OSXbash-3.2$gitfetchfatal:unabletoaccess'https://ourserver:12345/repository.git/':SSL:Can'tloadthecertificate"/path/to/git-client.crt"anditspr

CURL error 60: SSL certificate problem: certificate has expired

项目使用guzzleHttp做的一个接口,报错:certificatehasexpired因为在linuxcentos环境与window环境有所不同,在此记录一下解决过程。 目录报错提示原因解决方式1.去掉guzzlehttp的验证2.更新CA证书总结报错提示cURLerror60:SSLcertificateproblem:certificatehasexpired(seehttps://curl.haxx.se/libcurl/c/libcurl-errors.html)forhttps://api.openai.com/v1/completions原因GuzzleHttp使用http协议

git - : git log --exclude-author? 的等价物

在工作中,我们有一个git存储库,其中大部分提交都是机器人用户自动提交的。有时我更喜欢从那个repo查看git日志,但看不到自动提交。我想它可以被描述为倒置的“gitlog--author”或“gitlog--exclude-author=botuser”,如果存在这样的选项的话。目前我执行以下操作,快捷方式到bash别名。gitlog--format="%H%aE"|grep-v-Fbotuser@domain|whilereadhashemail;dogitlog-1$hash;echo;done|less我的问题是对于我想要完成的事情是否有更简单的解决方案?