Skip to content

Commit

Permalink
docs: add cli help text for the no-verify option
Browse files Browse the repository at this point in the history
  • Loading branch information
noahrc committed Jun 2, 2016
1 parent 48c882a commit 6c0b7b0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ var argv = require('yargs')
default: false,
global: true
})
.option('no-verify', {
alias: 'n',
describe: 'Bypass pre-commit or commit-msg git hooks during the commit phase.',
type: 'boolean',
default: false,
global: true
})
.help()
.alias('help', 'h')
.example('$0', 'Update changelog and tag release')
Expand Down

0 comments on commit 6c0b7b0

Please sign in to comment.