We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec350d commit c26a205Copy full SHA for c26a205
src/command/git-commit-verify.ts
@@ -13,7 +13,7 @@ export const gitCommitVerify = async () => {
13
/(?<type>[a-z]+)(\((?<scope>.+)\))?(?<breaking>!)?: (?<description>.+)/i;
14
if (!REG_EXP.test(content)) {
15
printError("Git 提交信息不符合 Angualr 规范~");
16
- printInfo("推荐: 运行 cg cm 生成提交信息");
+ printInfo("推荐: 运行 `npx code-genius commit` 生成提交信息");
17
process.exit(1);
18
}
19
};
0 commit comments