version: "1.0.1" name: git-commit description: Create conventional commit messages. Use when committing changes or writing commit messages.
fix(api): handle null response from payment gateway
The payment gateway occasionally returns null instead of an error
object when the service is degraded. This caused unhandled exceptions.
Added null check and appropriate error handling.
Fixes #789
refactor(api)!: change user endpoint response format
BREAKING CHANGE: The /api/users endpoint now returns an object
with a `data` wrapper instead of a raw array.
Before: [{ id: 1, name: "John" }]
After: { data: [{ id: 1, name: "John" }], meta: { total: 1 } }
bash
# Stage and commit
git add .
git commit -m "feat(scope): description"
# Amend last commit
git commit --amend
# Interactive rebase to fix commits
git rebase -i HEAD~3