diff options
author | Wincent Colaiuta <win@wincent.com> | 2007-12-13 21:24:52 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-13 23:05:42 -0800 |
commit | 62c64895cfcf3bbf34969a69fa96a631f7d5b14e (patch) | |
tree | ba4176915a9320356f245f401913d2bfa9992b43 /Documentation/diff-options.txt | |
parent | 913b45f51b151d8e29f86df67d3e10853d831470 (diff) | |
download | git-62c64895cfcf3bbf34969a69fa96a631f7d5b14e.tar.gz git-62c64895cfcf3bbf34969a69fa96a631f7d5b14e.tar.xz |
"diff --check" should affect exit status
"git diff" has a --check option that can be used to check for whitespace
problems but it only reported by printing warnings to the
console.
Now when the --check option is used we give a non-zero exit status,
making "git diff --check" nicer to use in scripts and hooks.
Signed-off-by: Wincent Colaiuta <win@wincent.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/diff-options.txt')
-rw-r--r-- | Documentation/diff-options.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt index 5d22b7b58..9ecc1d7bc 100644 --- a/Documentation/diff-options.txt +++ b/Documentation/diff-options.txt @@ -93,7 +93,9 @@ endif::git-format-patch[] --check:: Warn if changes introduce trailing whitespace - or an indent that uses a space before a tab. + or an indent that uses a space before a tab. Exits with + non-zero status if problems are found. Not compatible with + --exit-code. --full-index:: Instead of the first handful characters, show full |