diff options
author | Chris Webb <chris@arachsys.com> | 2012-08-02 11:38:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-06 09:59:53 -0700 |
commit | 4bee958479bed1d3a8f20a75f33422ee49939dbf (patch) | |
tree | e24a4ea9b183c3eb9c5bea21caf0c6d5ff0bf4ee /builtin/revert.c | |
parent | 3fe4498197ced84886b4adaddf18f1109b477f8e (diff) | |
download | git-4bee958479bed1d3a8f20a75f33422ee49939dbf.tar.gz git-4bee958479bed1d3a8f20a75f33422ee49939dbf.tar.xz |
cherry-pick: add --allow-empty-message option
Scripts such as "git rebase -i" cannot currently cherry-pick commits
which have an empty commit message, as git cherry-pick calls git
commit without the --allow-empty-message option.
Add an --allow-empty-message option to git cherry-pick which is passed
through to git commit, so this behaviour can be overridden.
Signed-off-by: Chris Webb <chris@arachsys.com>
Reviewed-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/revert.c')
-rw-r--r-- | builtin/revert.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/revert.c b/builtin/revert.c index 82d1bf844..5652f2384 100644 --- a/builtin/revert.c +++ b/builtin/revert.c @@ -117,6 +117,7 @@ static void parse_args(int argc, const char **argv, struct replay_opts *opts) OPT_END(), OPT_END(), OPT_END(), + OPT_END(), }; if (opts->action == REPLAY_PICK) { @@ -124,6 +125,7 @@ static void parse_args(int argc, const char **argv, struct replay_opts *opts) OPT_BOOLEAN('x', NULL, &opts->record_origin, "append commit name"), OPT_BOOLEAN(0, "ff", &opts->allow_ff, "allow fast-forward"), OPT_BOOLEAN(0, "allow-empty", &opts->allow_empty, "preserve initially empty commits"), + OPT_BOOLEAN(0, "allow-empty-message", &opts->allow_empty_message, "allow commits with empty messages"), OPT_BOOLEAN(0, "keep-redundant-commits", &opts->keep_redundant_commits, "keep redundant, empty commits"), OPT_END(), }; |