diff options
author | Bernhard Reiter <ockham@raz.or.at> | 2014-11-05 15:29:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-11-05 16:24:27 -0800 |
commit | f1a35295c2b66d2501f034d864afb2c5d8bb0e08 (patch) | |
tree | e958702317fb98c74640d6e000909cd766e0e596 /Documentation/git-imap-send.txt | |
parent | f745acb028ee8f7dcd1c8f10127b8feeaa255cf7 (diff) | |
download | git-f1a35295c2b66d2501f034d864afb2c5d8bb0e08.tar.gz git-f1a35295c2b66d2501f034d864afb2c5d8bb0e08.tar.xz |
imap-send: use parse options API to determine verbosity
The -v/-q options were sort-of supported but without using the
parse-options API, and were not documented.
Signed-off-by: Bernhard Reiter <ockham@raz.or.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-imap-send.txt')
-rw-r--r-- | Documentation/git-imap-send.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Documentation/git-imap-send.txt b/Documentation/git-imap-send.txt index c7c0d2142..0897131fc 100644 --- a/Documentation/git-imap-send.txt +++ b/Documentation/git-imap-send.txt @@ -9,7 +9,7 @@ git-imap-send - Send a collection of patches from stdin to an IMAP folder SYNOPSIS -------- [verse] -'git imap-send' +'git imap-send' [-v] [-q] DESCRIPTION @@ -26,6 +26,18 @@ Typical usage is something like: git format-patch --signoff --stdout --attach origin | git imap-send +OPTIONS +------- + +-v:: +--verbose:: + Be verbose. + +-q:: +--quiet:: + Be quiet. + + CONFIGURATION ------------- |