From: Jeff King <peff@peff.net>
To: Adam Dinwoodie <adam@dinwoodie.org>
Cc: git@vger.kernel.org, "Chris Webb" <chris@arachsys.com>,
"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Subject: Re: [PATCH] commit: --amend -m '' silently fails to wipe message
Date: Thu, 7 Apr 2016 00:48:37 -0400 [thread overview]
Message-ID: <20160407044837.GA28859@sigill.intra.peff.net> (raw)
In-Reply-To: <20160407044219.GA29710@sigill.intra.peff.net>
On Thu, Apr 07, 2016 at 12:42:19AM -0400, Jeff King wrote:
> On Wed, Apr 06, 2016 at 06:15:03PM +0100, Adam Dinwoodie wrote:
>
> > `git commit --amend -m ''` seems to be an unambiguous request to blank a
> > commit message, but it actually leaves the commit message as-is. That's
> > the case regardless of whether `--allow-empty-message` is specified, and
> > doesn't so much as drop a non-zero return code.
> >
> > Add failing tests to show this behaviour.
>
> Hmm. Is it just that we check "message.len", which cannot tell the
> difference between "-m was not given" and "-m was given the empty
> string"?
>
> IOW, would this fix it?
>
> diff --git a/builtin/commit.c b/builtin/commit.c
> index 109742e..3cdc44e 100644
> --- a/builtin/commit.c
> +++ b/builtin/commit.c
> @@ -695,7 +695,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
> }
> }
>
> - if (message.len) {
> + if (have_option_m) {
> strbuf_addbuf(&sb, &message);
> hook_arg1 = "message";
> } else if (logfile && !strcmp(logfile, "-")) {
I guessed that this might have come from the conversion of "message"
form a pointer (which could be NULL) into a strbuf. And indeed, it looks
like f956853 (builtin-commit: resurrect behavior for multiple -m
options, 2007-11-11) did that.
There are a few other checks for "message.len" which probably should be
using "have_option_m". E.g.:
$ git commit -F /dev/null -m foo
fatal: Option -m cannot be combined with -c/-C/-F/--fixup.
$ git commit -F /dev/null -m ''
On branch master
nothing to commit, working directory clean
-Peff
next prev parent reply other threads:[~2016-04-07 4:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-06 17:15 [PATCH] commit: --amend -m '' silently fails to wipe message Adam Dinwoodie
2016-04-07 4:42 ` Jeff King
2016-04-07 4:48 ` Jeff King [this message]
2016-04-07 18:12 ` Junio C Hamano
2016-04-07 19:02 ` Jeff King
2016-04-07 19:56 ` Junio C Hamano
2016-04-07 20:28 ` Jeff King
2016-04-07 9:50 ` Adam Dinwoodie
2016-04-07 19:02 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160407044837.GA28859@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=adam@dinwoodie.org \
--cc=avarab@gmail.com \
--cc=chris@arachsys.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).