ref: 8f577284f47f699855dcb3ceda21aa9d8be77c2f
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 )