When to use “chore” as type of commit message?
You can see a short definition in “Git Commit Msg”: chore: updating grunt tasks etc; no production code change It is used in: “Semantic Commit Messages” and in the project “fteem/git-semantic-commits“. git chore “commit-message-here” -> git commit -m ‘chore: commit-message-here’ Modifying the .gitignore would be part of the “chores”. “grunt task” means nothing that an … Read more