shithub: furgit

ref: a902f6849d938a51fa34dc292f5c81d26c4b6c36
dir: /format/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
)