aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Import flateGravatar Runxi Yu2025-11-1910-2/+3234
|
* README: Mention the zlib branchGravatar Runxi Yu2025-11-191-0/+1
|
* zlib: Add missing error check for flate ResetGravatar Runxi Yu2025-11-181-1/+4
|
* madviseGravatar Runxi Yu2025-11-181-0/+12
|
* hare-git historyGravatar Runxi Yu2025-11-181-0/+5
|
* Fix import orderGravatar Runxi Yu2025-11-182-2/+4
|
* Faster than libgit2 at recursive ls-treeGravatar Runxi Yu2025-11-181-2/+2
|
* Use a pooled zlib implementationGravatar Runxi Yu2025-11-185-2/+416
| | | | | It's trivially forked from the standard library and improves git ls-tree -r --long speed by approximately 25%.
* Remove redundant copy in loose.goGravatar Runxi Yu2025-11-181-2/+1
|
* Add tests with race detectorGravatar Runxi Yu2025-11-181-0/+6
|
* Bump Go version to 1.25.3Gravatar Runxi Yu2025-11-181-1/+1
|
* README: Drop gccgo compatibility sectionGravatar Runxi Yu2025-11-181-8/+0
|
* Add a basic change-id fieldGravatar Runxi Yu2025-11-171-0/+5
|
* Disable per-object validation during readsGravatar Runxi Yu2025-11-173-9/+9
| | | | | | | 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.
* Update perf statsGravatar Runxi Yu2025-11-171-15/+19
|
* pack: Use a Go map with a mutex instead of a sync.Map for packfilesGravatar Runxi Yu2025-11-172-25/+37
| | | | | Very few writes, you don't typically see more than a dozen packfiles. A ton of reads. Go maps are the obvious choice.
* Revert "Compute checksum when reading packfiles"Gravatar Runxi Yu2025-11-174-58/+3
| | | | | | | This reverts commit 1dcb92427c23d0a8b23c0154b892243c749afa5a. Yeah this should be part of the network protocol rather than being done on *every read*.
* Remove an unnecessary blank lineGravatar Runxi Yu2025-11-172-2/+0
|
* Compute checksum when reading packfilesGravatar Runxi Yu2025-11-174-3/+58
|
* Add internal todoGravatar Runxi Yu2025-11-171-0/+9
|
* Remove meaningless commentGravatar Runxi Yu2025-11-171-1/+0
|
* refs: resolvePackedRef shall return ErrNotFound when not finding refsGravatar Runxi Yu2025-11-171-2/+2
|
* Make the internal serialize function a method insteadGravatar Runxi Yu2025-11-173-21/+21
|
* Add a little bit more of documentationGravatar Runxi Yu2025-11-166-14/+43
|
* README: benmarking -> testGravatar Runxi Yu2025-11-161-2/+2
|
* Use actual git for tests and enhance HeadGravatar Runxi Yu2025-11-1623-1279/+2105
|
* EntryRecursive should return ErrNotFound instead of nil, nilGravatar Runxi Yu2025-11-161-3/+2
|
* Fix some docs and API typesGravatar Runxi Yu2025-11-166-8/+18
|
* repo is thread safeGravatar Runxi Yu2025-11-161-0/+3
|
* Documentation overhaulGravatar Runxi Yu2025-11-1611-33/+97
|
* Separate stored object types from types that the user is expected to construct.Gravatar Runxi Yu2025-11-167-34/+83
|
* Move config to its own packageGravatar Runxi Yu2025-11-163-11/+23
|
* Extract bufpool into its own packageGravatar Runxi Yu2025-11-165-148/+200
|
* Rename ObjType enumGravatar Runxi Yu2025-11-1610-132/+132
|
* Unexport Repository.HashSizeGravatar Runxi Yu2025-11-1611-33/+33
|
* Remove repo.RootGravatar Runxi Yu2025-11-161-5/+0
|
* Make ObjectType look like a pointer-receiver in the docsGravatar Runxi Yu2025-11-164-4/+8
|
* Fix tests using the wrong Serialize signaturesGravatar Runxi Yu2025-11-162-5/+21
|
* All Serialize should be able to error outGravatar Runxi Yu2025-11-163-8/+23
|
* Rename ObjType -> ObjectTypeGravatar Runxi Yu2025-11-1610-39/+39
|
* Ignore error on f.Close()Gravatar Runxi Yu2025-11-161-1/+3
|
* Add basic support for parsing configuration filesGravatar Runxi Yu2025-11-164-12/+926
| | | | Now support for switching hash algorithms should be complete!
* Make the API more consistentGravatar Runxi Yu2025-11-169-85/+85
|
* hash: Make fewer helper functions need explicit hash length fieldsGravatar Runxi Yu2025-11-1616-138/+211
|
* Revert "hash: Generic hash-algorithm API"Gravatar Runxi Yu2025-11-1619-363/+284
| | | | | | | This reverts commit 94bfb1fa147f80e6ec39009d41fc2f853925e0a5. Generics actually kinda suck for these purposes... once you look at it from the user's perspective.
* hash: Generic hash-algorithm APIGravatar Runxi Yu2025-11-1619-284/+363
|
* README: Remove example program as it's unmaintainable nowGravatar Runxi Yu2025-11-161-84/+0
|
* Update README to reflect multi-hashGravatar Runxi Yu2025-11-161-3/+3
|
* Support multiple hash sizes in one buildGravatar Runxi Yu2025-11-1618-127/+151
|
* README: Add my Villosa instanceGravatar Runxi Yu2025-11-151-0/+7
|