aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object/commit.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-11-20 01:55:48 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2017-11-20 01:55:48 +0100
commite09fa242c1f97547527fa0cb9f6288f9ae17479e (patch)
treefea2c5955e9a50612833affcb301779a94e71adb /plumbing/object/commit.go
parenta0b45cc5508ae48b01799ca800e464888ed598be (diff)
downloadgo-git-e09fa242c1f97547527fa0cb9f6288f9ae17479e.tar.gz
plumbing: object, commit.Parent() method
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
Diffstat (limited to 'plumbing/object/commit.go')
-rw-r--r--plumbing/object/commit.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/plumbing/object/commit.go b/plumbing/object/commit.go
index 772ce17..a994efb 100644
--- a/plumbing/object/commit.go
+++ b/plumbing/object/commit.go
@@ -92,14 +92,15 @@ func (c *Commit) NumParents() int {
return len(c.ParentHashes)
}
-var ErrNoParents = errors.New("commit has no parents")
+var ErrParentNotFound = errors.New("commit parent not found")
-// FirstParent returns the first parent of c.
-func (c *Commit) FirstParent() (*Commit, error) {
- if len(c.ParentHashes) == 0 {
- return nil, ErrNoParents
+// Parent returns the ith parent of a commit.
+func (c *Commit) Parent(i int) (*Commit, error) {
+ if len(c.ParentHashes) == 0 || i > len(c.ParentHashes)-1 {
+ return nil, ErrParentNotFound
}
- return GetCommit(c.s, c.ParentHashes[0])
+
+ return GetCommit(c.s, c.ParentHashes[i])
}
// File returns the file with the specified "path" in the commit and a