【发布时间】:2022-01-18 13:30:43
【问题描述】:
我需要一些参考资料,其中包括有关拥有良好 git 提交消息的指南、其约定,尤其是一些示例。
【问题讨论】:
标签: git version-control commit git-commit conventional-commits
我需要一些参考资料,其中包括有关拥有良好 git 提交消息的指南、其约定,尤其是一些示例。
【问题讨论】:
标签: git version-control commit git-commit conventional-commits
对于 git 提交消息没有明确的标准,但如果有什么新标准,那就是 Conventional Commits。
按照这个约定,升级依赖可能是chore,例如:
chore: Upgrade library XYZ to version 1.2.3
This upgrade solved CVE-2021-whatever discovered in the library.
If left unpatched, this vulnerability may allow attackers to bypass authentication in the
inventory update flow.
【讨论】: