commitizen / cz-cli

The commitizen command line utility. #BlackLivesMatter

Home Page:http://commitizen.github.io/cz-cli/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

husky hook does not work

FreePhoenix888 opened this issue · comments

This part of README has this:

"husky": {
  "hooks": {
    "prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
  }
}

But this hook does not work. When I use git commit - I get default behavior

If I put this in .husky/prepare-commit-msg:

#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

exec < /dev/tty && npx cz --hook || true

And run git commit it works but after commitizen I see result commit in nano. How to fix this?
image

Related to #934