blob: 0f3cf1f26b7ac22d0a27242a3f298bf17b95a3ea (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Package trees provides recursive diffs between Git tree objects.
package trees
import (
objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/object/tree"
)
// Diff compares two trees and returns recursive differences.
//
// readTree is used to lazily load child trees by object ID when recursion
// reaches directory entries.
func Diff(a, b *tree.Tree, readTree func(objectid.ObjectID) (*tree.Tree, error)) ([]Entry, error) {
var out []Entry
err := diffRecursive(a, b, nil, readTree, &out)
if err != nil {
return nil, err
}
return out, nil
}
|