cz-cli icon indicating copy to clipboard operation
cz-cli copied to clipboard

husky hook does not work

Open FreePhoenix888 opened this issue 10 months ago • 2 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

FreePhoenix888 avatar Sep 04 '23 16:09 FreePhoenix888