Stage and commit the current changes:
- •Run
git statusandgit diff(staged + unstaged) in parallel to understand what changed. - •Run
git log --oneline -5to match the repo's commit message style. - •Stage relevant files by name (avoid
git add -A; never stage secrets or large binaries). - •Write a concise commit message that focuses on why, not what. If $ARGUMENTS is provided, use it as guidance for the message.
- •Commit the changes. Do NOT push.