ref: 9bd37998c9ea890401b66604806f7d1fe06b9256
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 )