连接到VPN时无法克隆存储库。 SSL:证书使用者名称与目标主机名'github.com'不匹配

问题描述 投票:0回答:1

我正在尝试在通过ssh连接的远程系统上克隆git存储库。我需要连接到VPN才能SSH到我组织的本地计算机。

我正在尝试克隆this git repository,但出现SSL错误,

fatal: unable to access 'https://github.com/chiphuyen/stanford-tensorflow-tutorials.git/': SSL: certificate subject name (*.<organisation-name>.com) does not match target host name 'github.com'

鉴于我无法修改系统配置,如何将该存储库克隆到给定的远程桌面?

基本信息:

  • 该系统归我的组织所有,我在该计算机上没有root用户访问权限(我不是sudoer)。
  • 系统是Ubuntu 64位。
git ssl git-clone
1个回答
0
投票

您可以disable certificate verification;

git -c http.sslVerify=False clone https://github.com/chiphuyen/stanford-tensorflow-tutorials.git
© www.soinside.com 2019 - 2024. All rights reserved.