diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2019-04-26 10:01:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-26 10:01:34 +0200 |
commit | ca5d7bb1a790303d2ca245cb6225850bcf5d12a6 (patch) | |
tree | ef6abbccd43edd52ea51871da9127db87b566095 /plumbing/format/commitgraph/commitgraph.go | |
parent | 830ee5b7d6e7674d41d1fc5b47c2cd6e76a07f5b (diff) | |
parent | 2123c530503c3b70cc223f5efa77bce265133d26 (diff) | |
download | go-git-ca5d7bb1a790303d2ca245cb6225850bcf5d12a6.tar.gz |
Merge pull request #1134 from filipnavara/commitgraph-fmt-3
plumbing: format/commitgraph, rename structs/fields to follow the terms used by git more closely
Diffstat (limited to 'plumbing/format/commitgraph/commitgraph.go')
-rw-r--r-- | plumbing/format/commitgraph/commitgraph.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plumbing/format/commitgraph/commitgraph.go b/plumbing/format/commitgraph/commitgraph.go index 9bf7149..e43cd89 100644 --- a/plumbing/format/commitgraph/commitgraph.go +++ b/plumbing/format/commitgraph/commitgraph.go @@ -6,9 +6,9 @@ import ( "gopkg.in/src-d/go-git.v4/plumbing"
)
-// Node is a reduced representation of Commit as presented in the commit graph
+// CommitData is a reduced representation of Commit as presented in the commit graph
// file. It is merely useful as an optimization for walking the commit graphs.
-type Node struct {
+type CommitData struct {
// TreeHash is the hash of the root tree of the commit.
TreeHash plumbing.Hash
// ParentIndexes are the indexes of the parent commits of the commit.
@@ -29,7 +29,7 @@ type Index interface { GetIndexByHash(h plumbing.Hash) (int, error)
// GetNodeByIndex gets the commit node from the commit graph using index
// obtained from child node, if available
- GetNodeByIndex(i int) (*Node, error)
+ GetCommitDataByIndex(i int) (*CommitData, error)
// Hashes returns all the hashes that are available in the index
Hashes() []plumbing.Hash
}
|