ReadTree will return the list of entries in a Git tree The given hash could be from either a commit or a tree Returns ErrNotFound if not found.
(hash Hash)
| 156 | // The given hash could be from either a commit or a tree |
| 157 | // Returns ErrNotFound if not found. |
| 158 | ReadTree(hash Hash) ([]TreeEntry, error) |
| 159 | |
| 160 | // StoreCommit will store a Git commit with the given Git tree |
| 161 | StoreCommit(treeHash Hash, parents ...Hash) (Hash, error) |
no outgoing calls