czg 全局配置如何添加 aiQuestionCB? #202
JhonChan1996
started this conversation in
General
Replies: 1 comment 1 reply
-
附一个配置 {
"path": "cz-git",
"alias": {
"fd": "docs: fix typos"
},
"messages": {
"type": "Select the type of change that you're committing:",
"scope": "Denote the SCOPE of this change (optional):",
"customScope": "Denote the SCOPE of this change:",
"subject": "Write a SHORT, IMPERATIVE tense description of the change:\n",
"body": "Provide a LONGER description of the change (optional). Use \"|\" to break new line:\n",
"breaking": "List any BREAKING CHANGES (optional). Use \"|\" to break new line:\n",
"footerPrefixesSelect": "Select the ISSUES type of changeList by this change (optional):",
"customFooterPrefix": "Input ISSUES prefix:",
"footer": "List any ISSUES by this change. E.g.: #31, #34:\n",
"generatingByAI": "Generating your AI commit subject...",
"generatedSelectByAI": "Select suitable subject by AI generated:",
"confirmCommit": "Are you sure you want to proceed with the commit above?"
},
"types": [
{
"value": "feat",
"name": "feat: A new feature",
"emoji": ":sparkles:"
},
{
"value": "fix",
"name": "fix: A bug fix",
"emoji": ":bug:"
},
{
"value": "docs",
"name": "docs: Documentation only changes",
"emoji": ":memo:"
},
{
"value": "style",
"name": "style: Changes that do not affect the meaning of the code",
"emoji": ":lipstick:"
},
{
"value": "refactor",
"name": "refactor: A code change that neither fixes a bug nor adds a feature",
"emoji": ":recycle:"
},
{
"value": "perf",
"name": "perf: A code change that improves performance",
"emoji": ":zap:"
},
{
"value": "test",
"name": "test: Adding missing tests or correcting existing tests",
"emoji": ":white_check_mark:"
},
{
"value": "build",
"name": "build: Changes that affect the build system or external dependencies",
"emoji": ":package:"
},
{
"value": "ci",
"name": "ci: Changes to our CI configuration files and scripts",
"emoji": ":ferris_wheel:"
},
{
"value": "chore",
"name": "chore: Other changes that don't modify src or test files",
"emoji": ":hammer:"
},
{
"value": "revert",
"name": "revert: Reverts a previous commit",
"emoji": ":rewind:"
}
],
"useEmoji": false,
"emojiAlign": "center",
"themeColorCode": "",
"scopes": [],
"allowCustomScopes": true,
"allowEmptyScopes": true,
"customScopesAlign": "bottom",
"customScopesAlias": "custom",
"emptyScopesAlias": "empty",
"upperCaseSubject": false,
"markBreakingChangeMode": false,
"allowBreakingChanges": [
"feat",
"fix"
],
"breaklineNumber": 100,
"breaklineChar": "|",
"skipQuestions": [],
"issuePrefixes": [
{
"value": "closed",
"name": "closed: ISSUES has been processed"
}
],
"customIssuePrefixAlign": "top",
"emptyIssuePrefixAlias": "skip",
"customIssuePrefixAlias": "custom",
"allowCustomIssuePrefix": true,
"allowEmptyIssuePrefix": true,
"confirmColorize": true,
"minSubjectLength": 0,
"defaultBody": "",
"defaultIssues": "",
"defaultScope": "",
"defaultSubject": "",
"openAIToken": "xxx",
"apiEndpoint": "xxx",
"useAi": true,
"aiDiffIgnore": [
"package-lock.json",
"yarn.lock",
"pnpm-lock.yaml"
],
"aiModel": "gpt-4o-mini"
} 通过这个配置生成出来的可选 aicommit 无法选择 chan@MacBook-Pro-14 template-mobile-vue % git czg ai -N=5
[email protected]
? Select the type of change that you're committing: feat: A new feature
ℹ Generating your AI commit subject...
###--------------------------------------------------------###
feat: updateUpdateRefRenameUpdate dependencies dependenciesactor commit dependencies and and configurationlint and configuration rename files config rename for commit and and commit improvedlint update updatelint compatibility configuration dependencies dependencies configuration file versions versions file
###--------------------------------------------------------### |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我是用 czg 的全局配置,配置文件在 ~/.config/.czrc 里面,好像没办法添加 aiQuestionCB 配置
Beta Was this translation helpful? Give feedback.
All reactions