diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-11-08 13:54:48 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-15 10:04:56 -0800 |
commit | 8c83968385e1e742e188435fd2fe5ebf57565e49 (patch) | |
tree | 128fbce77c06fd198b323bdf6721e321abcab02f /builtin/commit.c | |
parent | add OPT__FORCE (diff) | |
download | tgif-8c83968385e1e742e188435fd2fe5ebf57565e49.tar.xz |
Describe various forms of "be quiet" using OPT__QUIET
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r-- | builtin/commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index 97ae1bca4b..4fd1a1692f 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -114,8 +114,8 @@ static int opt_parse_m(const struct option *opt, const char *arg, int unset) } static struct option builtin_commit_options[] = { - OPT__QUIET(&quiet, "be quiet"), - OPT__VERBOSE(&verbose, "be verbose"), + OPT__QUIET(&quiet, "suppress summary after successful commit"), + OPT__VERBOSE(&verbose, "show diff in commit message template"), OPT_GROUP("Commit message options"), OPT_FILENAME('F', "file", &logfile, "read log from file"), |