diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-08-20 19:32:55 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-22 12:02:28 -0700 |
commit | f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8 (patch) | |
tree | e6640fdfc517e5359ae03ba92d2ceb6e262405ec /builtin/push.c | |
parent | b0ff96547ec66979487707ad71f89c23f5e0669d (diff) | |
download | git-f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8.tar.gz |
Use imperative form in help usage to describe an action
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/push.c')
-rw-r--r-- | builtin/push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/push.c b/builtin/push.c index 4840bc2a82..8686a7a777 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -364,7 +364,7 @@ int cmd_push(int argc, const char **argv, const char *prefix) OPT_BIT( 0, "porcelain", &flags, N_("machine-readable output"), TRANSPORT_PUSH_PORCELAIN), OPT_BIT('f', "force", &flags, N_("force updates"), TRANSPORT_PUSH_FORCE), { OPTION_CALLBACK, 0, "recurse-submodules", &flags, N_("check"), - N_("controls recursive pushing of submodules"), + N_("control recursive pushing of submodules"), PARSE_OPT_OPTARG, option_parse_recurse_submodules }, OPT_BOOLEAN( 0 , "thin", &thin, N_("use thin pack")), OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", N_("receive pack program")), |