I need some references which include guidelines on having good git commit messages, its conventions and especially a few examples.
Asked
Active
Viewed 615 times
1 Answers
1
There isn't a definitive standard for git commit messages, but if anything is emerging to be one, it would be Conventional Commits.
With this convention, upgrading a dependency would probably be a chore
, e.g.:
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.

Mureinik
- 297,002
- 52
- 306
- 350
-
i agree but i wanted to know the most common ones and your answer did not help. anyway thanks! – muel Dec 15 '21 at 12:59