diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-02-11 13:44:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-11 13:44:20 -0800 |
commit | bb831db6774aaa733199360dc7af6f3ce375fc20 (patch) | |
tree | 4d4befdb8dfc6b9ddafec4550a6e44aaacd89dd9 /builtin/commit.c | |
parent | afa3ccbf44cb47cf988c6f40ce3ddb10829a9e7b (diff) | |
parent | 9c9b4f2f8b7f27f3984e80d053106d5d41cbb03b (diff) | |
download | git-bb831db6774aaa733199360dc7af6f3ce375fc20.tar.gz git-bb831db6774aaa733199360dc7af6f3ce375fc20.tar.xz |
Merge branch 'ah/usage-strings'
* ah/usage-strings:
standardize usage info string format
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 5cd1478eb..7f467133b 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -34,12 +34,12 @@ #include "mailmap.h" static const char * const builtin_commit_usage[] = { - N_("git commit [options] [--] <pathspec>..."), + N_("git commit [<options>] [--] <pathspec>..."), NULL }; static const char * const builtin_status_usage[] = { - N_("git status [options] [--] <pathspec>..."), + N_("git status [<options>] [--] <pathspec>..."), NULL }; |