mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* 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
 |