From: Alex Riesen <alexander.riesen@cetitec.com>
To: phillip.wood@dunelm.org.uk
Cc: Junio C Hamano <gitster@pobox.com>, Jeff King <peff@peff.net>,
Git List <git@vger.kernel.org>
Subject: Re: [PATCH] Remove negation from the commit and merge option "--no-verify"
Date: Thu, 28 Oct 2021 17:44:40 +0200 [thread overview]
Message-ID: <YXrFaJXbuSuwfhQ7@pflmari> (raw)
In-Reply-To: <edca7f6b-e89c-7efa-c6f5-2c3aaaea54f9@gmail.com>
From: Alex Riesen <raa.lkml@gmail.com>
This documents re-enabling of the hooks disabled by an earlier
"--no-verify" in command-line.
Signed-off-by: Alexander Riesen <raa.lkml@gmail.com>
---
Hi Phillip,
Phillip Wood, Thu, Oct 28, 2021 15:57:58 +0200:
> On 28/10/2021 09:04, Alex Riesen wrote:
> > From: Alex Riesen <raa.lkml@gmail.com>
> >
> > This allows re-enabling of the hooks disabled by an earlier "--no-verify"
> > in command-line and makes the interface more consistent.
>
> Thanks for working on this. Since 0f1930c587 ("parse-options: allow
> positivation of options starting, with no-", 2012-02-25) merge and commit
> have accepted "--verify" but it is undocumented. The documentation updates
> and fix to pull in this patch are very welcome, but I'm not sure we need the
> other changes. I've left a couple of comments below.
>
> [As an aside we should probably improve the documentation in parse-options.h
> if both Peff and Junio did not know how it handles "--no-foo" but that is
> outside the scope of this patch]
Interesting feature. It is unfortunate it was so well hidden. You're right, of
course, and the newly added tests in t7504-commit-msg-hook.sh pass without any
changes to the "builtin/commit.c".
Removal of double-negation in the code was an improvement to its readability,
but I like small patches more.
Also, the series has no conflicts with 2.33.0 anymore and the "git pull" can
be applied independently.
> > diff --git a/Documentation/git-commit.txt b/Documentation/git-commit.txt
> > index a3baea32ae..ba66209274 100644
> > --- a/Documentation/git-commit.txt
> > +++ b/Documentation/git-commit.txt
> > @@ -11,7 +11,7 @@ SYNOPSIS
> > 'git commit' [-a | --interactive | --patch] [-s] [-v] [-u<mode>] [--amend]
> > [--dry-run] [(-c | -C | --fixup | --squash) <commit>]
> > [-F <file> | -m <msg>] [--reset-author] [--allow-empty]
> > - [--allow-empty-message] [--no-verify] [-e] [--author=<author>]
> > + [--allow-empty-message] [--[no-]verify] [-e] [--author=<author>]
>
> I think for the synopsis it is fine just to list the most common options.
> Having --no-verify without the [no-] makes it clear that --verify is the
> default so is not a commonly used option.
Yep, makes sense.
> > [--date=<date>] [--cleanup=<mode>] [--[no-]status]
> > [-i | -o] [--pathspec-from-file=<file> [--pathspec-file-nul]]
> > [-S[<keyid>]] [--] [<pathspec>...]
> > @@ -174,7 +174,13 @@ The `-m` option is mutually exclusive with `-c`, `-C`, and `-F`.
> > -n::
> > --no-verify::
> > - This option bypasses the pre-commit and commit-msg hooks.
> > + By default, pre-merge and commit-msg hooks are run. When one of these
>
> I think saying "the pre-merge and commit-msg hooks" would be clearer as you
> do below.
>
> > + options is given, these are bypassed.
> > + See also linkgit:githooks[5].
> > +
> > +--verify::
> > + This option re-enables running of the pre-commit and commit-msg hooks
> > + after an earlier `-n` or `--no-verify`.
> > See also linkgit:githooks[5].
>
> Some of the existing documentation describes the "--no-foo" option with
> "--foo" (e.g --[no-]signoff) but in other places we list the two options
> separately (e.g. --[no-]edit), I'd lean towards combining them as you have
> done for the merge documentation but I don't feel strongly about it.
How about this instead:
-n::
--no-verify::
By default, pre-commit and commit-msg hooks are run. When one of these
options is given, the hooks will be bypassed.
See also linkgit:githooks[5].
--verify::
This option re-enables running of the pre-commit and commit-msg hooks
after an earlier `-n` or `--no-verify`.
> > diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt
> > index 3819fadac1..324ae879d2 100644
> > --- a/Documentation/git-merge.txt
> > +++ b/Documentation/git-merge.txt
> > @@ -10,7 +10,7 @@ SYNOPSIS
> > --------
> > [verse]
> > 'git merge' [-n] [--stat] [--no-commit] [--squash] [--[no-]edit]
> > - [--no-verify] [-s <strategy>] [-X <strategy-option>] [-S[<keyid>]]
> > + [--[no-]verify] [-s <strategy>] [-X <strategy-option>] [-S[<keyid>]]
>
> Again I'm not sure changing the synopsis makes things clearer.
Removed.
> > [--[no-]allow-unrelated-histories]
> > [--[no-]rerere-autoupdate] [-m <msg>] [-F <file>] [<commit>...]
> > 'git merge' (--continue | --abort | --quit)
> > diff --git a/Documentation/merge-options.txt b/Documentation/merge-options.txt
> > index 80d4831662..f8016b0f7b 100644
> > --- a/Documentation/merge-options.txt
> > +++ b/Documentation/merge-options.txt
> > @@ -112,8 +112,9 @@ option can be used to override --squash.
> > +
> > With --squash, --commit is not allowed, and will fail.
> > ---no-verify::
> > - This option bypasses the pre-merge and commit-msg hooks.
> > +--[no-]verify::
> > + By default, pre-merge and commit-msg hooks are run. When `--no-verify`
>
> I think "the pre-merge ..." would be better here as well.
Like this?
--[no-]verify::
By default, the pre-merge and commit-msg hooks are run.
When `--no-verify` is given, these are bypassed.
See also linkgit:githooks[5].
> > diff --git a/t/t7504-commit-msg-hook.sh b/t/t7504-commit-msg-hook.sh
> > index 31b9c6a2c1..166ff5fb26 100755
> > --- a/t/t7504-commit-msg-hook.sh
> > +++ b/t/t7504-commit-msg-hook.sh
> > @@ -130,6 +130,14 @@ test_expect_success '--no-verify with failing hook' '
> > '
> > +test_expect_success '-n with failing hook' '
> > +
> > + echo "more" >> file &&
> > + git add file &&
> > + git commit -n -m "more"
> > +
> > +'
>
> Is this to check that "-n" works like "--no-verify"?
Frankly, it was to check that the separate "-n" option works as I supposed it
would. I never used parse-options before.
> I think it would be very useful to add another test that checks "--verify"
> overrides "--no-verify".
Replaced the test with one which has "-n --verify".
Thanks!
Documentation/git-commit.txt | 7 ++++++-
Documentation/merge-options.txt | 5 +++--
t/t7504-commit-msg-hook.sh | 8 ++++++++
3 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-commit.txt b/Documentation/git-commit.txt
index a3baea32ae..2268787483 100644
--- a/Documentation/git-commit.txt
+++ b/Documentation/git-commit.txt
@@ -174,9 +174,14 @@ The `-m` option is mutually exclusive with `-c`, `-C`, and `-F`.
-n::
--no-verify::
- This option bypasses the pre-commit and commit-msg hooks.
+ By default, pre-commit and commit-msg hooks are run. When one of these
+ options is given, the hooks will be bypassed.
See also linkgit:githooks[5].
+--verify::
+ This option re-enables running of the pre-commit and commit-msg hooks
+ after an earlier `-n` or `--no-verify`.
+
--allow-empty::
Usually recording a commit that has the exact same tree as its
sole parent commit is a mistake, and the command prevents you
diff --git a/Documentation/merge-options.txt b/Documentation/merge-options.txt
index 80d4831662..80267008af 100644
--- a/Documentation/merge-options.txt
+++ b/Documentation/merge-options.txt
@@ -112,8 +112,9 @@ option can be used to override --squash.
+
With --squash, --commit is not allowed, and will fail.
---no-verify::
- This option bypasses the pre-merge and commit-msg hooks.
+--[no-]verify::
+ By default, the pre-merge and commit-msg hooks are run.
+ When `--no-verify` is given, these are bypassed.
See also linkgit:githooks[5].
-s <strategy>::
diff --git a/t/t7504-commit-msg-hook.sh b/t/t7504-commit-msg-hook.sh
index 31b9c6a2c1..67fcc19637 100755
--- a/t/t7504-commit-msg-hook.sh
+++ b/t/t7504-commit-msg-hook.sh
@@ -130,6 +130,14 @@ test_expect_success '--no-verify with failing hook' '
'
+test_expect_success '-n followed by --verify with failing hook' '
+
+ echo "even more" >> file &&
+ git add file &&
+ test_must_fail git commit -n --verify -m "even more"
+
+'
+
test_expect_success '--no-verify with failing hook (editor)' '
echo "more stuff" >> file &&
--
2.33.0.22.g8cd9218530
next prev parent reply other threads:[~2021-10-28 15:45 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-26 12:11 [PATCH] Fix "commit-msg" hook unexpectedly called for "git pull --no-verify" Alex Riesen
2021-10-26 21:16 ` Jeff King
2021-10-27 6:35 ` [PATCH v2] " Alex Riesen
2021-10-27 9:06 ` Jeff King
2021-10-27 12:09 ` [PATCH] " Alex Riesen
2021-10-27 12:19 ` Jeff King
2021-10-27 13:27 ` [PATCH] Remove negation from the merge option "--no-verify" Alex Riesen
2021-10-27 20:16 ` Junio C Hamano
2021-10-28 6:38 ` Alex Riesen
2021-10-28 8:04 ` [PATCH] Remove negation from the commit and " Alex Riesen
2021-10-28 13:57 ` Phillip Wood
2021-10-28 15:44 ` Alex Riesen [this message]
2021-10-28 15:46 ` [PATCH 2/2] Fix "commit-msg" hook unexpectedly called for "git pull --no-verify" Alex Riesen
2021-10-28 16:51 ` Junio C Hamano
2021-10-28 17:16 ` Alex Riesen
2021-10-28 19:25 ` Junio C Hamano
2021-10-29 6:34 ` Alex Riesen
2021-10-28 15:49 ` [PATCH] Remove negation from the commit and merge option "--no-verify" Alex Riesen
2021-10-29 13:32 ` Phillip Wood
2021-10-29 13:45 ` [PATCH] Document positive variant of " Alex Riesen
2021-11-01 15:34 ` Phillip Wood
2021-10-27 20:12 ` [PATCH] Fix "commit-msg" hook unexpectedly called for "git pull --no-verify" Junio C Hamano
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=YXrFaJXbuSuwfhQ7@pflmari \
--to=alexander.riesen@cetitec.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
--cc=phillip.wood@dunelm.org.uk \
/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).