diff options
author | Ralf Thielow <ralf.thielow@gmail.com> | 2015-12-22 18:53:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-22 14:40:47 -0800 |
commit | 6a4f2eced4036b7330742af91e8ea71e3c8b9803 (patch) | |
tree | 834e4160182fd6bd0433ac55d3a2cd65f09a9a35 /builtin/push.c | |
parent | Update release notes to 2.7 (diff) | |
download | tgif-6a4f2eced4036b7330742af91e8ea71e3c8b9803.tar.xz |
push: don't mark options of recurse-submodules for translation
Signed-off-by: Ralf Thielow <ralf.thielow@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 cc29277ea2..8963dbdf3d 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -547,7 +547,7 @@ int cmd_push(int argc, const char **argv, const char *prefix) 0, CAS_OPT_NAME, &cas, N_("refname>:<expect"), N_("require old value of ref to be at this value"), PARSE_OPT_OPTARG, parseopt_push_cas_option }, - { OPTION_CALLBACK, 0, "recurse-submodules", &recurse_submodules, N_("check|on-demand|no"), + { OPTION_CALLBACK, 0, "recurse-submodules", &recurse_submodules, "check|on-demand|no", N_("control recursive pushing of submodules"), PARSE_OPT_OPTARG, option_parse_recurse_submodules }, OPT_BOOL( 0 , "thin", &thin, N_("use thin pack")), |