3

我正在尝试使用 libgit2 首先克隆一个裸存储库,然后使用来自 github 源的更改对其进行更新。克隆工作正常:

git_repository *_repository
git_clone_bare(&_repository, REPOSITORY_URL, path, &transferProgressCallback, NULL);
git_repository_free(_repository);

但是当我尝试从源 libgit2 更新存储库时,总是会再次下载整个存储库。它只是不只获取更改。我正在使用这段代码:

git_remote *remote;
git_repository *_repository;

git_repository_open(&_repository, path);
git_remote_load(&remote, _repository, "origin");
git_remote_connect(remote, GIT_DIR_FETCH);
git_remote_download(remote, &transferProgressCallback, NULL);

git_remote_disconnect(remote);
git_remote_update_tips(remote);
git_remote_free(remote);

(我删除了错误处理。)我使用这样的回调来报告进度:

void transferProgressCallback(const git_transfer_progress *stats, void *payload) {
    float receivedMegaBytes = (float)stats->received_bytes/(1024*1024.0);
    float progress = ((float)stats->received_objects / (float)stats->total_objects) * 100.0;
    printf("Loading: %.1f (%.1f)\n", progress, receivedMegaBytes);
}

根据回调,所有内容都已下载(与 git_clone_bare 的字节数相同)。我一定是错过了什么或做错了什么,对吧?但我不知道在哪里。我想要的是代码只获取更改(即本地不存在的东西)。但相反,它会不断获取整个存储库的所有内容。

请问,这里可能是什么问题?非常感谢您!

4

1 回答 1

7

奇怪。我无法重现该问题。

你运行的是哪个版本的 libgit2?

我已经在本地向 libgit2 提取套件添加了一个测试,它重现了您的问题,并且......它通过了当前最新的 libgit2 开发技巧。已成功检查以下网址:

static void transferProgressCallback(const git_transfer_progress *stats, void *payload)
{
    bool *invoked = (bool *)payload;
    *invoked = true;
}

void test_network_fetch__doesnt_retreive_a_pack_when_the_repository_is_up_to_date(void)
{
    git_repository *_repository;
    git_remote *remote;
    bool invoked = false;

    cl_git_pass(git_clone_bare(&_repository, "https://github.com/libgit2/TestGitRepository.git", "./fetch/lg2", NULL, NULL));
    git_repository_free(_repository);

    cl_git_pass(git_repository_open(&_repository, "./fetch/lg2"));

    cl_git_pass(git_remote_load(&remote, _repository, "origin"));
    cl_git_pass(git_remote_connect(remote, GIT_DIR_FETCH));

    cl_assert_equal_i(false, invoked);

    cl_git_pass(git_remote_download(remote, &transferProgressCallback, &invoked));

    cl_assert_equal_i(false, invoked);

    cl_git_pass(git_remote_update_tips(remote));
    git_remote_disconnect(remote);

    git_remote_free(remote);
    git_repository_free(_repository);
}

更新:

我已经向 libgit2 项目发送了一个拉取请求,以确保测试也通过 CI 服务器 Travis。

更新 2:

好的,我已经进行了更多故障排除,但仍然无法重现该问题。

  • 我通过 Web 界面在 GitHub 上创建了一个新存储库
  • 通过 bash 会话,我创建了一个提交,然后将其推送到上游
  • 然后我通过 libgit2 将它克隆到一个新的临时文件夹中。已下载 3 个对象
  • 然后我再次获取它,没有下载任何内容。
  • 回到 bash 会话,我创建了另一个提交并将其推送到上游
  • 回到 libgit2 代码,再次获取从第二次提交下载 3 个新对象。

下面的代码,即使这不是一个真正的测试(因为它需要用户的一些交互),也演示了上面解释的内容。

void test_network_fetch__retrieve_a_pack_when_the_remote_repository_has_been_updated(void)
{
    git_repository *_repository;
    git_remote *remote;
    bool invoked = false;

    /*
     * $ mkdir /tmp/so-check/ && cd /tmp/so-check/
     * 
     * $ touch README.md
     * 
     * $ git init
     * Initialized empty Git repository in d:/temp/so-check/.git/
     * 
     * $ git add README.md
     * 
     * $ git commit -m "first commit"
     * [master (root-commit) e3454be] first commit
     *  0 files changed
     *  create mode 100644 README.md
     * 
     * $ git remote add origin https://github.com/nulltoken/so-check.git
     * 
     * $ git push -u origin master
     * Username for 'https://github.com': nulltoken
     * Password for 'https://nulltoken@github.com':
     * Counting objects: 3, done.
     * Writing objects: 100% (3/3), 212 bytes, done.
     * Total 3 (delta 0), reused 0 (delta 0)
     * To https://github.com/nulltoken/so-check.git
     *  * [new branch]      master -> master
     * Branch master set up to track remote branch master from origin.
     * 
     * $
     */

    cl_git_pass(git_clone_bare(&_repository, "https://github.com/nulltoken/so-check.git", "./fetch/soc", NULL, NULL));
    git_repository_free(_repository);

    cl_git_pass(git_repository_open(&_repository, "./fetch/soc"));

    cl_git_pass(git_remote_load(&remote, _repository, "origin"));
    cl_git_pass(git_remote_connect(remote, GIT_DIR_FETCH));

    cl_assert_equal_i(false, invoked);

    cl_git_pass(git_remote_download(remote, &transferProgressCallback, &invoked));

    cl_assert_equal_i(false, invoked);

    cl_git_pass(git_remote_update_tips(remote));
    git_remote_disconnect(remote);

    git_remote_free(remote);
    git_repository_free(_repository);

    /*
     * $ mkdir /tmp/so-check2 && cd /tmp/so-check2
     * 
     * $ git clone https://github.com/nulltoken/so-check.git .
     * Cloning into '.'...
     * remote: Counting objects: 3, done.
     * remote: Total 3 (delta 0), reused 3 (delta 0)
     * Unpacking objects: 100% (3/3), done.
     *
     * $ echo "Test" > README.md
     * 
     * $ git add README.md
     * 
     * $ git commit -m "Now with a meaningful content"
     * [master 9c6c300] Now with a meaningful content
     *  1 file changed, 1 insertion(+)
     *
     $ git push
     * Username for 'https://github.com': nulltoken
     * Password for 'https://nulltoken@github.com':
     * Counting objects: 5, done.
     * Writing objects: 100% (3/3), 262 bytes, done.
     * Total 3 (delta 0), reused 0 (delta 0)
     * To https://github.com/nulltoken/so-check.git
     *    e3454be..9794f71  master -> master
     * $
     */

    /* Set a breakpoint below in order to push the additional commit.
     * Once it's done, let the code run again.
     */
    cl_git_pass(git_repository_open(&_repository, "./fetch/soc"));

    cl_git_pass(git_remote_load(&remote, _repository, "origin"));
    cl_git_pass(git_remote_connect(remote, GIT_DIR_FETCH));

    cl_assert_equal_i(false, invoked);

    cl_git_pass(git_remote_download(remote, &transferProgressCallback, &invoked));

    cl_assert_equal_i(true, invoked);

    cl_git_pass(git_remote_update_tips(remote));
    git_remote_disconnect(remote);

    git_remote_free(remote);
    git_repository_free(_repository);
}

在控制台的输出下方,是第二次下载的结果。可以注意到,只检索了 3 个对象:

Fetching: (0/3)
Fetching: (1/3)
Fetching: (2/3)
Fetching: (3/3)
Fetching: (3/3)

并且存储库包含 6 个对象(第一次提交中的 3 个,第二次提交中的 3 个):

$ git count-objects --verbose
count: 6
size: 0
in-pack: 0
packs: 0
size-pack: 0
prune-packable: 0
garbage: 0

从我的角度来看,看起来 libgit2 确实能够下载差异包。

于 2012-11-24T18:12:47.293 回答