aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-shortlog.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-04-12 15:38:20 -0700
committerJunio C Hamano <gitster@pobox.com>2008-04-12 15:38:20 -0700
commit55ef8a4610c4f1077551682a86f9a4e6d498e8e0 (patch)
treef55f90b4ba95f0735910414e2ebce6ad5e28da29 /Documentation/git-shortlog.txt
parenta179a303524c1b81ded1d04930f1edc6b5227c9d (diff)
downloadgit-55ef8a4610c4f1077551682a86f9a4e6d498e8e0.tar.gz
Document -w option to shortlog
Noticed by Fredrik Noring. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-shortlog.txt')
-rw-r--r--Documentation/git-shortlog.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/Documentation/git-shortlog.txt b/Documentation/git-shortlog.txt
index c7752575d8..d7cb4c0468 100644
--- a/Documentation/git-shortlog.txt
+++ b/Documentation/git-shortlog.txt
@@ -8,8 +8,8 @@ git-shortlog - Summarize 'git log' output
SYNOPSIS
--------
[verse]
-git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s] [-e]
-git-shortlog [-n|--numbered] [-s|--summary] [-e|--email] [<committish>...]
+git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s] [-e] [-w]
+git-shortlog [-n|--numbered] [-s|--summary] [-e|--email] [-w[<width>[,<indent1>[,<indent2>]]]] [<committish>...]
DESCRIPTION
-----------
@@ -35,6 +35,12 @@ OPTIONS
-e, \--email::
Show the email address of each author.
+-w[<width>[,<indent1>[,<indent2>]]]::
+ Linewrap the output by wrapping each line at `width`. The first
+ line of each entry is indented by `indent1` spaces, and the second
+ and subsequent lines are indented by `indent2` spaces. `width`,
+ `indent1`, and `indent2` default to 76, 6 and 9 respectively.
+
FILES
-----