diff options
author | Michael Schubert <mschub@elegosoft.com> | 2011-12-21 15:56:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-21 10:46:10 -0800 |
commit | ee0400df4eb13ea9b1ee3f03a50e479048f1780f (patch) | |
tree | 3d8b08d70ce70b4c4821cede8ad51efc8b5bd630 /builtin-commit.c | |
parent | commit -c/-C/--amend: reset timestamp and authorship to committer with --rese... (diff) | |
download | tgif-ee0400df4eb13ea9b1ee3f03a50e479048f1780f.tar.xz |
builtin/commit: add missing '/' in help message
Signed-off-by: Michael Schubert <mschub@elegosoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-commit.c')
-rw-r--r-- | builtin-commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-commit.c b/builtin-commit.c index 764f4fdaac..257b5be2d2 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -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"), |