Add and Commit (no push)
Stage all changes, generate an appropriate commit message based on the diff, and commit. Does not push — use this when the remote blocks pushes (branch protection, pre-receive hooks, push-blocked config) or when you want to keep commits local.
Instructions
- Run
git statusandgit diffto understand what changed - Stage all changes with
git add -A - Generate the commit message: imperative mood, single lead line, no body, no bullets (e.g.
Add retry to webhook dispatcher) - Commit with the generated message (no co-author lines or AI attribution)
- Report the result to the user — do NOT push