diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2011-02-15 14:09:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-15 10:51:08 -0800 |
commit | ba9d7fe11c485b5fc10a17c67c8871792ee6ef12 (patch) | |
tree | fa03a5f28f6054adf8653d871dbd8a3e81d50502 | |
parent | 726c4e3d4251d55a944c9d5f3694d55554ace83d (diff) | |
download | git-ba9d7fe11c485b5fc10a17c67c8871792ee6ef12.tar.gz |
commit,status: describe --porcelain just like push
Push has the clearer description, so take that one for all.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 8a534de3cc..0245d9f2ce 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -145,7 +145,7 @@ static struct option builtin_commit_options[] = { STATUS_FORMAT_SHORT), OPT_BOOLEAN(0, "branch", &status_show_branch, "show branch information"), OPT_SET_INT(0, "porcelain", &status_format, - "show porcelain output format", STATUS_FORMAT_PORCELAIN), + "machine-readable output", STATUS_FORMAT_PORCELAIN), OPT_BOOLEAN('z', "null", &null_termination, "terminate entries with NUL"), OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"), @@ -1092,7 +1092,7 @@ int cmd_status(int argc, const char **argv, const char *prefix) OPT_BOOLEAN('b', "branch", &status_show_branch, "show branch information"), OPT_SET_INT(0, "porcelain", &status_format, - "show porcelain output format", + "machine-readable output", STATUS_FORMAT_PORCELAIN), OPT_BOOLEAN('z', "null", &null_termination, "terminate entries with NUL"), |