600 B
600 B
description
| description |
|---|
| Create git commit |
Context
- Current git status: !
git status - Current git diff (staged changes): !
git diff HEAD - Current branch: !
git branch --show-current - Recent commits: !
git log --oneline -10
Your task
- generate 5 single line commit messages with conventional commits format.
- Use AskUserQuestion tool to ask which of those, or their own to use, to create the commit.
- Create a single git commit with that message using
git commit -m "<message>".