github-standards
Github standards that helps on scale and learning through what done will become easy​
Git Commit Message Naming Best Practices​
Type | Description | Example |
---|---|---|
feat | A new feature | feat: add OTP support for SMS login |
fix | A bug fix | fix: correct JWT refresh logic |
docs | Documentation only changes | docs: update README setup section |
style | Code formatting, no logic change | style: reformat service files |
refactor | Code change that neither fixes bug nor adds feature | refactor: split AuthService into modules |
test | Adding or fixing tests | test: add integration test for token flow |
chore | Maintenance tasks | chore: bump Spring Boot version |