summaryrefslogtreecommitdiffstats
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to 'git')
-rw-r--r--git/git.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/git/git.go b/git/git.go
index 1a7ade2..34a25e5 100644
--- a/git/git.go
+++ b/git/git.go
@@ -52,6 +52,14 @@ func (g *GitRepo) Commits() ([]*object.Commit, error) {
return commits, nil
}
+func (g *GitRepo) LastCommit() (*object.Commit, error) {
+ c, err := g.r.CommitObject(g.h)
+ if err != nil {
+ return nil, fmt.Errorf("last commit: %w", err)
+ }
+ return c, nil
+}
+
func (g *GitRepo) FileContent(path string) (string, error) {
c, err := g.r.CommitObject(g.h)
if err != nil {