name: commit-and-push
description: Finish local Git work by first using the commit skill to split and create Conventional Commits, then push the resulting commits to the remote tracking branch. Use when the user asks to commit and push changes.
Commit And Push
Use the commit skill first to create clean logical commits.
Then push the branch.
Steps
- Run the
commitskill workflow and ensure commits are complete. - Confirm branch and tracking remote.
git branch --show-current
git rev-parse --abbrev-ref --symbolic-full-name @{u}
- Push commits.
git push
- Verify clean state.
git status --short