Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-03GIT_DIFF_FIND_REMOVE_UNMODIFIED sounds betterRussell Belfer
2013-12-03Add GIT_DIFF_FIND_DELETE_UNMODIFIED flagRussell Belfer
When doing copy detection, it is often necessary to include UNMODIFIED records in the git_diff so they are available as source records for GIT_DIFF_FIND_COPIES_FROM_UNMODIFIED. Yet in the final diff, often you will not want to have these UNMODIFIED records. This adds a flag which marks these UNMODIFIED records for deletion from the diff list so they will be removed after the rename detect phase is over.
2013-12-03Fix bug making split deltas a COPIED targetsRussell Belfer
When FIND_COPIES is used in combination with BREAK_REWRITES for rename detection, there was a bug where the split MODIFIED delta was only used as a target for RENAME records and not for COPIED records. This fixes that, converting the split into a pair of DELETED and COPIED deltas when that circumstance arises.
2013-11-19Add content offset to git_diff_lineNick Hengeveld
For additions and deletions, external consumers like subversion can make use of the content offset to generate diffs in their proprietary formats.
2013-11-15Rename tests-clar to testsBen Straub