Commit and push repository changes safely. Use when user asks to commit, push, or verify and push current changes.
Safely commit and push changes for the current branch.
Check current branch and repo status
git branch --show-currentgit status --shortValidate commit preconditions
Stage changes
git add -ACreate commit
git commit -m "<message>".Push changes
git push.Report result
git status --short