shithub: furgit

ref: d2d3ce370816d178cc0beb4271123ee37d07657c
dir: /commitgraph/read/mode.go/

View raw version
package read

// OpenMode controls which commit-graph layout Open loads.
type OpenMode uint8

const (
	// OpenSingle opens one commit-graph file at info/commit-graph.
	OpenSingle OpenMode = iota
	// OpenChain opens chained commit-graphs from info/commit-graphs.
	OpenChain
)