- Fork the repository
- Clone your fork:
git clone https://github.com/yourusername/cell-reminders.git - Install dependencies:
npm install - Create feature branch:
git checkout -b feature/your-feature
-
Commit changes with Conventional Commits format:
git commit -m "feat: add new reminder feature" git commit -m "fix: resolve calendar sync issue" git commit -m "docs: update installation guide"
-
Push to your fork:
git push origin feature/your-feature -
Create pull request using the template
- main: Production-ready code
- feature/*: New features
- bugfix/*: Bug fixes
- hotfix/*: Critical fixes
Use conventional commits:
type(scope): description
[optional body]
[optional footer]
Examples:
feat(ui): add loading indicatorsfix(calendar): resolve timezone issuesdocs(readme): update installation stepsrefactor(utils): improve error handling