aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object/difftree_test.go
Commit message (Collapse)AuthorAgeFilesLines
* *: migration from go-git-fixtures/v4 and go-git/gcfgMáximo Cuadros2020-03-101-2/+1
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-8/+8
|
* Expose Storage cache.kuba--2018-09-071-2/+2
| | | | Signed-off-by: kuba-- <kuba@sourced.tech>
* *: use parser to populate non writable storages and bug fixesMiguel Molina2018-08-071-12/+4
| | | | Signed-off-by: Miguel Molina <miguel@erizocosmi.co>
* all: gofmt -sferhat elmas2017-11-301-1/+1
|
* update to go-billy.v4 and go-git-fixtures.v3Máximo Cuadros2017-11-231-1/+1
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-7/+7
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* difftree: simplify hash comparison with deprecated files modesAlberto Cortés2017-03-031-14/+17
| | | | | | | | | | Difftree hash comparisson was quite complex because the hashes of deprecated files were diferent from the hashes of regular files. But git's difftree really treat them as equal. This patch fix this by making treenoder return the same hash for regular files than for deprecated files; now the hash comparison function is just a bytes.Equal call.
* replace os.FileMode use with filemode.FileModeAlberto Cortés2017-03-011-4/+4
|
* plumbing/object: move difftree to object packageAntonio Jesus Navarro Perez2017-02-241-0/+381
- To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object.