Semantic Commit¶
Interactive tool for creating semantic commits following sp_theory standards.
Usage¶
# Interactive commit
semantic-commit
# Quick commit with type and message
semantic-commit feat "add user authentication"
# Commit with scope
semantic-commit fix "auth" "resolve login timeout issue"
Commit Types¶
- feat: New features
- fix: Bug fixes
- docs: Documentation changes
- style: Code style changes
- refactor: Code refactoring
- test: Test additions/changes
- chore: Maintenance tasks
Format¶
<type>(<scope>): <description>
[optional body]
[optional footer]