-
Notifications
You must be signed in to change notification settings - Fork 554
Finding a way to use git commit
#448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I would consider a PR with this functionality if it included some tests to show that it doesn't break existing tooling. People using commitizen bring a bunch of existing git commit hooks to the table and we'd need some way to still run those hooks and in the correct order with regards to commitizen. |
Alright, I'll take a look. |
@micky2be Any news on creating a PR for that? |
using git cz --hook in a git hook will allow 'git commit' to trigger commitizen fix commitizen#448, re commitizen#462
using git cz --hook in a git hook will allow 'git commit' to trigger commitizen fix commitizen#448, re commitizen#462
@jimthedev @thedaviddias I've got one open at #615 |
That's awesome @olgn, thanks! |
@thedaviddias any feedback is appreciated! |
fixes #448 (re #462) This pr allows project maintainers to enforce Commitizen generated commit messages as part of the workflow triggered by the `git commit` command. * implements the `--hook` flag, which directs Commitizen to edit the `.git/COMMIT_EDITMSG` file directly. * documents the use of the `--hook` flag in the `README`, both through traditional `git hooks` and `husky`.
I think it would be nice to setup a pre-commit hook to run commitizen when running the command
git commit
.I would personally rather my team use a command they already know than learning a new one.
Make it easier when switching projects.
The text was updated successfully, but these errors were encountered: