-
-
Notifications
You must be signed in to change notification settings - Fork 266
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
Enable cover cz_conventional_commits via [tool.commitizen.customize] #1270
Comments
Needs more information and examples. I don't understand what have you tried to do |
sorry for lack of enough context. in short,I found that the i wanna simply keep the current configuration and cover the given official config and then cover it,but now we can not cover a bit hope it will clarify my feature request.😄 |
But what did you already do? Can you share the toml that didn't work?
|
all finished but docs in #1274! |
if you guys find it really different to customize, I recommend git-cliff or git-changelog. it would help a lot😊 |
I think we should continue with this. It makes sense to allow the modification of an existing provider. |
Maybe instead of breaking
Thoughts? |
Yep, I think we should do it. We probably could make the rule a column of |
Description
hey there👋 it's a fantastic cil tools. thanks for your guys contribution!
it's impossible to cover the default options such as commit Patten via toml after checking the docs and raw code,only will work on complicated full customization in toml which is scary.
😭
the following is the version i would like to use:
of course,
[tool.commitizen.customize]
would be invalid because of[tool.commitizen]
name
is notcz_customize
according to the docs and raw code.it looks like we coverd
cz_conventional_commits
version with[tool.commitizen.customize]
,which is what we need.so let's replace the
name
ascz_customize
, it will work oncz bump --dry-run
,butcz commit -a
would failed for no complete definition[tool.commitizen.customize]
,also docs had given the complete one looks terrified.Possible Solution
i think we can realize it via making
class CustomizeCommitsCz:
to inherit fromConventionalCommitsCz
directly.The text was updated successfully, but these errors were encountered: