diff options
author | Ralf Thielow <ralf.thielow@gmail.com> | 2015-09-11 18:04:13 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-09-11 09:50:02 -0700 |
commit | 98c32bd88911388fac463bcaaf2daf85cbf2b151 (patch) | |
tree | 29c1c0f1f14ad1f74fda7aaa46835313c4eb51c1 /builtin/update-ref.c | |
parent | pull: don't mark values for option "rebase" for translation (diff) | |
download | tgif-98c32bd88911388fac463bcaaf2daf85cbf2b151.tar.xz |
tag, update-ref: improve description of option "create-reflog"
The description of option "create-reflog" is "create_reflog", which
is neither a good description, nor a sensible string to translate.
Change it to a more meaningful message.
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/update-ref.c')
-rw-r--r-- | builtin/update-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/update-ref.c b/builtin/update-ref.c index 04dd00f734..7f30d3a76f 100644 --- a/builtin/update-ref.c +++ b/builtin/update-ref.c @@ -365,7 +365,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix) N_("update <refname> not the one it points to")), OPT_BOOL('z', NULL, &end_null, N_("stdin has NUL-terminated arguments")), OPT_BOOL( 0 , "stdin", &read_stdin, N_("read updates from stdin")), - OPT_BOOL( 0 , "create-reflog", &create_reflog, N_("create_reflog")), + OPT_BOOL( 0 , "create-reflog", &create_reflog, N_("create a reflog")), OPT_END(), }; |