diff options
author | Josh Bleecher Snyder <josharian@gmail.com> | 2017-08-03 16:46:57 -0700 |
---|---|---|
committer | Josh Bleecher Snyder <josharian@gmail.com> | 2017-08-03 16:48:02 -0700 |
commit | a0b45cc5508ae48b01799ca800e464888ed598be (patch) | |
tree | 52dd72fdc905711123a7ad650ce381b952c1ef70 /plumbing | |
parent | b29ccd9cf64cb3c6d7b3fdc6649d97416f3be734 (diff) | |
download | go-git-a0b45cc5508ae48b01799ca800e464888ed598be.tar.gz |
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.
Diffstat (limited to 'plumbing')
-rw-r--r-- | plumbing/object/commit.go | 11 |
1 files changed, 11 insertions, 0 deletions
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. |