| name | git-commit |
| description | Used when committing staged changes. Generates appropriate commit messages and confirms changes before creating commits. |
Git Commit
Commit staged changes with appropriate commit messages.
Steps
- Run
git status,git diff --staged, andgit log -5 --oneline - Generate single-line commit message using conventional commit format (feat:, fix:, docs:, refactor:, test:, chore:, etc.)
- Match language (English/Japanese) from recent commit history
- Execute
git commit -m "message" - Verify with
git status