Generate a conventional commit message and create the commit
Generate a commit message following conventional commits and create the commit.
Commit Message:
type(scope): description (e.g., feat(core): add user authentication)
Steps:
git fetch to update remote infogit status, git diff, and git log --oneline -5 to see changes and recent commit style
git status shows "your branch is behind": STOP and warn user to handle manually (pull/rebase first)git addgit commit with the messagegit push