Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | difftree: simplify hash comparison with deprecated files modes | Alberto Cortés | 2017-03-03 | 1 | -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.FileMode | Alberto Cortés | 2017-03-01 | 1 | -4/+4 |
| | |||||
* | plumbing/object: move difftree to object package | Antonio Jesus Navarro Perez | 2017-02-24 | 1 | -0/+381 |
- To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object. |