761 B
761 B
| description |
|---|
| Automatic commit message generator and fast AI-powered commit for all current changes |
// turbo-all
This workflow automatically stages all changes, generates a descriptive commit message, and commits them in one go.
Steps:
- Stage All Changes: Automatically stage all modified and new files.
git add . - Analyze Changes: Get the diff of staged changes to understand the context.
git diff --cached - Generate & Commit: Generate a professional message following Conventional Commits and execute the commit.
git commit -m "<ai_generated_message>" - Push: Optionally push the changes.
git push