Git Commit with Conventional Commits Overview Create standardized, semantic git commits using the Conventional Commits specification. Analyze the actual diff to determine appropriate type, scope, and message. Conventional Commit Format Commit Types | Type | Purpose | | ---------- | ------------------------------ | | | New feature | | | Bug fix | | | Documentation only | | | Formatting/style (no logic) | | | Code refactor (no feature/fix) | | | Performance improvement | | | Add/update tests | | | Build system/dependencies | | | CI/config changes | | | Maintenance/misc | | | Revert commit | Bre…