| name | commit-all |
| description | Commit all local changes in the current repository, including tracked, untracked, and deletions, as a single Conventional Commit. Use only when the user explicitly wants all changes committed together. |
Commit All
Commit every local change in one commit.
Steps
- Review what will be committed.
git status --short
git diff --name-status
- Stage everything.
git add -A
- Commit using Conventional Commits format.
git commit -m "<type>(<scope>): <single intent>"
- Use
type(scope)!: subject when there is a breaking change.
- Prefer:
feat, fix, refactor, test, docs, chore, build, ci, perf.
- Verify commit and remaining state.
git log --oneline --decorate -n 1
git status --short