diff options
Diffstat (limited to 'plumbing/object/commit.go')
-rw-r--r-- | plumbing/object/commit.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plumbing/object/commit.go b/plumbing/object/commit.go index 0a20ae6..c5a1867 100644 --- a/plumbing/object/commit.go +++ b/plumbing/object/commit.go @@ -64,6 +64,21 @@ func (c *Commit) Tree() (*Tree, error) { return GetTree(c.s, c.TreeHash) } +// Patch returns the Patch between the actual commit and the provided one. +func (c *Commit) Patch(to *Commit) (*Patch, error) { + fromTree, err := c.Tree() + if err != nil { + return nil, err + } + + toTree, err := to.Tree() + if err != nil { + return nil, err + } + + return fromTree.Patch(toTree) +} + // Parents return a CommitIter to the parent Commits. func (c *Commit) Parents() CommitIter { return NewCommitIter(c.s, |