-
Open Part 2 of the Figma file.
-
Checkout a new branch for Part 2:
git checkout -b part-2
.✅ Good practice: Branch off of main
Always make sure you're on the
main
branch before creating a new one, unless you have a specific reason to use a different branch. Thegit status
command tells you which branch you're currently on. There are ways to fix it if you make a mistake, but it gets more difficult as you add more commits—best to just form good habits from the start.
Previous | Up | Next |
---|---|---|
Part 1. Minimum viable product | Part 2 | 2.1. Add User objects |