From 96841514827e50b19930260471d074036397d767 Mon Sep 17 00:00:00 2001 From: Robert Kiel Date: Thu, 12 Jan 2017 08:45:57 -0500 Subject: [PATCH] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 168f9ba..b068a1f 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,17 @@ The commit message will be prepended with the feature name. For example, ``` my-feature-name: this is a sample commit message ``` +If you need to by-pass any git pre-commit hooks, you can use the `-f` option to force the commit. +This will invoke the commit with the `--no-verify` option. +It will also add `(no-verify)` to the end of your commit message. For example, + +``` +feature commit -f this is a sample commit message +feature commit -m this is a sample commit message -f +``` + +generates the command `git commit -m "this is a sample commit message (no-verify)" --no-verify`. + #### End