aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-shortlog.txt
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2018-03-10 12:52:10 +0100
committerJunio C Hamano <gitster@pobox.com>2018-03-13 12:20:03 -0700
commita8210328f4db27cc119178b33e9512f8fcbba35c (patch)
treea588045e32c1193111b9d6d05032f4ce1ffaaf50 /Documentation/git-shortlog.txt
parent38e79b1fdab9244e1727d0698afcf3bb8956c0a4 (diff)
downloadgit-a8210328f4db27cc119178b33e9512f8fcbba35c.tar.gz
git-shortlog.txt: reorder usages
The first usage we give is the original one where, e.g., `git log` is piped through `git shortlog`. The description that follows reads the other way round, by first focusing on the general behavior, then ending with the behavior when reading from stdin. It is also a tiny bit odd that what is probably the most common usage and the one a reader is probably looking for is not at the top of the list. Of course, it is only a two-item list, so it is not _that_ hard to find... The next commit will add the original usage to the usage string in builtin/shortlog.c, and it feels more natural to do so below the most common usage. To avoid being inconsistent, reorder these two usages here first. Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-shortlog.txt')
-rw-r--r--Documentation/git-shortlog.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-shortlog.txt b/Documentation/git-shortlog.txt
index ee6c5476c1..5e35ea18ac 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' [<options>]
'git shortlog' [<options>] [<revision range>] [[\--] <path>...]
+git log --pretty=short | 'git shortlog' [<options>]
DESCRIPTION
-----------