Git Commit
Commit all staged and unstaged changes with the provided message.
Workflow
When invoked with /commit [message]:
- •
Show current status
bashgit status
- •
Stage all changes
bashgit add -A
- •
Commit with the message
bashgit commit -m "$ARGUMENTS Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>"
- •
Show result
bashgit log --oneline -1
Examples
- •
/commit fix: improve affiliate link capture timeout - •
/commit feat: add deploy-gcp skill - •
/commit refactor: simplify scraper patterns
Notes
- •All changes (tracked and untracked) are staged automatically
- •Co-authored tag is added automatically
- •Does NOT push to remote (use
/pushfor that)