shortlog: document -e option
[git/dscho.git] / Documentation / git-help.txt
blob7ddbf467dfdf1d5a7825836d951cd54b336265b0
1 git-help(1)
2 ===========
4 NAME
5 ----
6 git-help - display help information about git
8 SYNOPSIS
9 --------
10 'git help' [-a|--all] [COMMAND]
12 DESCRIPTION
13 -----------
15 With no options and no COMMAND given, the synopsis of the 'git'
16 command and a list of the most commonly used git commands are printed
17 on the standard output.
19 If the option '--all' or '-a' is given, then all available commands are
20 printed on the standard output.
22 If a git command is named, a manual page for that command is brought
23 up. The 'man' program is used by default for this purpose.
25 Note that 'git --help ...' is identical as 'git help ...' because the
26 former is internally converted into the latter.
28 OPTIONS
29 -------
30 -a|--all::
32         Prints all the available commands on the standard output. This
33         option superseeds any other option.
35 Author
36 ------
37 Written by Junio C Hamano <gitster@pobox.com> and the git-list
38 <git@vger.kernel.org>.
40 Documentation
41 -------------
42 Initial documentation was part of the gitlink:git[7] man page.
43 Christian Couder <chriscool@tuxfamily.org> extracted and rewrote it a
44 little. Maintenance is done by the git-list <git@vger.kernel.org>.
46 GIT
47 ---
48 Part of the gitlink:git[7] suite