summaryrefslogtreecommitdiff
path: root/src/diff.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Continue implementation of git-diffRussell Belfer2012-03-021-1/+4
| | | | | | | | * Implemented git_diff_index_to_tree * Reworked git_diff_options structure to handle more options * Made most of the options in git_diff_options actually work * Reorganized code a bit to remove some redundancy * Added option parsing to examples/diff.c to test most options
* Implement diff lists and formattersRussell Belfer2012-03-021-0/+22
This reworks the diff API to separate the steps of producing a diff descriptions from formatting the diff. This will allow us to share diff output code with the various diff creation scenarios and will allow us to implement rename detection as an optional pass that can be run on a diff list.