Skip to content

Commit

Permalink
docs: add explanation of --no-verify to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
noahrc committed May 26, 2016
1 parent 3a7345f commit 855e578
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,17 @@ As long as your git commit messages are conventional and accurate, you no longer

After you cut a release, you can push the new git tag and `npm publish` (or `npm publish --tag next`) when you're ready.

### Prevent Git Hooks

If you use git hooks, like pre-commit, to test your code before committing, you can prevent hooks from being verified during the commit step by passing the `--no-verify` option:

```sh
# npm run script
npm run release -- --no-verify
# or global bin
standard-version --no-verify
```

### CLI Help

```sh
Expand Down

0 comments on commit 855e578

Please sign in to comment.