Allison is coding...

Notes | Git Commit Types

A concise reference for common Git commit message types. Use these prefixes to describe the purpose of each commit consistently and keep project history clear and easy to scan.

TypeUse forExample
featAdd a new featurefeat: add RSS feed
fixFix a bugfix: prevent login timeout
docsUpdate documentationdocs: improve installation guide
refactorImprove code without changing behaviorrefactor: simplify parser logic
chorePerform maintenance or repository housekeepingchore: update dependencies
testAdd or update teststest: add unit tests for parser
styleApply formatting without changing logicstyle: format source with Prettier
perfImprove performanceperf: cache API responses
buildUpdate build system or dependenciesbuild: upgrade Vite
ciUpdate CI/CD configurationci: add GitHub Actions workflow
revertRevert a previous commitrevert: revert parser refactor