DEV Community

Cover image for Git Commit Messages
Sai Pavan
Sai Pavan

Posted on Edited on

Git Commit Messages

Using the right commit messages helps make it more meaningful and it provides clarity on your updated piece of code being pushed to GitHub.

feat - a new feature
fix - a bug fix
docs - changes in documentation
style - everything related to styling
refactor - code changes that neither fixes a bug or adds a feature
test - everything related to testing
chore - updating build tasks, package manager configs, etc

Enter fullscreen mode Exit fullscreen mode

Top comments (0)