ref: 65a6439638a18e4317e144a0117db7604a2f2940
dir: /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 )