aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object/change_test.go
Commit message (Collapse)AuthorAgeFilesLines
* object: fix Change.Files() method behavior (fix #317)Antonio Jesus Navarro Perez2017-04-061-0/+48
| | | | | - 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-5/+5
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* replace os.FileMode use with filemode.FileModeAlberto Cortés2017-03-011-5/+5
|
* plumbing/object: move difftree to object packageAntonio Jesus Navarro Perez2017-02-241-0/+299
- To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object.