blob: 2ceda59cef9797ace99a8e23f60dbdfcb0019af7 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Package fetch loads typed Git objects from object storage
// and provides higher-level object queries.
//
// Fetching is above
// [lindenii.org/go/furgit/object/store]:
// it parses stored objects
// into blobs, trees, commits, and tags,
// exposes object metadata,
// peels tree-ish or commit-ish objects,
// resolves paths within trees,
// and can expose one tree as an [io/fs].
package fetch
|