aboutsummaryrefslogtreecommitdiffstats
path: root/utils/diff
Commit message (Collapse)AuthorAgeFilesLines
* fix goreportcard warningsOleg Kovalov2020-07-011-1/+1
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-1/+1
|
* format: diff, Handle no newline at end of file. Fixes #936Stuart Jansen2019-10-131-0/+31
| | | | Signed-off-by: Stuart Jansen <sjansen@buscaluz.org>
* Add diff.DoWithTimeout()Vadim Markovtsev2019-03-131-2/+16
| | | | Signed-off-by: Vadim Markovtsev <vadim@sourced.tech>
* Increase diffmatchcpatch timeoutVadim Markovtsev2019-03-101-0/+2
| | | | | | Fixes https://github.com/src-d/go-git/issues/1083 Signed-off-by: Vadim Markovtsev <vadim@sourced.tech>
* utils: diff, skip useless rune->string conversionMarc Barussaud2018-06-261-2/+2
| | | | | | | According to library documentation : https://github.com/sergi/go-diff/blob/master/diffmatchpatch/diff.go#L391 Signed-off-by: Marc Barussaud <marc.barussaud@orange.com>
* 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-142-0/+154
* 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.