Commit
Stage all changes, create a commit with a descriptive message, and push to the remote branch.
Workflow
- Run
git statusto review changes - Run
git diffto understand what changed - Run
git log -3 --onelineto match commit message style - Stage relevant files (prefer specific files over
git add -A) - Create commit with descriptive message following repository conventions
- Push to remote branch
Commit Message Format
<type>: <short description>
<optional body explaining why>
Co-Authored-By: Claude <model>
Common types: feat, fix, chore, docs, refactor, test