shithub: furgit

ref: 1556cfb51d980ae8c5bf664ad69f3abd46f02386
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
)