libgit2:git_clone()因“创建ssl对象失败”错误而失败

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

我正在尝试使用libgit2的git_clone()函数克隆git存储库,但是,当我调用该函数时它返回-1,并使用giterr_last()(如果我使用git_error_latest(),我得到“未定义的引用”,不知道为什么)我得到错误“无法创建ssl对象“。

我查看了相关文件here的源代码,好像它在第711行SSL_new(git__ssl_ctx)失败了。

这是我的代码:

#include <string>
#include <git2/clone.h>
#include <git2/errors.h>
#include <git2/common.h>
#include <iostream>

int main() {
    git_repository* pGitRepository = nullptr;
    std::string url = "https://github.com/Newbie13XD/nashmap.git";
    std::string path = "/home/neboula/CLionProjects/gut/foo";
    const git_clone_options* options = nullptr;

    if (git_clone(&pGitRepository, url.c_str(), path.c_str(), options) != 0) {
        const git_error* error = giterr_last();

        std::cout << error->message;
    }

    return 0;
}

我正在使用g ++(版本:Red Hat 8.3.1-2)和libgit2版本0.27.8进行编译。

c++ libgit2
1个回答
0
投票

我想通了,你必须在使用libgit2中的任何其他函数之前调用git_libgit2_init()。将此添加到我的程序的开头解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.