尝试克隆 Git 存储库时出错
Error when attempting to clone a Git repository
在 WinXP 机器上使用 Git 1.9.5 尝试通过 https(随后是 http)连接克隆存储库时,我注意到出现以下错误消息:
The procedure entry point BIO_clear_flags could not be located in the
dynamic link library libeay32.dll.
作为 Git 的全新用户,我不确定如何继续。
据我所知,libeay32.dll
用于创建到服务器的安全连接。也就是说,您或许可以尝试以下其中一项:
尝试发出 http 请求而不是 https。即代替命令:
$git clone https://github.com/....
你可以试试:
$git clone http://github.com/...
您的 dll 可能已损坏。您可以尝试从互联网上下载一个副本,并将其复制到您的系统文件夹中(不要忘记备份您现有的 dll 文件)。
希望对您有所帮助..:)
在 WinXP 机器上使用 Git 1.9.5 尝试通过 https(随后是 http)连接克隆存储库时,我注意到出现以下错误消息:
The procedure entry point BIO_clear_flags could not be located in the dynamic link library libeay32.dll.
作为 Git 的全新用户,我不确定如何继续。
据我所知,libeay32.dll
用于创建到服务器的安全连接。也就是说,您或许可以尝试以下其中一项:
尝试发出 http 请求而不是 https。即代替命令:
$git clone https://github.com/....
你可以试试:
$git clone http://github.com/...
您的 dll 可能已损坏。您可以尝试从互联网上下载一个副本,并将其复制到您的系统文件夹中(不要忘记备份您现有的 dll 文件)。
希望对您有所帮助..:)