summaryrefslogtreecommitdiff
path: root/src/diff.h
Commit message (Collapse)AuthorAgeFilesLines
...
* First pass of diff index to workdir implementationRussell Belfer2012-03-021-1/+1
| | | | | | | | | | This is an initial version of git_diff_workdir_to_index. It also includes renaming some structures and some refactoring of the existing code so that it could be shared better with the new function. This is not complete since it needs a rebase to get some new odb functions from the upstream branch.
* 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.