Skip to content

Commit f1f509c

Browse files
committed
Merge branch 'ms/commit-cc-option-helpstring' into maint
* ms/commit-cc-option-helpstring: builtin/commit: add missing '/' in help message
2 parents 97f261b + ee0400d commit f1f509c

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
@@ -138,7 +138,7 @@ static struct option builtin_commit_options[] = {
138138
OPT_STRING('C', "reuse-message", &use_message, "commit", "reuse message from specified commit"),
139139
OPT_STRING(0, "fixup", &fixup_message, "commit", "use autosquash formatted message to fixup specified commit"),
140140
OPT_STRING(0, "squash", &squash_message, "commit", "use autosquash formatted message to squash specified commit"),
141-
OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C-c/--amend)"),
141+
OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C/-c/--amend)"),
142142
OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
143143
OPT_FILENAME('t', "template", &template_file, "use specified template file"),
144144
OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),

0 commit comments

Comments
 (0)