···11+// Package format encapsulates various git-related file formats.
22+//
33+// These are particularly the ones that aren't necessarily associated with
44+// a very clear domain that they obviously belong to.
55+package format
+5
format/packfile/doc.go
···11+// Package packfile provides Git packfile format parsing primitives.
22+package packfile
33+44+// TODO: This could probably be moved into object/store/packed when we get the pack ingestion semantics right?
55+// Oh, wait, the other stores might still want pack constants like we provide here.
+1-1
internal/testgit/repo_open_commit_graph.go
···33import (
44 "testing"
5566- commitgraphread "codeberg.org/lindenii/furgit/commitgraph/read"
66+ commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read"
77)
8899// OpenCommitGraph opens the repository commit-graph and registers cleanup on
···11package service
2233import (
44- "codeberg.org/lindenii/furgit/packfile/ingest"
44+ "codeberg.org/lindenii/furgit/format/packfile/ingest"
55)
6677// Result is one receive-pack execution result.
+1-1
object/storer/packed/delta_build_chain.go
···44 "fmt"
5566 objecttype "codeberg.org/lindenii/furgit/object/type"
77- packfmt "codeberg.org/lindenii/furgit/packfile"
77+ packfmt "codeberg.org/lindenii/furgit/format/packfile"
88)
991010// deltaBuildChain walks one object's chain and builds a reconstruction chain.