Git Commit Helper
Helps craft well-structured commits.
Workflow
Run
git statusandgit diff --stagedto understand what is changing.Group related changes into a single logical commit.
Write a message in the Conventional Commits style:
<type>(<scope>): <summary> <body explaining what and why>Common types:
feat,fix,docs,refactor,test,chore.Keep the summary under 72 characters and in the imperative mood.