Create a git commit with the changes:
- •Review the git status to see what files will be committed
- •Review the git diff to understand the changes
- •Create a descriptive commit message following conventional commit format:
- •feat: for new features
- •fix: for bug fixes
- •docs: for documentation changes
- •style: for code style changes
- •refactor: for code refactoring
- •test: for adding or updating tests
- •chore: for maintenance tasks
- •Stage the relevant files (git add)
- •Create the commit (git commit)
Arguments
- •
$ARGUMENTS: The commit message or description of changes