Which commit message convention do you use at work?
View other answers to this threadStart a personal dev blog on your domain for free and grow your readership.
3.4K+ developers have started their personal blogs on Hashnode in the last one month.
Write in Markdown · Publish articles on custom domain · Gain readership on day zero · Automatic GitHub backup and more
Professional human being for 28 years
I use two commit conventions, one at work, and one for personal projects:
At work, where we use Jira, we use the following convention:
<issue ID> - <verb> <description>
<body>
For personal projects, I try to follow the conventional commits :
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]