Struct git2::DiffOptions [] [src]

pub struct DiffOptions { /* fields omitted */ }

Structure describing options about how the diff should be executed.

Methods

impl DiffOptions
[src]

[src]

Creates a new set of empty diff options.

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

[src]

Flag indicating whether the sides of the diff will be reversed.

[src]

Flag indicating whether ignored files are included.

[src]

Flag indicating whether ignored directories are traversed deeply or not.

[src]

Flag indicating whether untracked files are in the diff

[src]

Flag indicating whether untracked directories are deeply traversed or not.

[src]

Flag indicating whether unmodified files are in the diff.

[src]

If entrabled, then Typechange delta records are generated.

[src]

Event with include_typechange, the tree treturned generally shows a deleted blow. This flag correctly labels the tree transitions as a typechange record with the new_file's mode set to tree.

Note that the tree SHA will not be available.

[src]

Flag indicating whether file mode changes are ignored.

[src]

Flag indicating whether all submodules should be treated as unmodified.

[src]

Flag indicating whether case insensitive filenames should be used.

[src]

If pathspecs are specified, this flag means that they should be applied as an exact match instead of a fnmatch pattern.

[src]

Disable updating the binary flag in delta records. This is useful when iterating over a diff if you don't need hunk and data callbacks and want to avoid having to load a file completely.

[src]

When diff finds an untracked directory, to match the behavior of core Git, it scans the contents for ignored and untracked files. If all contents are ignored, then the directory is ignored; if any contents are not ignored, then the directory is untracked. This is extra work that may not matter in many cases.

This flag turns off that scan and immediately labels an untracked directory as untracked (changing the behavior to not match core git).

[src]

When diff finds a file in the working directory with stat information different from the index, but the OID ends up being the same, write the correct stat information into the index. Note: without this flag, diff will always leave the index untouched.

[src]

Include unreadable files in the diff

[src]

Include unreadable files in the diff

[src]

Treat all files as text, disabling binary attributes and detection.

[src]

Treat all files as binary, disabling text diffs

[src]

Ignore all whitespace

[src]

Ignore changes in the amount of whitespace

[src]

Ignore whitespace at tend of line

[src]

When generating patch text, include the content of untracked files.

This automatically turns on include_untracked but it does not turn on recurse_untracked_dirs. Add that flag if you want the content of every single untracked file.

[src]

When generating output, include the names of unmodified files if they are included in the Diff. Normally these are skipped in the formats that list files (e.g. name-only, name-status, raw). Even with this these will not be included in the patch format.

[src]

Use the "patience diff" algorithm

[src]

Take extra time to find the minimal diff

[src]

Include the necessary deflate/delta information so that git-apply can apply given diff information to binary files.

[src]

Set the number of unchanged lines that define the boundary of a hunk (and to display before and after).

The default value for this is 3.

[src]

Set the maximum number of unchanged lines between hunk boundaries before the hunks will be merged into one.

The default value for this is 0.

[src]

The default value for this is core.abbrev or 7 if unset.

[src]

Maximum size (in bytes) above which a blob will be marked as binary automatically.

A negative value will disable this entirely.

The default value for this is 512MB.

[src]

The virtual "directory" to prefix old file names with in hunk headers.

The default value for this is "a".

[src]

The virtual "directory" to prefix new file names with in hunk headers.

The default value for this is "b".

[src]

Add to the array of paths/fnmatch patterns to constrain the diff.

[src]

Acquire a pointer to the underlying raw options.

This function is unsafe as the pointer is only valid so long as this structure is not moved, modified, or used elsewhere.

Trait Implementations

impl Default for DiffOptions
[src]

[src]

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