shithub: furgit

Download patch

ref: 65242328262d4a4ad611951deeef7b2d721cc05d
parent: f50ac551c56569e109a8350f27dab53bb2378d4d
author: Runxi Yu <runxiyu@umich.edu>
date: Sun Mar 29 11:46:44 EDT 2026

*: Audit labels

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