cz-cli
cz-cli copied to clipboard
The commitizen command line utility. #BlackLivesMatter
Using husky it is very useful but script which is there is designed only for bash purpose. ``` "husky": { "hooks": { "prepare-commit-msg": "exec < /dev/tty && git cz --hook",...
## Background [pre-commit](https://pre-commit.com/index.html) is a package manager for git hooks. The project allows hooks to be downloaded locally and run in an isolated environment. This allows for easy adoption of...
Steps to re-produce 1. Create a `prepare-commit-msg` hook: ``` #sh #!/bin/sh . "$(dirname "$0")/_/husky.sh" exec < /dev/tty && node_modules/.bin/cz --hook || true ``` 2. Run `git commit` 3. Follow the...
Hello, I added "exec < /dev/tty && node_modules/.bin/cz --hook || true" to prepare-commit-msg hook and checked git commit and everything works fine. but when I want to use [commitizen vscode...
* Updated documentation for Husky >= v5. * Disable running prepare commit message hook, if commit message was already provided.
I use the follwing command npx commitizen init cz-conventional-changelog --save-dev --save-exact The following error occurred:  I need help! Thank you so much
Hey, I can not run `commitizen`. Error: ```cmd yarn cz yarn run v1.22.17 $ /home/bartuszak/gitlab/web-common/node_modules/.bin/cz Cannot find module 'git-branch' Require stack: - /home/bartuszak/gitlab/web-common/commitizen.js - /home/bartuszak/gitlab/web-common/node_modules/commitizen/dist/commitizen/adapter.js - /home/bartuszak/gitlab/web-common/node_modules/commitizen/dist/commitizen.js - /home/bartuszak/gitlab/web-common/node_modules/commitizen/dist/cli/git-cz.js -...
Hi, Could you please add this library I created to the available commitizen adapters in the `README.md` file? npm page: https://www.npmjs.com/package/cz-vinyl Github page: https://github.com/Vinyl-Depository/cz-vinyl
when trying to build custom commitizen prompt configs in node >14 where ```package.json { "type": "module", } ``` it throws an error ``` require() of ES Module /custom-cz.js from /node_modules/commitizen/dist/commitizen/adapter.js...
Hi! I'm the developer of https://github.com/lppedd/idea-conventional-commit, a plugin that offers tokens completion inside the commit dialog in JetBrains IDEs. I stumbled upon `commitizen` looking at IntelliJ IDEA issues (see [IDEA-161189](https://youtrack.jetbrains.com/issue/IDEA-161189))...