Skip to content

Commit ee0400d

Browse files
Michael Schubertgitster
authored andcommitted
builtin/commit: add missing '/' in help message
Signed-off-by: Michael Schubert <mschub@elegosoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c51f6ce commit ee0400d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builtin-commit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static struct option builtin_commit_options[] = {
9393
OPT_CALLBACK('m', "message", &message, "MESSAGE", "specify commit message", opt_parse_m),
9494
OPT_STRING('c', "reedit-message", &edit_message, "COMMIT", "reuse and edit message from specified commit"),
9595
OPT_STRING('C', "reuse-message", &use_message, "COMMIT", "reuse message from specified commit"),
96-
OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C-c/--amend)"),
96+
OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C/-c/--amend)"),
9797
OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
9898
OPT_FILENAME('t', "template", &template_file, "use specified template file"),
9999
OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),

0 commit comments

Comments
 (0)