aboutsummaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
authorAnirudh Oppiliappan <x@icyphox.sh>2022-12-12 21:33:09 +0530
committerAnirudh Oppiliappan <x@icyphox.sh>2022-12-12 21:33:09 +0530
commit01f27147baf80e2222927ddca9369c7d99b4ff3c (patch)
treeffd8f1431f83ae4f1b390c907ee45c377c84f436 /git
parentroutes: render readme (diff)
downloadlegitrx-01f27147baf80e2222927ddca9369c7d99b4ff3c.tar.gz
legitrx-01f27147baf80e2222927ddca9369c7d99b4ff3c.tar.zst
legitrx-01f27147baf80e2222927ddca9369c7d99b4ff3c.zip
routes: index view
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 {