- Create a Trello card with an appropriate title and assign it to yourself.
- Each card should represent a small feature that can be completed within a week.
- For example, building a homepage can be broken down into:
Homepage Research & Design
Homepage View
Homepage ViewModel
Homepage Model
- For example, building a homepage can be broken down into:
- Switch to the
main
branch and pull the latest changes:git checkout main git pull origin main
- Create a feature branch in Xcode using the format: #[card number]-[title]:
git checkout -b #11-FixButton
- Periodically pull the latest changes from main:
git pull origin main
- For example,
var myCustomButton: UIButton func fetchUserData()
- For example, if Navbar is used across multiple pages, extract it in a separate file and use any existing one