Commit Changes
Create a conventional commit with all current changes and push to the remote repository.
Steps
- Run
git status
to see all changes - Run
git diff
to review the changes in detail - Analyze the changes and determine the appropriate conventional commit type:
feat:
for new featuresfix:
for bug fixesdocs:
for documentation changesstyle:
for formatting changesrefactor:
for code refactoringtest:
for test additions/changeschore:
for maintenance tasks- Stage all changes with
git add -A
- Create a conventional commit with a clear, descriptive message
- Push to the current branch with
git push
Guidelines
- Follow the Conventional Commits specification
- Write clear, imperative commit messages
- Include scope when relevant:
feat(auth): add OAuth support
- Keep first line under 72 characters