Stage the updated files and commit them with an appropriate commit message.
Follow these steps:
- •Run
git statusto see what files have changed - •Run
git diffto understand the changes - •Stage the relevant changed files with
git add - •Commit with a clear, concise message following conventional commits:
- •feat: new feature
- •fix: bug fix
- •style: formatting/styling changes
- •perf: performance improvement
- •refactor: code refactoring
- •chore: maintenance tasks
- •docs: documentation changes
End the commit message with: Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com