diff options
author | Gerrit Pape <pape@smarden.org> | 2008-04-21 18:15:52 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-21 22:50:21 -0700 |
commit | 37152d831048a0b30600a7b7e7926af2d5bcfab8 (patch) | |
tree | 427e04bb34cad839c32173d5864c518239546a40 /Documentation | |
parent | 66aaa2fc22c8494d9019b241f5d6395a6044a895 (diff) | |
download | git-37152d831048a0b30600a7b7e7926af2d5bcfab8.tar.gz |
diff-options.txt: document the new "--dirstat" option
This commit adds the documentation for the new option added by 7df7c01
(Add "--dirstat" for some directory statistics, 2008-02-12).
Noticed by Clint Adams, reported through
http://bugs.debian.org/476437
Signed-off-by: Gerrit Pape <pape@smarden.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/diff-options.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt index 8dc5b001c4..01e7a57851 100644 --- a/Documentation/diff-options.txt +++ b/Documentation/diff-options.txt @@ -58,6 +58,14 @@ endif::git-format-patch[] number of modified files, as well as number of added and deleted lines. +--dirstat[=limit]:: + Output only the sub-directories that are impacted by a diff, + and to what degree they are impacted. You can override the + default cut-off in percent (3) by "--dirstat=limit". If you + want to enable "cumulative" directory statistics, you can use + the "--cumulative" flag, which adds up percentages recursively + even when they have been already reported for a sub-directory. + --summary:: Output a condensed summary of extended header information such as creations, renames and mode changes. |