mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
6e2a59e4ce
* Experimental support for git commit graph files and bloom filter index Signed-off-by: Filip Navara <filip.navara@gmail.com> * Force vendor of commitgraph Signed-off-by: Filip Navara <filip.navara@gmail.com> * Remove bloom filter experiment and debug prints * Remove old code for building commit graphs * Remove unused function * Remove mmap usage * gofmt * sort vendor/modules.txt * Add copyright header and log commit-graph error
8 lines
360 B
Go
8 lines
360 B
Go
// Package commitgraph provides an interface for efficient traversal over Git
|
|
// commit graph either through the regular object storage, or optionally with
|
|
// the index stored in commit-graph file (Git 2.18+).
|
|
//
|
|
// The API and functionality of this package are considered EXPERIMENTAL and is
|
|
// not considered stable nor production ready.
|
|
package commitgraph
|