gpt4 book ai didi

java - 使用 jGit 进行垃圾收集

转载 作者:太空宇宙 更新时间:2023-11-04 12:19:13 25 4
gpt4 key购买 nike

清理 jGit 存储库

我正在使用 jGit 将一些数据存储在本地存储库中,并再次检索以前版本的数据。存储库变得非常大,我想执行垃圾收集命令以重新打包存储库并使存储库变小。此任务的命令行 git 命令为:

git gc --aggressive

如何使用 jGit 实现此目的?

示例存储库

user:~$ du -h  /tmp/Evaluation_Git_Repo/
4,0K /tmp/Evaluation_Git_Repo/.git/branches
8,0K /tmp/Evaluation_Git_Repo/.git/logs/refs/heads
12K /tmp/Evaluation_Git_Repo/.git/logs/refs
20K /tmp/Evaluation_Git_Repo/.git/logs
4,0K /tmp/Evaluation_Git_Repo/.git/hooks
4,0K /tmp/Evaluation_Git_Repo/.git/refs/tags
4,0K /tmp/Evaluation_Git_Repo/.git/refs/heads
12K /tmp/Evaluation_Git_Repo/.git/refs
4,0K /tmp/Evaluation_Git_Repo/.git/objects/99
4,0K /tmp/Evaluation_Git_Repo/.git/objects/29
4,0K /tmp/Evaluation_Git_Repo/.git/objects/01
4,0K /tmp/Evaluation_Git_Repo/.git/objects/e7
4,0K /tmp/Evaluation_Git_Repo/.git/objects/info
4,0K /tmp/Evaluation_Git_Repo/.git/objects/a9
4,0K /tmp/Evaluation_Git_Repo/.git/objects/ec
...
7,2M /tmp/Evaluation_Git_Repo/.git/objects
7,2M /tmp/Evaluation_Git_Repo/.git
7,3M /tmp/Evaluation_Git_Repo/

使用 jGit 的示例代码

这是迄今为止使用的代码片段:

/**
* Repacks the repository
*/
public void repackRepository(){
Properties prop;

try {
this.git.gc().setAggressive(true).call();


prop = this.git.gc().getStatistics();
logger.info("GC");

} catch (GitAPIException e) {
e.printStackTrace();
}
}

这对文件系统没有任何影响。在 jGit 中使用 gc() 命令的正确方法是什么?

预期结果

我希望 gc() 调用的结果与手动执行类似。

user$ git gc --aggressive
Counting objects: 75, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (50/50), done.
Writing objects: 100% (75/75), done.
Total 75 (delta 24), reused 48 (delta 0)

这给出

user:/tmp/Evaluation_Git_Repo$ du -h  /tmp/Evaluation_Git_Repo/
4,0K /tmp/Evaluation_Git_Repo/.git/branches
8,0K /tmp/Evaluation_Git_Repo/.git/info
12K /tmp/Evaluation_Git_Repo/.git/logs/refs/heads
16K /tmp/Evaluation_Git_Repo/.git/logs/refs
28K /tmp/Evaluation_Git_Repo/.git/logs
4,0K /tmp/Evaluation_Git_Repo/.git/hooks
4,0K /tmp/Evaluation_Git_Repo/.git/refs/tags
4,0K /tmp/Evaluation_Git_Repo/.git/refs/heads
12K /tmp/Evaluation_Git_Repo/.git/refs
8,0K /tmp/Evaluation_Git_Repo/.git/objects/info
152K /tmp/Evaluation_Git_Repo/.git/objects/pack
164K /tmp/Evaluation_Git_Repo/.git/objects
244K /tmp/Evaluation_Git_Repo/.git
304K /tmp/Evaluation_Git_Repo/

手动执行会创建一个包文件并大大减少空间。

最佳答案

我刚刚尝试了我的 jgit-cookbook 中的示例。

看起来 JGit 确实做了打包,“df”的“4.0k”输出表明这些现在是空目录,如果你对其中一个执行 ls 操作,你会看到那里不再有文件了。

还有一个“.git/objects/pack”目录,其中包含包文件。

关于java - 使用 jGit 进行垃圾收集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39034490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com