My Clean Commit Routine
·74 words·1 min
Small commits make collaboration easier.
My default routine:
- Make one logical change at a time
- Run checks before staging
- Stage only relevant files
- Write a commit message that states intent
- Push early and open a small PR
Example message format I use:
feat: add post card reading timefix: handle empty tag list on posts pagedocs: clarify local preview commands
When a commit is easy to explain, it is usually easy to review.