shithub: furgit

ref: fb9eb058f1c9b7cb26f33bbe679a85f530566641
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
)