| Commit message (Expand) | Author | Age | Files | Lines |
| * | loose/pack: Remove commented-out verifyTypedObject•••It's not supposed to be used there anyway
| Runxi Yu | 2026-01-15 | 2 | -7/+0 |
| * | README.md: Some updates | Runxi Yu | 2026-01-13 | 1 | -21/+14 |
| * | Revert "adler32: Drop SSE3 support"•••This reverts commit ba327e76c5b110044ec8ebb75630e79506dfbed8 and re-adds
SSE3 support at the request of Noisytoot.
| Runxi Yu | 2026-01-06 | 3 | -4/+232 |
| * | adler32: Drop SSE3 support | Runxi Yu | 2026-01-06 | 3 | -232/+4 |
| * | TODO: Note to use archsimd | Runxi Yu | 2026-01-06 | 1 | -0/+1 |
| * | README update | Runxi Yu | 2026-01-05 | 1 | -5/+3 |
| * | adler32: More descriptive constants | Runxi Yu | 2025-12-19 | 2 | -26/+26 |
| * | adler32: Use meaningful label names and remove generated comments | Runxi Yu | 2025-12-19 | 3 | -588/+588 |
| * | tests: No need for the "10 errors" limit now. Bring it all on | Runxi Yu | 2025-12-12 | 1 | -1/+1 |
| * | README: Update forge links and issue tracker canonicalization | Runxi Yu | 2025-12-11 | 1 | -4/+4 |
| * | README: go-git expected performance increase | Runxi Yu | 2025-12-04 | 1 | -0/+3 |
| * | README: Remove the villosa/lindenii-forge URLs for now | Runxi Yu | 2025-12-02 | 1 | -24/+1 |
| * | adler32: noasm = purego | Runxi Yu | 2025-12-02 | 3 | -3/+3 |
| * | show-object: Fix errcheck linter error | Runxi Yu | 2025-12-01 | 1 | -1/+3 |
| * | testutil: Use .git pattern for test repos | Runxi Yu | 2025-12-01 | 2 | -2/+2 |
| * | show-object: Utility to show an arbitrary object from a repo | Runxi Yu | 2025-11-29 | 1 | -0/+37 |
| * | obj_tree: Fix Entry sorting | Runxi Yu | 2025-11-29 | 1 | -12/+79 |
| * | hash: data after size•••This guarantees ... I guess ABI stability of where the size is,
regardless of the version which may have different maxHashSize.
Not too useful but I guess good practice
| Runxi Yu | 2025-11-28 | 1 | -1/+1 |
| * | zlibx: Add more comprehensive tests | Runxi Yu | 2025-11-25 | 1 | -8/+114 |
| * | zlibx: reader -> constants | Runxi Yu | 2025-11-25 | 1 | -0/+0 |
| * | flatex: Restructure a little | Runxi Yu | 2025-11-25 | 4 | -62/+55 |
| * | flatex: Remove unused cruft | Runxi Yu | 2025-11-25 | 3 | -587/+9 |
| * | zlibx: Remove unused cruft | Runxi Yu | 2025-11-25 | 1 | -125/+0 |
| * | README: Remove internal todo list and put it in a separate file | Runxi Yu | 2025-11-25 | 2 | -11/+10 |
| * | refs: Clarify how annotated tags are not peeled | Runxi Yu | 2025-11-25 | 1 | -1/+1 |
| * | refs: Merge NamedRef into Ref; add Short | Runxi Yu | 2025-11-25 | 2 | -31/+162 |
| * | refs: Rename ListRef to NamedRef | Runxi Yu | 2025-11-25 | 1 | -6/+6 |
| * | refs: Fix blank line in comment | Runxi Yu | 2025-11-25 | 1 | -1/+1 |
| * | refs: Rename ShowRefs -> ListRefs | Runxi Yu | 2025-11-25 | 2 | -18/+18 |
| * | refs: Add ShowRefs | Runxi Yu | 2025-11-25 | 2 | -0/+353 |
| * | README: Add performance | Runxi Yu | 2025-11-24 | 1 | -0/+22 |
| * | README: Revamp | Runxi Yu | 2025-11-24 | 1 | -90/+60 |
| * | pack: Do not madvise•••Apparently although it's not fully sequential, the general pattern is
sort-of increasing in offsets as trees are being traversed.
| Runxi Yu | 2025-11-24 | 1 | -11/+0 |
| * | byteorder: Purge | Runxi Yu | 2025-11-23 | 2 | -176/+0 |
| * | .build.yml: Add go vet•••It could detect mismatches between the Go function signature and asm;
not super useful but good to have... not sure why golangci-lint's go vet
doesn't do this.
| Runxi Yu | 2025-11-23 | 1 | -0/+3 |
| * | adler32: Update assembly param names to pass go vet | Runxi Yu | 2025-11-23 | 3 | -8/+8 |
| * | bufpool: Return bytes.Buffer, rather than a pointer to it•••It's silly to allocate a bytes.Buffer struct, however small it is,
every time Borrow is called, since the entire purpose is to reduce
allocations.
| Runxi Yu | 2025-11-23 | 5 | -65/+66 |
| * | obj: Add ReadObjectTypeRaw | Runxi Yu | 2025-11-22 | 1 | -0/+26 |
| * | obj: Return ErrNotFound, not ErrInvalidObject, when not found in packs | Runxi Yu | 2025-11-22 | 1 | -1/+1 |
| * | obj: call parseObjectBody in ReadObject instead of loose/pack readers | Runxi Yu | 2025-11-22 | 3 | -19/+21 |
| * | pack: Allocate the header on the stack instead | Runxi Yu | 2025-11-22 | 1 | -1/+2 |
| * | zlib, flatex: Remove code related to dicts•••Git never uses them
| Runxi Yu | 2025-11-22 | 9 | -414/+171 |
| * | flatex: Remove the stale readByte(s) wrappers and just directly index the buffer | Runxi Yu | 2025-11-22 | 1 | -36/+18 |
| * | bufpool: Return *Buffer | Runxi Yu | 2025-11-22 | 5 | -68/+62 |
| * | bufpool: Improve perf by using buckets of different size classes | Runxi Yu | 2025-11-22 | 7 | -34/+182 |
| * | flatex: Reformat code | Runxi Yu | 2025-11-22 | 1 | -3/+5 |
| * | Remove the multi-pack-index tests which is unused anyway | Runxi Yu | 2025-11-22 | 1 | -73/+0 |
| * | README: Note on integer overflows | Runxi Yu | 2025-11-22 | 1 | -0/+2 |
| * | pack: Don't use bytes.Reader cursor, use mmaped slice directly | Runxi Yu | 2025-11-22 | 1 | -74/+66 |
| * | diffbytes: Fix linter error on redundant if statement | Runxi Yu | 2025-11-21 | 1 | -4/+1 |