Git Conventions
Commit Messages
- •Use clear, descriptive commit messages in Finnish or English (be consistent).
- •Prefix messages with their intent when relevant:
- •
feat:for new features - •
fix:for bug fixes - •
chore:for maintenance or configuration changes - •
security:for vulnerability fixes
- •
- •Example:
fix: update iOS deployment target to 15.0
Ignored Files
- •Always ensure
google-services.jsonandGoogleService-Info.plistare in.gitignore. - •If accidentally tracked, use
git rm --cachedto stop tracking them without deleting from disk.