| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace adler32 with github.com/mhr3/adler32-simd•••Unfortunately no VSX support yet | 2025-11-19 | 19 | -895/+937 | |
| * | Ignore some errors in the tests (actually from stdlib but linter complains) | 2025-11-19 | 2 | -11/+11 | |
| * | Remove the broken compression benchmarking utility | 2025-11-19 | 6 | -224/+0 | |
| * | SIMD with AVX2 on supported AMD64 machines•••Some help from gpt-5.1-thinking taken: used wrong register size for the weighted sum at first, so it was truncating the second half of our block; also there was an overflow from the modulus and stuff. Unfortunately the AVX2 adler32 is only about 20% faster than the generic version which doesn't make for much. | 2025-11-19 | 5 | -92/+423 | |
| * | Well, we use a dependency (golang.org/x/sys/cpu) now... | 2025-11-19 | 3 | -3/+6 | |
| * | adler32: Add tests from the standard library | 2025-11-19 | 2 | -0/+388 | |
| * | Switch back to internal zlib for loose objects too•••Still marginally less overhead due to pooling | 2025-11-19 | 5 | -3/+425 | |
| * | Probably should name the custom packages specially | 2025-11-19 | 12 | -25/+24 | |
| * | Remove some redundant code | 2025-11-19 | 2 | -55/+14 | |
| * | flate: Remove unused code | 2025-11-19 | 3 | -447/+4 | |
| * | pack: Iterative instead of recursive resolver | 2025-11-19 | 1 | -116/+160 | |
| * | SliceInflater is probably a better name for that•••And let's just basically not use io.Reader at all | 2025-11-19 | 2 | -52/+496 | |
| * | Initial attempt to make a compressor with less overhead•••io.Reader actually has massive overhead... | 2025-11-19 | 7 | -42/+386 | |
| * | adler32: Unroll update loop | 2025-11-19 | 1 | -7/+70 | |
| * | byteorder: Import | 2025-11-19 | 2 | -0/+176 | |
| * | Add adler32 and LICENSE | 2025-11-19 | 2 | -0/+156 | |
| * | zlib: Use internal adler32 | 2025-11-19 | 1 | -1/+1 | |
| * | Our zlib ought to be read-only for now | 2025-11-19 | 6 | -1942/+10 | |
| * | Add zlib test data | 2025-11-19 | 6 | -0/+222 | |
| * | Import flate | 2025-11-19 | 10 | -2/+3234 | |
| * | README: Mention the zlib branch | 2025-11-19 | 1 | -0/+1 | |
| * | zlib: Add missing error check for flate Reset | 2025-11-18 | 1 | -1/+4 | |
| * | madvise | 2025-11-18 | 1 | -0/+12 | |
| * | hare-git history | 2025-11-18 | 1 | -0/+5 | |
| * | Fix import order | 2025-11-18 | 2 | -2/+4 | |
| * | Faster than libgit2 at recursive ls-tree | 2025-11-18 | 1 | -2/+2 | |
| * | Use a pooled zlib implementation•••It's trivially forked from the standard library and improves git ls-tree -r --long speed by approximately 25%. | 2025-11-18 | 5 | -2/+416 | |
| * | Remove redundant copy in loose.go | 2025-11-18 | 1 | -2/+1 | |
| * | Add tests with race detector | 2025-11-18 | 1 | -0/+6 | |
| * | Bump Go version to 1.25.3 | 2025-11-18 | 1 | -1/+1 | |
| * | README: Drop gccgo compatibility section | 2025-11-18 | 1 | -8/+0 | |
| * | Add a basic change-id field | 2025-11-17 | 1 | -0/+5 | |
| * | Disable per-object validation during reads•••In general, git inflates the packed objects and recomputes the object hash before accepting them into hte object database during remote operations. But when simply inflating/parsing the objects for read from the local object store, it does not recompute the hash. | 2025-11-17 | 3 | -9/+9 | |
| * | Update perf stats | 2025-11-17 | 1 | -15/+19 | |
| * | pack: Use a Go map with a mutex instead of a sync.Map for packfiles•••Very few writes, you don't typically see more than a dozen packfiles. A ton of reads. Go maps are the obvious choice. | 2025-11-17 | 2 | -25/+37 | |
| * | Revert "Compute checksum when reading packfiles"•••This reverts commit 1dcb92427c23d0a8b23c0154b892243c749afa5a. Yeah this should be part of the network protocol rather than being done on *every read*. | 2025-11-17 | 4 | -58/+3 | |
| * | Remove an unnecessary blank line | 2025-11-17 | 2 | -2/+0 | |
| * | Compute checksum when reading packfiles | 2025-11-17 | 4 | -3/+58 | |
| * | Add internal todo | 2025-11-17 | 1 | -0/+9 | |
| * | Remove meaningless comment | 2025-11-17 | 1 | -1/+0 | |
| * | refs: resolvePackedRef shall return ErrNotFound when not finding refs | 2025-11-17 | 1 | -2/+2 | |
| * | Make the internal serialize function a method instead | 2025-11-17 | 3 | -21/+21 | |
| * | Add a little bit more of documentation | 2025-11-16 | 6 | -14/+43 | |
| * | README: benmarking -> test | 2025-11-16 | 1 | -2/+2 | |
| * | Use actual git for tests and enhance Head | 2025-11-16 | 23 | -1279/+2105 | |
| * | EntryRecursive should return ErrNotFound instead of nil, nil | 2025-11-16 | 1 | -3/+2 | |
| * | Fix some docs and API types | 2025-11-16 | 6 | -8/+18 | |
| * | repo is thread safe | 2025-11-16 | 1 | -0/+3 | |
| * | Documentation overhaul | 2025-11-16 | 11 | -33/+97 | |
| * | Separate stored object types from types that the user is expected to construct. | 2025-11-16 | 7 | -34/+83 |
