简体中文
defaultIssues
- 自动获取
Issue Number
,重复查询填写issue number
是一件很麻烦的事情,尤其在 gitee 反人类设计- 但是如果规范了团队的分支命令规则(e.g: fix/issue_33)
- 然后我们利用
Node
的execSync
通过命令获取到分支名 - 再对获取的字符串进行处理
- 接着我们利用
defaultIssues
- 使用时我们只需要按下 回车 键就可以输出
Issue Number
,如此一来我们可以很方便截取到Issue Number
减少重复性工作。
提示: 我们也可以结合 customIssuePrefixsAlign
配置项来动态改变 issue 前缀的选择项位置
js
// .commitlintrc.js
const { execSync } = require('child_process');
// @tip: git branch name = feature/issue_33 => auto get defaultIssues = #33
const issue = execSync('git rev-parse --abbrev-ref HEAD')
.toString()
.trim()
.split("_")[1]
/** @type {import('cz-git').UserConfig} */
module.exports = {
prompt: {
customIssuePrefixsAlign: !issue ? "top" : "bottom",
defaultIssues: !issue ? "" : `#${issue}`
}
};
// .commitlintrc.js
const { execSync } = require('child_process');
// @tip: git branch name = feature/issue_33 => auto get defaultIssues = #33
const issue = execSync('git rev-parse --abbrev-ref HEAD')
.toString()
.trim()
.split("_")[1]
/** @type {import('cz-git').UserConfig} */
module.exports = {
prompt: {
customIssuePrefixsAlign: !issue ? "top" : "bottom",
defaultIssues: !issue ? "" : `#${issue}`
}
};
利用可高度可定制的
cz-git
让 commit 更方便,更契合习惯,欢迎分享。