objectCommitNode is a representation of Commit as presented in the GIT object format. objectCommitNode implements the CommitNode interface.
| 13 | // |
| 14 | // objectCommitNode implements the CommitNode interface. |
| 15 | type objectCommitNode struct { |
| 16 | nodeIndex CommitNodeIndex |
| 17 | commit *object.Commit |
| 18 | } |
| 19 | |
| 20 | // NewObjectCommitNodeIndex returns CommitNodeIndex implementation that uses |
| 21 | // only object storage to load the nodes |
nothing calls this directly
no outgoing calls
no test coverage detected