···1414func run(repoPath, destinationPath, objectFormat string, fixThin, writeRev bool) error {
1515 var (
1616 algo objectid.Algorithm
1717- base objectstore.ReadingStore
1717+ base objectstore.Reader
1818 repo *repository.Repository
1919 )
2020
+1-1
format/packfile/ingest/api.go
···1919 // WriteRev writes a .rev alongside the .pack and .idx.
2020 WriteRev bool
2121 // Base supplies existing objects for thin-pack fixup.
2222- Base objectstore.ReadingStore
2222+ Base objectstore.Reader
2323 // Progress receives human-readable progress messages.
2424 //
2525 // When nil, no progress output is emitted.
+1-1
internal/peel/peel.go
···1212)
13131414// ToCommit peels annotated tags transitively until a commit is reached.
1515-func ToCommit(store objectstore.ReadingStore, id objectid.ObjectID) (objectid.ObjectID, error) {
1515+func ToCommit(store objectstore.Reader, id objectid.ObjectID) (objectid.ObjectID, error) {
1616 for {
1717 ty, _, err := store.ReadHeader(id)
1818 if err != nil {
···2626 Refs refstore.ReadWriteStore
2727 // ExistingObjects is the object store visible to the push before any newly
2828 // uploaded quarantined objects are promoted.
2929- ExistingObjects objectstore.ReadingStore
2929+ ExistingObjects objectstore.Reader
3030 // CommitGraph is an optional commit-graph snapshot corresponding to
3131 // ExistingObjects.
3232 CommitGraph *commitgraphread.Reader