aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer/object_test.go
Commit message (Collapse)AuthorAgeFilesLines
* git: clone --shared implementedenverbisevac2023-10-081-0/+4
|
* fix goreportcard warningsOleg Kovalov2020-07-011-1/+2
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-1/+1
|
* object: get object size without reading whole objectJeremy Stribling2018-10-111-0/+10
| | | | Signed-off-by: Jeremy Stribling <strib@alum.mit.edu>
* storer: separate loose and packed object mgmt into optional ifacesJeremy Stribling2017-11-291-21/+0
| | | | Suggested by mcuadros.
* plumbing: add `HasEncodedObject` method to StorerJeremy Stribling2017-11-291-0/+9
| | | | | | | This allows the user to check whether an object exists, without reading all the object data from storage. Issue: KBFS-2445
* Make object repacking more configurableTaru Karttunen2017-11-291-0/+4
|
* Support for repacking objectsTaru Karttunen2017-11-291-0/+4
|
* First pass of prune designTaru Karttunen2017-11-291-0/+13
|
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-1/+1
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* new srcd.works/go-git.v4 pathMáximo Cuadros2017-01-301-1/+1
|
* move plumbing from top level package to plumbing (#183)Santiago M. Mola2016-12-141-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * plumbing: rename Object -> EncodedObject. * plumbing/storer: rename ObjectStorer -> EncodedObjectStorer. * move difftree to plumbing/difftree. * move diff -> utils/diff * make Object/Tag/Blob/Tree/Commit/File depend on storer. * Object and its implementations now depend only on storer.EncodedObjectStorer, not git.Repository. * Tests are decoupled accordingly. * move Object/Commit/File/Tag/Tree to plumbing/object. * move Object/Commit/File/Tag/Tree to plumbing/object. * move checkClose to utils/ioutil. * move RevListObjects to plumbing/revlist.Objects. * move DiffTree to plumbing/difftree package. * rename files with plural nouns to singular * plumbing/object: add GetBlob/GetCommit/GetTag/GetTree.
* new plumbing package (#118)Máximo Cuadros2016-11-081-0/+150
* plumbing: now core was renamed to core, and formats and clients moved inside