Create a git commit with conventional commit format. MUST use anytime you want to commit changes.
Create a focused, single-line commit following conventional commit conventions.
git status and git diff to understand what was modifiedgit add -A or git add .<type>: <description>
feat: New feature or capabilityfix: Bug fixrefactor: Code change that neither fixes a bug nor adds a featuredocs: Documentation only changesstyle: Formatting, missing semicolons, etc (no code change)test: Adding or correcting testschore: Maintenance tasks, dependency updates, etcperf: Performance improvement