Question

I did not see a garbage collection command in LibGit2 so I was wondering if it is currently automatically packing files in a local repository.

Était-ce utile?

La solution

There is no automatic repacking. This is something which you absolutely never want the library to do. All objects start off as loose objects and remain that way until some tool decides it would like to do housekeeping.

Repacking (and gc operations in general) is 90% policy, which is not something that the library should be doing. Whatever tool wants to do its should choose an appropriate time to create a packfile out of them based on the specific knowledge of usage.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top