Namespaces

Types in GitSharp.Commands

Type DiffFilesCommand

Namespace GitSharp.Commands

Parent AbstractCommand

Properties

Public properties

string Abbrev get; set;

Not implemented Instead of showing the full 40-byte hexadecimal object name in diff-raw format output and diff-tree header lines, show only a partial prefix. This is independent of the `--full-index` option above, which controls the diff-patch output format. Non default number of digits can be specified with `--abbrev=`.

string ActualDirectory get;

List<string> Arguments get; set;

bool B get; set;

Not implemented Break complete rewrite changes into pairs of delete and create.

bool Binary get; set;

Not implemented In addition to `--full-index`, output a binary diff that can be applied with `git-apply`.

bool C get; set;

Not implemented Detect copies as well as renames. See also `--find-copies-harder`.

bool Cc get; set;

Not implemented This compares stage 2 (our branch), stage 3 (their branch) and the working tree file and outputs a combined diff, similar to the way 'diff-tree' shows a merge commit with these flags.

bool Check get; set;

Not implemented ifndef::git-format-patch[] Warn if changes introduce trailing whitespace or an indent that uses a space before a tab. Exits with non-zero status if problems are found. Not compatible with --exit-code. endif::git-format-patch[]

bool Color get; set;

Not implemented Show colored diff.

string ColorWords get; set;

Not implemented Show colored word diff, i.e., color words which have changed. By default, words are separated by whitespace. + When a is specified, every non-overlapping match of the considered whitespace and ignored(!) for the purposes of finding differences. You may want to append `|[^[:space:]]` to your regular expression to make sure that it matches all non-whitespace characters. A match that contains a newline is silently truncated(!) at the newline. + The regex can also be set via a diff driver or configuration option, see linkgit:gitattributes[1] or linkgit:git-config[1]. Giving it explicitly overrides any diff driver or configuration setting. Diff drivers override configuration settings. endif::git-format-patch[]

string DiffFilter get; set;

Not implemented ifndef::git-format-patch[] Select only files that are Added (`A`), Copied (`C`), Deleted (`D`), Modified (`M`), Renamed (`R`), have their type (i.e. regular file, symlink, submodule, ...) changed (`T`), are Unmerged (`U`), are Unknown (`X`), or have had their pairing Broken (`B`). Any combination of the filter characters may be used. When `*` (All-or-none) is added to the combination, all paths are selected if there is any file that matches other criteria in the comparison; if there is no file that matches other criteria, nothing is selected. endif::git-format-patch[]

string Dirstat get; set;

Not implemented Output the distribution of relative amount of changes (number of lines added or removed) for each sub-directory. Directories with changes below a cut-off percent (3% by default) are not shown. The cut-off percent can be set with `--dirstat=limit`. Changes in a child directory is not counted for the parent directory, unless `--cumulative` is used.

string DirstatByFile get; set;

Not implemented Same as `--dirstat`, but counts changed files instead of lines.

string DstPrefix get; set;

Not implemented Show the given destination prefix instead of "b/".

bool ExitCode get; set;

Not implemented ifndef::git-format-patch[] Make the program exit with codes similar to diff(1). That is, it exits with 1 if there were differences and 0 means no differences.

bool ExtDiff get; set;

Not implemented Allow an external diff helper to be executed. If you set an external diff driver with linkgit:gitattributes[5], you need to use this option with linkgit:git-log[1] and friends.

bool FindCopiesHarder get; set;

Not implemented For performance reasons, by default, `-C` option finds copies only if the original file of the copy was modified in the same changeset. This flag makes the command inspect unmodified files as candidates for the source of copy. This is a very expensive operation for large projects, so use it with caution. Giving more than one `-C` option has the same effect.

bool FullIndex get; set;

Not implemented Instead of the first handful of characters, show the full pre- and post-image blob object names on the "index" line when generating patch format output.

string GitDirectory get; set;

bool IgnoreAllSpace get; set;

Not implemented Ignore whitespace when comparing lines. This ignores differences even if one line has whitespace where the other line has none.

bool IgnoreSpaceAtEol get; set;

Not implemented Ignore changes in whitespace at EOL.

bool IgnoreSpaceChange get; set;

Not implemented Ignore changes in amount of whitespace. This ignores whitespace at line end, and considers all other sequences of one or more whitespace characters to be equivalent.

bool IgnoreSubmodules get; set;

Not implemented Ignore changes to submodules in the diff generation.

string InterHunkContext get; set;

Not implemented Show the context between diff hunks, up to the specified number of lines, thereby fusing hunks that are close to each other.

string L get; set;

Not implemented The `-M` and `-C` options require O(n^2) processing time where n is the number of potential rename/copy targets. This option prevents rename/copy detection from running if the number of rename/copy targets exceeds the specified number.

bool M get; set;

Not implemented Detect renames.

bool NameOnly get; set;

Not implemented Show only names of changed files.

bool NameStatus get; set;

Not implemented Show only names and status of changed files. See the description of the `--diff-filter` option on what the status letters mean.

bool NoColor get; set;

Not implemented Turn off colored diff, even when the configuration file gives the default to color output.

bool NoExtDiff get; set;

Not implemented Disallow external diff drivers.

bool NoPrefix get; set;

Not implemented Do not show any source or destination prefix.

bool NoRenames get; set;

Not implemented Turn off rename detection, even when the configuration file gives the default to do so.

bool NoStat get; set;

Not implemented ifdef::git-format-patch[] Generate plain patches without any diffstats. endif::git-format-patch[]

bool Numstat get; set;

Not implemented Similar to `\--stat`, but shows number of added and deleted lines in decimal notation and pathname without abbreviation, to make it more machine friendly. For binary files, outputs two `-` instead of saying `0 0`.

string O get; set;

Not implemented Output the patch in the order specified in the , which has one shell glob pattern per line.

bool One get; set;

Not implemented Diff against the "base" version, "our branch" or "their branch" respectively. With these options, diffs for merged entries are not shown. + The default is to diff against our branch (-2) and the cleanly resolved paths. The option -0 can be given to omit diff output for unmerged entries and just show "Unmerged".

StreamWriter OutputStream get; set;

bool P get; set;

Not implemented ifndef::git-format-patch[] Generate patch (see section on generating patches). {git-diff? This is the default.} endif::git-format-patch[]

bool PatchWithRaw get; set;

Not implemented ifndef::git-format-patch[] Synonym for `-p --raw`. endif::git-format-patch[]

bool PatchWithStat get; set;

Not implemented ifndef::git-format-patch[] Synonym for `-p --stat`. endif::git-format-patch[]

bool Patience get; set;

Not implemented Generate a diff using the "patience diff" algorithm.

bool PickaxeAll get; set;

Not implemented When `-S` finds a change, show all the changes in that changeset, not just the files that contain the change in .

string PickaxeRegex get; set;

Not implemented Make the not a plain string but an extended POSIX regex to match. endif::git-format-patch[]

bool Q get; set;

Not implemented Remain silent even on nonexistent files

bool Quiet get; set;

Not implemented Disable all output of the program. Implies `--exit-code`. endif::git-format-patch[]

bool R get; set;

Not implemented ifndef::git-format-patch[] Swap two inputs; that is, show differences from index or on-disk file to tree contents.

bool Raw get; set;

Not implemented ifndef::git-format-patch[] Generate the raw format. {git-diff-core? This is the default.} endif::git-format-patch[]

string Relative get; set;

Not implemented When run from a subdirectory of the project, it can be told to exclude changes outside the directory and show pathnames relative to it with this option. When you are not in a subdirectory (e.g. in a bare repository), you can name which subdirectory to make the output relative to by giving a as an argument. endif::git-format-patch[]

Repository Repository get; set;

string S get; set;

Not implemented ifndef::git-format-patch[] Look for differences that introduce or remove an instance of . Note that this is different than the string simply appearing in diff output; see the 'pickaxe' entry in linkgit:gitdiffcore[7] for more details.

bool Shortstat get; set;

Not implemented Output only the last line of the `--stat` format containing total number of modified files, as well as number of added and deleted lines.

string SrcPrefix get; set;

Not implemented Show the given source prefix instead of "a/".

string Stat get; set;

Not implemented Generate a diffstat. You can override the default output width for 80-column terminal by `--stat=width`. The width of the filename part can be controlled by giving another width to it separated by a comma.

string Submodule get; set;

Not implemented Chose the output format for submodule differences. can be one of 'short' and 'log'. 'short' just shows pairs of commit names, this format is used when this option is not given. 'log' is the default value for this option and lists the commits in that commit range like the 'summary' option of linkgit:git-submodule[1] does.

bool Summary get; set;

Not implemented Output a condensed summary of extended header information such as creations, renames and mode changes.

bool Text get; set;

Not implemented Treat all files as text.

bool Three get; set;

Not implemented Diff against the "base" version, "our branch" or "their branch" respectively. With these options, diffs for merged entries are not shown. + The default is to diff against our branch (-2) and the cleanly resolved paths. The option -0 can be given to omit diff output for unmerged entries and just show "Unmerged".

bool Two get; set;

Not implemented Diff against the "base" version, "our branch" or "their branch" respectively. With these options, diffs for merged entries are not shown. + The default is to diff against our branch (-2) and the cleanly resolved paths. The option -0 can be given to omit diff output for unmerged entries and just show "Unmerged".

bool U get; set;

Not implemented ifndef::git-format-patch[] Generate patch (see section on generating patches). {git-diff? This is the default.} endif::git-format-patch[]

string Unified get; set;

Not implemented Generate diffs with lines of context instead of the usual three. ifndef::git-format-patch[] Implies `-p`. endif::git-format-patch[]

bool Z get; set;

Not implemented ifdef::git-log[] Separate the commits with NULs instead of with new newlines. + Also, when `--raw` or `--numstat` has been given, do not munge pathnames and use NULs as output field terminators. endif::git-log[] ifndef::git-log[] When `--raw` or `--numstat` has been given, do not munge pathnames and use NULs as output field terminators. endif::git-log[] + Without this option, each pathname output will have TAB, LF, double quotes, and backslash characters replaced with `\t`, `\n`, `\"`, and `\\`, respectively, and the pathname will be enclosed in double quotes if any of those replacements occurred.

bool Zero get; set;

Not implemented Diff against the "base" version, "our branch" or "their branch" respectively. With these options, diffs for merged entries are not shown. + The default is to diff against our branch (-2) and the cleanly resolved paths. The option -0 can be given to omit diff output for unmerged entries and just show "Unmerged".