Code

builtin/commit: add missing '/' in help message
authorMichael Schubert <mschub@elegosoft.com>
Wed, 21 Dec 2011 14:56:00 +0000 (15:56 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 21 Dec 2011 18:46:10 +0000 (10:46 -0800)
Signed-off-by: Michael Schubert <mschub@elegosoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit.c

index 764f4fdaac76642718ebbbf2371a29050860b168..257b5be2d2bb08b2d41753b6369127f9c2d0ed82 100644 (file)
@@ -93,7 +93,7 @@ static struct option builtin_commit_options[] = {
        OPT_CALLBACK('m', "message", &message, "MESSAGE", "specify commit message", opt_parse_m),
        OPT_STRING('c', "reedit-message", &edit_message, "COMMIT", "reuse and edit message from specified commit"),
        OPT_STRING('C', "reuse-message", &use_message, "COMMIT", "reuse message from specified commit"),
-       OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C-c/--amend)"),
+       OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C/-c/--amend)"),
        OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
        OPT_FILENAME('t', "template", &template_file, "use specified template file"),
        OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),