summaryrefslogtreecommitdiff
path: root/mempack.go
AgeCommit message (Collapse)Author
2021-09-05Make all non-user-creatable structures non-comparable (#802)lhchavez
This change makes all non-user-creatable structures non-comparable. This makes it easier to add changes later that don't introduce breaking changes from the go compatibility guarantees perspective. This, of course, implies that this change _is_ a breaking change, but since these structures are not intended to be created by users (or de-referenced), it should be okay.
2020-02-20Uprev libgit2lhchavez
This uprevs libgit2 to the latest and greatest. Notably, * Fixes the interface of `git_mempack_reset`, since it now returns an `int` instead of being `void`. Fixes: #533
2019-01-15Keep odb alive when adding mempackCarlos Martín Nieto
2019-01-08Addressed review feedback and added a testlhchavez
2018-07-07Add support for mempacklhchavez
This allows the creation of git packfiles without needing to write them to the filesystem.