ref: 9053c85456bd9b4457b588610eeef1b8dfff2b89
dir: /internal/testgit/repo.go/
// Package testgit provides helpers for integration tests with upstream git(1).
package testgit
import "codeberg.org/lindenii/furgit/objectid"
// TestRepo is a temporary git repository harness for integration tests.
type TestRepo struct {
dir string
algo objectid.Algorithm
env []string
}