···55// TreeFS returns a new filesystem view rooted at root, which may be any
66// tree-ish object accepted by PeelToTreeID.
77//
88-// Labels: Deps-Borrowed, Life-Parent, Close-No.
88+// Labels: Deps-Borrowed, Life-Parent.
99func (r *Fetcher) TreeFS(root objectid.ObjectID) (*TreeFS, error) {
1010 rootTree, err := r.PeelToTreeID(root)
1111 if err != nil {
+1-1
repository/commit_queries.go
···77//
88// Use CommitQueries for ancestor checks and merge-base computation.
99//
1010-// Labels: Life-Parent, Close-No.
1010+// Labels: Life-Parent.
1111func (repo *Repository) CommitQueries() *commitquery.Queries {
1212 return repo.commitQueries
1313}
+1-1
repository/fetcher.go
···88// need to peel through annotated tags, or when you want path-based access
99// within trees.
1010//
1111-// Labels: Life-Parent, Close-No.
1111+// Labels: Life-Parent.
1212func (repo *Repository) Fetcher() *fetch.Fetcher {
1313 return repo.fetcher
1414}
+1-1
repository/reachability.go
···88// Use Reachability to walk reachable commits or objects and to perform
99// connectivity checks.
1010//
1111-// Labels: Life-Parent, Close-No.
1111+// Labels: Life-Parent.
1212func (repo *Repository) Reachability() *reachability.Reachability {
1313 return reachability.New(repo.objects, repo.commitGraph)
1414}