Hey folks! I'm just starting out in development and trying to figure out the best commit conventions to use. I've been mixing Conventional Commits with some other naming standards I found. My main question is, when I update existing website content (like changing text on a page), which commit type should I use? Should it be 'build', 'feat', or 'docs'? Thanks in advance for your help!
3 Answers
I really liked your post! I wasn’t familiar with Conventional Commits before, but it sounds super helpful. I try to write good commit messages, but this method looks way better organized.
You should go with 'feat' for those content updates! It's meant for adding new features or content that didn't exist before, not just bug fixes.
Thank you — appreciate the feedback!
Yeah, definitely use 'feat' for content changes!
Thanks for confirming!

Glad you found it helpful! I'm focusing on good committing habits early on.