Git Commit Message Generator
Generate well-formatted conventional commit messages. Pick type, scope, and description.
Commit Type
feat:
Frequently Asked Questions
What are conventional commits?
Conventional Commits is a specification for adding human/machine-readable meaning to commit messages. Format: type(scope): description. It enables automated changelogs, semantic versioning, and better team communication.
When should I use feat vs fix?
Use "feat" for new features/capabilities. Use "fix" for bug fixes. Use "chore" for maintenance tasks, "docs" for documentation, "refactor" for code restructuring without behavior change.