ワンクリックで
commit
// Generate a commit message based on current changes and commit all staged and unstaged changes to git
// Generate a commit message based on current changes and commit all staged and unstaged changes to git
How to add i18n to all the ts files, and use the compile_i18n.cmd command to compile the ts files
Prefer the repository .venv Python interpreter for Python commands, tests, scripts, package tooling, and AI coding workflows when .venv exists.
Generate a commit message, commit all changes, run deploy_pip.ps1 to publish to PyPI, and tag HEAD with the deployed version on success
| name | commit |
| description | Generate a commit message based on current changes and commit all staged and unstaged changes to git |
When instructed to commit changes, follow these steps:
// turbo
git status --short
If there are no uncommitted changes (no output from the command above), tell the user "No uncommitted changes to commit." and STOP.
// turbo
git diff --stat
// turbo
git diff
Review the output of git diff and git diff --stat. Write a concise, descriptive commit message summarizing only these uncommitted changes. The message should:
// turbo
git add -A
// turbo
git commit -m "<generated commit message>"
Replace <generated commit message> with the message you wrote in step 2.
Tell the user: