aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object/change.go
Commit message (Collapse)AuthorAgeFilesLines
* plumbing: add context to allow cancel on diff/patch computingMarc Barussaud2018-07-021-2/+19
| | | | Signed-off-by: Marc Barussaud <marc.barussaud@orange.com>
* format/diff: unified diff encoder and public APIAntonio Jesus Navarro Perez2017-05-231-0/+12
| | | | | | | | | - Added Patch interface - Added a Unified Diff encoder from Patches - Added Change method to generate Patches - Added Changes method to generate Patches - Added Tree method to generate Patches - Added Commit method to generate Patches
* object: fix Change.Files() method behavior (fix #317)Antonio Jesus Navarro Perez2017-04-061-0/+8
| | | | | - If 'from' or 'to' are tree entries that aren't files, Files() method will return nil instead of object not found error. - Added a test checking this using modules fixture.
* 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.
* plumbing/object: move difftree to object packageAntonio Jesus Navarro Perez2017-02-241-0/+120
- To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object.