From 3f6a7c952665d1ec4146bd454a8ef38c1c2fbe46 Mon Sep 17 00:00:00 2001 From: pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com> Date: Wed, 21 Feb 2024 01:20:50 -0600 Subject: [PATCH] docs: update README.md Add pre-commit hook bypass flag to ease transition --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b670991..6bc80a3 100644 --- a/README.md +++ b/README.md @@ -186,6 +186,11 @@ Most importantly, `ruff` is used to lint all python code. git add . git commit -m "commit message" ``` +* Bypass pre-commit hooks + * Sometimes, it's necessary to bypass pre-commit hooks. This can be done with the `--no-verify` flag. + ```bash + git commit -m "commit message" --no-verify + ``` ### Conventional Commits