Struct git2::DiffFindOptions [] [src]

pub struct DiffFindOptions { /* fields omitted */ }

Control behavior of rename and copy detection

Methods

impl DiffFindOptions
[src]

[src]

Creates a new set of empty diff find options.

All flags and other options are defaulted to false or their otherwise zero equivalents.

[src]

Reset all flags back to their unset state, indicating that diff.renames should be used instead. This is overridden once any flag is set.

[src]

Look for renames?

[src]

Consider old side of modified for renames?

[src]

Look for copies?

[src]

Consider unmodified as copy sources?

For this to work correctly, use include_unmodified when the initial diff is being generated.

[src]

Mark significant rewrites for split.

[src]

Actually split large rewrites into delete/add pairs

[src]

Find renames/copies for untracked items in working directory.

For this to work correctly use the include_untracked option when the initial diff is being generated.

[src]

Turn on all finding features.

[src]

Measure similarity ignoring leading whitespace (default)

[src]

Measure similarity ignoring all whitespace

[src]

Measure similarity including all data

[src]

Measure similarity only by comparing SHAs (fast and cheap)

[src]

Do not break rewrites unless they contribute to a rename.

Normally, break_rewrites and rewrites will measure the self-similarity of modified files and split the ones that have changed a lot into a delete/add pair. Then the sides of that pair will be considered candidates for rename and copy detection

If you add this flag in and the split pair is not used for an actual rename or copy, then the modified record will be restored to a regular modified record instead of being split.

[src]

Remove any unmodified deltas after find_similar is done.

Using copies_from_unmodified to emulate the --find-copies-harder behavior requires building a diff with the include_unmodified flag. If you do not want unmodified records in the final result, pas this flag to have them removed.

[src]

Similarity to consider a file renamed (default 50)

[src]

Similarity of modified to be glegible rename source (default 50)

[src]

Similarity to consider a file copy (default 50)

[src]

Similarity to split modify into delete/add pair (default 60)

[src]

Maximum similarity sources to examine for a file (somewhat like git-diff's -l option or diff.renameLimit config)

Defaults to 200

Trait Implementations

impl Default for DiffFindOptions
[src]

[src]

Returns the "default value" for a type. Read more