Windows10 git clone https://github.com/ktbyers/netmiko”致命错误

时间:2019-02-22 02:17:45

标签: git

按照这些说明(https://www.jaacostan.com/2018/09/how-to-install-netmiko-on-windows.html),在公司网络的Windows 10上使用netmiko安装python时,我收到许多ssl错误。

我知道我们的浏览器具有Aries Root证书,我确实将其下载到了桌面上,但是还不知道该怎么做。

我现在在git bash中遇到了这个错误:

$ git clone https://github.com/ktbyers/netmiko&#8221
  

[1] 7476
  克隆到“ netmiko” ...

     

2 MINGW64〜
  $ cd致命:无法访问“ https://github.com/ktbyers/netmiko/”:错误:1425F175:SSL例程:ssl_choose_client_version:不当的后备

我该如何解决?

3 个答案:

答案 0 :(得分:0)

如果从安全角度考虑(例如,它是您知道的服务器...位于公司局域网中,等等),您可能会告诉git克隆时忽略证书检查:

git -c http.sslVerify clone blah blah

这不是最好的做法。...但是它将消除错误。

答案 1 :(得分:0)

当我尝试将提交推送到远程时,这时有发生。我要做的是首先从Control Panel > User Accounts > Credential Manager > Windows Credentials的Windows中删除Github凭据: Windows Credential Manager

然后我以管理员身份在存储库文件夹中打开Powershell或Cmd.exe并执行git命令:

Execute "$ git push"

它将显示Github登录页面。正确输入我的用户名和密码后,它可以正常工作。

Github login page

答案 2 :(得分:0)

从Windows 7升级到10后,我遇到了类似的问题,并通过以下操作解决了该问题。

在git bash中,运行以下命令

$ git config --global http.sslVerify false
$ git config --global http.sslBackend openssl
$ git config --global http.sslbackend schannel
$ git config --global http.sslVersion tlsv1.2

现在进行git克隆,它对我来说很好。