ref: af08c84539f9353718604988ba27ae3c466860fc
dir: /format/commitgraph/read/mode.go/
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 )