✅Git Best Practise Patern:
————————————————
feat: New feature
fix: Bug fix
refactor: Code restructuring (no functional changes)
docs: Documentation changes
style: Code formatting (no logic changes)
test : Adding or updating tests
chore: Maintenance tasks (e.g., dependencies update)
perf : Performance improvements
ci : Continuous integration changes
revert: Reverting previous commit
⭕️Example Commit Messages:
git commit -m "feat(auth): add Google login support"
git commit -m "fix(patient): resolve favorite toggle issue"
git commit -m "refactor(ui): optimize button styles"
git commit -m "docs(readme): update installation steps"
————————————————
feat: New feature
fix: Bug fix
refactor: Code restructuring (no functional changes)
docs: Documentation changes
style: Code formatting (no logic changes)
test : Adding or updating tests
chore: Maintenance tasks (e.g., dependencies update)
perf : Performance improvements
ci : Continuous integration changes
revert: Reverting previous commit
⭕️Example Commit Messages:
git commit -m "feat(auth): add Google login support"
git commit -m "fix(patient): resolve favorite toggle issue"
git commit -m "refactor(ui): optimize button styles"
git commit -m "docs(readme): update installation steps"
👍2