Record staged changes as a commit with a conventional message.
git commit -m "type: message"
-m supplies the message inline; conventional prefixes (feat:, fix:, chore:) drive changelogs and semver tooling. Omit -m to open EDITOR for a longer body.
Safety: Inspect first and avoid rewriting shared history unless the team expects it.