blob: c5f119534e95baf3c5227a49f1ac1b5be22cc793 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package repository
import "lindenii.org/go/furgit/commitquery"
// CommitQueries returns commit queries backed by the repository's object store
// and optional commit-graph.
//
// Use CommitQueries for ancestor checks and merge-base computation.
//
// Labels: Life-Parent.
func (repo *Repository) CommitQueries() *commitquery.Queries {
return repo.commitQueries
}
|