遇到的问题
在项目中采用 git 管理代码版本时,突然不能进行提交(git commit)。
报错信息如下:
ERROR invalid commit message format.
Proper commit message format is required for automated changelog generation.
Git 规范
合法的提交日志格式如下(emoji 和 模块可选填):
[<emoji>] [revert: ?]<type>[(scope)?]: <message>
💥 feat(模块): 添加了个很棒的功能
🐛 fix(模块): 修复了一些 bug
📝 docs(模块): 更新了一下文档
🌷 UI(模块): 修改了一下样式
🏰 chore(模块): 对脚手架做了些更改
🌐 locale(模块): 为国际化做了微小的贡献
其他提交类型: refactor, perf, workflow, build, CI, typos, tests, types, wip, release, dep
具体查看 https://github.com/vuejs/core/blob/main/.github/commit-convention.md文章来源:https://www.toymoban.com/news/detail-806415.html
示例
在提交信息前加上类型(前缀)文章来源地址https://www.toymoban.com/news/detail-806415.html
git commit -m "UI: 文档管理-知识体系-页面搭建"
到了这里,关于Git 提交规范的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!