summaryrefslogtreecommitdiffstats
path: root/git/git.go
diff options
context:
space:
mode:
Diffstat (limited to 'git/git.go')
-rw-r--r--git/git.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/git/git.go b/git/git.go
index 13e703c..c7f72d3 100644
--- a/git/git.go
+++ b/git/git.go
@@ -64,6 +64,25 @@ func FilesAtRef(r *git.Repository, hash plumbing.Hash, path string) ([]NiceTree,
return files, nil
}
+func FileContentAtRef(r *git.Repository, hash plumbing.Hash, path string) (string, error) {
+ c, err := r.CommitObject(hash)
+ if err != nil {
+ return "", fmt.Errorf("commit object: %w", err)
+ }
+
+ tree, err := c.Tree()
+ if err != nil {
+ return "", fmt.Errorf("file tree: %w", err)
+ }
+
+ file, err := tree.File(path)
+ if err != nil {
+ return "", err
+ }
+
+ return file.Contents()
+}
+
func makeNiceTree(es []object.TreeEntry) []NiceTree {
nts := []NiceTree{}
for _, e := range es {