Pergunta

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.

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top