Create a git commit with appropriate message and branch
# Commit Changes これまでの作業内容をまとめてコミットします。 ## 手順 1. 現在のブランチを確認します (`git branch --show-current`) 2. main または master ブランチにいる場合: - 作業内容を分析して適切なブランチ名を決定します - 例: `feature/add-commit-button`, `fix/terminal-spacing` - 新しいブランチを作成してチェックアウトします - `git checkout -b <branch-name>` 3. 変更内容を確認します (`git status`, `git diff`) 4. 適切なコミットメッセージを作成します - Conventional Commits 形式を推奨: `feat:`, `fix:`, `docs:`, etc. 5. 変更をステージしてコミットします - `git add .` - `git commit -m "<message>"` ## コミットメッセージ形式 Types: feat, fix, docs, style, refactor, test, chore
Create a git commit
Generate an AI-powered conventional commit message from your git diff and commit changes
Generate an AI-powered conventional commit message from your git diff and commit changes
Creates git commits using conventional commit format with appropriate emojis, following project standards and creating descriptive messages that explain the purpose of changes.
Creates git commits using conventional commit format with appropriate emojis, following project standards and creating descriptive messages that explain the purpose of changes.