From a0b45cc5508ae48b01799ca800e464888ed598be Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Thu, 3 Aug 2017 16:46:57 -0700 Subject: plumbing/object: add Commit.FirstParent First parents are somewhat special in git. There's even a --first-parent flag to 'git log'. Add a helper method to look them up. This avoids boilerplate and spares the client from having to arrange for a handle to the Storer, which is stored in the unexported field Commit.s. --- plumbing/object/commit.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plumbing/object/commit.go b/plumbing/object/commit.go index c5a1867..772ce17 100644 --- a/plumbing/object/commit.go +++ b/plumbing/object/commit.go @@ -3,6 +3,7 @@ package object import ( "bufio" "bytes" + "errors" "fmt" "io" "strings" @@ -91,6 +92,16 @@ func (c *Commit) NumParents() int { return len(c.ParentHashes) } +var ErrNoParents = errors.New("commit has no parents") + +// FirstParent returns the first parent of c. +func (c *Commit) FirstParent() (*Commit, error) { + if len(c.ParentHashes) == 0 { + return nil, ErrNoParents + } + return GetCommit(c.s, c.ParentHashes[0]) +} + // File returns the file with the specified "path" in the commit and a // nil error if the file exists. If the file does not exist, it returns // a nil file and the ErrFileNotFound error. -- cgit