Skip to content

Commit ee0400d

Browse files
Michael Schubertgitster
authored andcommitted
builtin/commit: add missing '/' in help message
Signed-off-by: Michael Schubert <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c51f6ce commit ee0400d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)