ref: d585f0889eef41f1386abefe3daa2e617a21895e
parent: 78a035210ad34488d6feca45c3ce00825ee1d2c5
author: Runxi Yu <me@runxiyu.org>
date: Wed Mar 4 09:31:38 EST 2026
*: Add package-level docs
--- a/cmd/show-object/main.go
+++ b/cmd/show-object/main.go
@@ -1,3 +1,4 @@
+// Command show-object provides a small command line utility to show the details of a specified Git object.
package main
import (
--- /dev/null
+++ b/format/doc.go
@@ -1,0 +1,2 @@
+// Package format encapsulates constants and general-purpose routines for Git-related formats.
+package format
--- /dev/null
+++ b/internal/adler32/doc.go
@@ -1,0 +1,2 @@
+// Package adler32 implements an SIMD-optimized Adler-32 checksum.
+package adler32
--- a/reachability/reachability.go
+++ b/reachability/reachability.go
@@ -1,3 +1,4 @@
+// Package reachability traverses the object graph to test relationships and emit object lists.
package reachability
import (
--
⑨