| name | git-check-commit-push |
| description | Check for untracked/modified changes in the workspace, draft a descriptive commit message, commit them, and push the commit. |
Git Check, Commit, and Push
Automate staging, committing, and pushing workspace changes.
Workflow
- Status: Run
git status. If clean, stop and notify user.
- Stage: Run
git add -A.
- Message: Run
git diff --cached --stat to view changes. Draft a concise conventional commit message (max 50 chars).
- Commit: Run
git commit -m "<message>".
- Push: Run
git push.