Get returns a commit node from a commit hash
(hash plumbing.Hash)
| 41 | type CommitNodeIndex interface { |
| 42 | // Get returns a commit node from a commit hash |
| 43 | Get(hash plumbing.Hash) (CommitNode, error) |
| 44 | } |
| 45 | |
| 46 | // CommitNodeIter is a generic closable interface for iterating over commit nodes. |
no outgoing calls