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 external user would see:
- implementation (of an existing feature, which doesn’t involve a fix),
- configuration (like the
.gitignoreor.gitattributes), - private internal methods…
Although Owen S mentions in the comments:
Looking at the Karma page you link to, I suspect that
grunt taskmay refer specifically to Javascript’s build toolgrunt.
In which case, they probably didn’t have in mind changes involving implementation or private internal methods, but rather tool changes, configuration changes, and changes to things that do not actually go into production at all.
(Our shop currently uses it for those, and also for simple refactoring.)