author | Junio C Hamano <gitster@pobox.com> | |
Wed, 21 Dec 2011 20:02:39 +0000 (12:02 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 21 Dec 2011 20:02:44 +0000 (12:02 -0800) |
1 | 2 | |||
---|---|---|---|---|
builtin/commit.c | patch | | diff1 | | diff2 | | blob | history |
builtin/log.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc builtin/commit.c
index 626036a179e1476ee28a9f2ff32fedc5b97dc5d0,b02e2c4e89a55e04f7c5c3ee95617f947b9f5d99..be1ab2e2570fe0b600f8b1aa55c32573578af766
--- 1/builtin/commit.c
--- 2/builtin/commit.c
+++ b/builtin/commit.c
OPT_STRING('C', "reuse-message", &use_message, "commit", "reuse message from specified commit"),
OPT_STRING(0, "fixup", &fixup_message, "commit", "use autosquash formatted message to fixup specified commit"),
OPT_STRING(0, "squash", &squash_message, "commit", "use autosquash formatted message to squash 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"),
+ OPT_BOOL('e', "edit", &edit_flag, "force edit of commit"),
OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
OPT_BOOLEAN(0, "status", &include_status, "include status in commit message template"),
/* end commit message options */
diff --cc builtin/log.c
Simple merge